-
-
Notifications
You must be signed in to change notification settings - Fork 279
Expand file tree
/
Copy pathbatch.ts
More file actions
1042 lines (899 loc) · 27.8 KB
/
batch.ts
File metadata and controls
1042 lines (899 loc) · 27.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import type {
AcceptResultCallbacks,
AddResult,
} from '@metamask/approval-controller';
import {
ApprovalType,
ORIGIN_METAMASK,
toHex,
} from '@metamask/controller-utils';
import type EthQuery from '@metamask/eth-query';
import type {
FetchGasFeeEstimateOptions,
GasFeeState,
} from '@metamask/gas-fee-controller';
import { JsonRpcError, rpcErrors } from '@metamask/rpc-errors';
import type { Hex } from '@metamask/utils';
import { bytesToHex, createModuleLogger } from '@metamask/utils';
import type { WritableDraft } from 'immer/dist/internal.js';
import { parse, v4 } from 'uuid';
import {
ERROR_MESSGE_PUBLIC_KEY,
doesChainSupportEIP7702,
generateEIP7702BatchTransaction,
isAccountUpgradedToEIP7702,
} from './eip7702';
import {
getBatchSizeLimit,
getEIP7702SupportedChains,
getEIP7702UpgradeContractAddress,
} from './feature-flags';
import { simulateGasBatch } from './gas';
import { validateBatchRequest } from './validation';
import {
determineTransactionType,
GasFeeEstimateLevel,
TransactionStatus,
} from '..';
import type {
BatchTransactionParams,
GetSimulationConfig,
PublishBatchHookRequest,
TransactionController,
TransactionControllerMessenger,
TransactionControllerState,
TransactionMeta,
} from '..';
import { DefaultGasFeeFlow } from '../gas-flows/DefaultGasFeeFlow';
import { updateTransactionGasEstimates } from '../helpers/GasFeePoller';
import type { PendingTransactionTracker } from '../helpers/PendingTransactionTracker';
import { CollectPublishHook } from '../hooks/CollectPublishHook';
import { SequentialPublishBatchHook } from '../hooks/SequentialPublishBatchHook';
import { projectLogger } from '../logger';
import { TransactionEnvelopeType, TransactionType } from '../types';
import type {
NestedTransactionMetadata,
SecurityAlertResponse,
TransactionBatchSingleRequest,
PublishBatchHook,
PublishBatchHookTransaction,
PublishHook,
TransactionBatchRequest,
ValidateSecurityRequest,
IsAtomicBatchSupportedResult,
IsAtomicBatchSupportedResultEntry,
TransactionBatchMeta,
} from '../types';
import type { TransactionBatchResult, TransactionParams } from '../types';
type UpdateStateCallback = (
callback: (
state: WritableDraft<TransactionControllerState>,
) => void | TransactionControllerState,
) => void;
type AddTransactionBatchRequest = {
addTransaction: TransactionController['addTransaction'];
estimateGas: TransactionController['estimateGas'];
getChainId: (networkClientId: string) => Hex;
getEthQuery: (networkClientId: string) => EthQuery;
getGasFeeEstimates: (
options: FetchGasFeeEstimateOptions,
) => Promise<GasFeeState>;
getInternalAccounts: () => Hex[];
getPendingTransactionTracker: (
networkClientId: string,
) => PendingTransactionTracker;
getSimulationConfig: GetSimulationConfig;
getTransaction: (id: string) => TransactionMeta;
isSimulationEnabled: () => boolean;
messenger: TransactionControllerMessenger;
publishBatchHook?: PublishBatchHook;
publishTransaction: (
_ethQuery: EthQuery,
transactionMeta: TransactionMeta,
) => Promise<Hex>;
publicKeyEIP7702?: Hex;
request: TransactionBatchRequest;
requestId?: string;
signTransaction: (
transactionMeta: TransactionMeta,
) => Promise<string | undefined>;
update: UpdateStateCallback;
updateTransaction: (
options: { transactionId: string },
callback: (transactionMeta: TransactionMeta) => void,
) => void;
};
type IsAtomicBatchSupportedRequestInternal = {
address: Hex;
chainIds?: Hex[];
getEthQuery: (chainId: Hex) => EthQuery;
messenger: TransactionControllerMessenger;
publicKeyEIP7702?: Hex;
};
const log = createModuleLogger(projectLogger, 'batch');
export const ERROR_MESSAGE_NO_UPGRADE_CONTRACT =
'Upgrade contract address not found';
/**
* Add a batch transaction.
*
* @param request - The request object including the user request and necessary callbacks.
* @returns The batch result object including the batch ID.
*/
export async function addTransactionBatch(
request: AddTransactionBatchRequest,
): Promise<TransactionBatchResult> {
const {
getInternalAccounts,
messenger,
request: transactionBatchRequest,
} = request;
const sizeLimit = getBatchSizeLimit(messenger);
validateBatchRequest({
internalAccounts: getInternalAccounts(),
request: transactionBatchRequest,
sizeLimit,
});
log('Adding', transactionBatchRequest);
if (!transactionBatchRequest.disable7702) {
try {
return await addTransactionBatchWith7702(request);
} catch (error: unknown) {
const isEIP7702NotSupportedError =
error instanceof JsonRpcError &&
error.message === 'Chain does not support EIP-7702';
if (!isEIP7702NotSupportedError) {
throw error;
}
}
}
return await addTransactionBatchWithHook(request);
}
/**
* Determine which chains support atomic batch transactions for the given account.
*
* @param request - The request object including the account address and necessary callbacks.
* @returns The chain IDs that support atomic batch transactions.
*/
export async function isAtomicBatchSupported(
request: IsAtomicBatchSupportedRequestInternal,
): Promise<IsAtomicBatchSupportedResult> {
const {
address,
chainIds,
getEthQuery,
messenger,
publicKeyEIP7702: publicKey,
} = request;
if (!publicKey) {
throw rpcErrors.internal(ERROR_MESSGE_PUBLIC_KEY);
}
const chainIds7702 = getEIP7702SupportedChains(messenger);
const filteredChainIds = chainIds7702.filter(
(chainId) => !chainIds || chainIds.includes(chainId),
);
const resultsRaw: (IsAtomicBatchSupportedResultEntry | undefined)[] =
await Promise.all(
filteredChainIds.map(async (chainId) => {
try {
const ethQuery = getEthQuery(chainId);
const { isSupported, delegationAddress } =
await isAccountUpgradedToEIP7702(
address,
chainId,
publicKey,
messenger,
ethQuery,
);
const upgradeContractAddress = getEIP7702UpgradeContractAddress(
chainId,
messenger,
publicKey,
);
return {
chainId,
delegationAddress,
isSupported,
upgradeContractAddress,
};
} catch (error) {
log('Error checking atomic batch support', chainId, error);
return undefined;
}
}),
);
const results = resultsRaw.filter(
(result): result is IsAtomicBatchSupportedResultEntry => Boolean(result),
);
log('Atomic batch supported results', results);
return results;
}
/**
* Generate a transaction batch ID.
*
* @returns A unique batch ID as a hexadecimal string.
*/
function generateBatchId(): Hex {
const idString = v4();
const idBytes = new Uint8Array(parse(idString));
return bytesToHex(idBytes);
}
/**
* Generate the metadata for a nested transaction.
*
* @param request - The batch request.
* @param singleRequest - The request for a single transaction.
* @param ethQuery - The EthQuery instance used to interact with the Ethereum blockchain.
* @returns The metadata for the nested transaction.
*/
async function getNestedTransactionMeta(
request: TransactionBatchRequest,
singleRequest: TransactionBatchSingleRequest,
ethQuery: EthQuery,
): Promise<NestedTransactionMetadata> {
const { from } = request;
const { params, type: requestedType } = singleRequest;
if (requestedType) {
return {
...params,
type: requestedType,
};
}
const { type: determinedType } = await determineTransactionType(
{ from, ...params },
ethQuery,
);
return {
...params,
type: determinedType,
};
}
/**
* Process a batch transaction using an EIP-7702 transaction.
*
* @param request - The request object including the user request and necessary callbacks.
* @returns The batch result object including the batch ID.
*/
async function addTransactionBatchWith7702(
request: AddTransactionBatchRequest,
): Promise<TransactionBatchResult> {
const {
addTransaction,
getChainId,
messenger,
publicKeyEIP7702,
request: userRequest,
} = request;
const {
batchId: batchIdOverride,
disableUpgrade,
from,
gasFeeToken,
gasLimit7702,
networkClientId,
origin,
actionId,
overwriteUpgrade,
requestId,
requiredAssets,
requireApproval,
securityAlertId,
skipInitialGasEstimate,
transactions,
validateSecurity,
} = userRequest;
const chainId = getChainId(networkClientId);
const ethQuery = request.getEthQuery(networkClientId);
const isChainSupported = doesChainSupportEIP7702(chainId, messenger);
if (!isChainSupported) {
log('Chain does not support EIP-7702', chainId);
throw rpcErrors.internal('Chain does not support EIP-7702');
}
if (!publicKeyEIP7702) {
throw rpcErrors.internal(ERROR_MESSGE_PUBLIC_KEY);
}
let requiresUpgrade = false;
if (!disableUpgrade) {
const { delegationAddress, isSupported } = await isAccountUpgradedToEIP7702(
from,
chainId,
publicKeyEIP7702,
messenger,
ethQuery,
);
log('Account', { delegationAddress, isSupported });
if (!isSupported && delegationAddress && !overwriteUpgrade) {
log('Account upgraded to unsupported contract', from, delegationAddress);
throw rpcErrors.internal('Account upgraded to unsupported contract');
}
requiresUpgrade = !isSupported;
if (requiresUpgrade && delegationAddress) {
log('Overwriting authorization as already upgraded', {
current: delegationAddress,
});
}
}
const nestedTransactions = await Promise.all(
transactions.map((tx) =>
getNestedTransactionMeta(userRequest, tx, ethQuery),
),
);
const batchParams = generateEIP7702BatchTransaction(from, nestedTransactions);
const txParams: TransactionParams = {
...batchParams,
from,
gas: gasLimit7702,
maxFeePerGas: nestedTransactions[0]?.maxFeePerGas,
maxPriorityFeePerGas: nestedTransactions[0]?.maxPriorityFeePerGas,
};
if (requiresUpgrade) {
const upgradeContractAddress = getEIP7702UpgradeContractAddress(
chainId,
messenger,
publicKeyEIP7702,
);
if (!upgradeContractAddress) {
throw rpcErrors.internal(ERROR_MESSAGE_NO_UPGRADE_CONTRACT);
}
txParams.type = TransactionEnvelopeType.setCode;
txParams.authorizationList = [{ address: upgradeContractAddress }];
}
if (validateSecurity) {
const securityRequest: ValidateSecurityRequest = {
method: 'eth_sendTransaction',
params: [
{
...txParams,
authorizationList: undefined,
type: TransactionEnvelopeType.feeMarket,
},
],
delegationMock: txParams.authorizationList?.[0]?.address,
origin,
};
log('Security request', securityRequest);
validateSecurity(securityRequest, chainId).catch((error) => {
log('Security validation failed', error);
});
}
log('Adding batch transaction', txParams, networkClientId);
const batchId = batchIdOverride ?? generateBatchId();
const securityAlertResponse = securityAlertId
? ({ securityAlertId } as SecurityAlertResponse)
: undefined;
const existingTransaction = transactions.find(
(tx) => tx.existingTransaction,
)?.existingTransaction;
if (existingTransaction) {
await convertTransactionToEIP7702({
batchId,
existingTransaction,
nestedTransactions,
request,
txParams,
});
return { batchId };
}
const { result } = await addTransaction(txParams, {
actionId,
batchId,
gasFeeToken,
excludeNativeTokenForFee: userRequest.excludeNativeTokenForFee,
isGasFeeIncluded: userRequest.isGasFeeIncluded,
isGasFeeSponsored: userRequest.isGasFeeSponsored,
nestedTransactions,
networkClientId,
origin,
requestId,
requireApproval,
requiredAssets,
securityAlertResponse,
skipInitialGasEstimate,
type: TransactionType.batch,
});
const transactionHash = await result;
log('Batch transaction added', { batchId, transactionHash });
return {
batchId,
};
}
/**
* Process a batch transaction using a publish batch hook.
*
* @param request - The request object including the user request and necessary callbacks.
* @returns The batch result object including the batch ID.
*/
async function addTransactionBatchWithHook(
request: AddTransactionBatchRequest,
): Promise<TransactionBatchResult> {
const {
messenger,
publishBatchHook: requestPublishBatchHook,
request: userRequest,
update,
} = request;
const {
batchId: batchIdOverride,
from,
networkClientId,
origin,
requireApproval,
transactions: requestedTransactions,
} = userRequest;
let resultCallbacks: AcceptResultCallbacks | undefined;
let isSequentialBatchHook = false;
log('Adding transaction batch using hook', userRequest);
const sequentialPublishBatchHook = new SequentialPublishBatchHook({
publishTransaction: request.publishTransaction,
getTransaction: request.getTransaction,
getEthQuery: request.getEthQuery,
getPendingTransactionTracker: request.getPendingTransactionTracker,
});
let { disable7702, disableSequential } = userRequest;
const { disableHook, useHook } = userRequest;
// use hook is a temporary alias for disable7702 and disableSequential
if (useHook) {
disable7702 = true;
disableSequential = true;
}
let publishBatchHook = null;
if (!disableHook && requestPublishBatchHook) {
publishBatchHook = requestPublishBatchHook;
} else if (!disableSequential) {
publishBatchHook = sequentialPublishBatchHook.getHook();
isSequentialBatchHook = true;
}
if (!publishBatchHook) {
log(`No supported batch methods found`, {
disable7702,
disableHook,
disableSequential,
});
throw rpcErrors.internal(`Can't process batch`);
}
let txBatchMeta: TransactionBatchMeta | undefined;
const batchId = batchIdOverride ?? generateBatchId();
const nestedTransactions = requestedTransactions.map((tx) => ({
...tx,
origin,
}));
const transactionCount = nestedTransactions.length;
const collectHook = new CollectPublishHook(transactionCount);
try {
if (requireApproval) {
txBatchMeta = await prepareApprovalData({
batchId,
request,
});
resultCallbacks = (await requestApproval(txBatchMeta, messenger))
.resultCallbacks;
}
const publishHook = collectHook.getHook();
const hookTransactions: Omit<PublishBatchHookTransaction, 'signedTx'>[] =
[];
let index = 0;
for (const nestedTransaction of nestedTransactions) {
const hookTransaction = await processTransactionWithHook(
batchId,
nestedTransaction,
publishHook,
request,
txBatchMeta,
index,
);
hookTransactions.push(hookTransaction);
index += 1;
}
const { signedTransactions } = await collectHook.ready();
const transactions = hookTransactions.map((transaction, i) => ({
...transaction,
signedTx: signedTransactions[i],
}));
const hookParams: PublishBatchHookRequest = {
from,
networkClientId,
transactions,
};
log('Calling publish batch hook', hookParams);
let result = await publishBatchHook(hookParams);
log('Publish batch hook result', result);
if (!result && !isSequentialBatchHook && !disableSequential) {
log('Fallback to sequential publish batch hook due to empty results');
const sequentialBatchHook = sequentialPublishBatchHook.getHook();
result = await sequentialBatchHook(hookParams);
}
if (!result?.results?.length) {
throw new Error('Publish batch hook did not return a result');
}
const transactionHashes = result.results.map(
({ transactionHash }) => transactionHash,
);
collectHook.success(transactionHashes);
resultCallbacks?.success();
log('Completed batch transaction with hook', transactionHashes);
return {
batchId,
};
} catch (error) {
log('Publish batch hook failed', error);
collectHook.error(error);
resultCallbacks?.error(error as Error);
throw error;
} finally {
log('Cleaning up publish batch hook', batchId);
wipeTransactionBatchById(update, batchId);
}
}
/**
* Process a single transaction with a publish batch hook.
*
* @param batchId - ID of the transaction batch.
* @param nestedTransaction - The nested transaction request.
* @param publishHook - The publish hook to use for each transaction.
* @param request - The request object including the user request and necessary callbacks.
* @param txBatchMeta - Metadata for the transaction batch.
* @param index - The index of the transaction in the batch.
* @returns The single transaction request to be processed by the publish batch hook.
*/
async function processTransactionWithHook(
batchId: Hex,
nestedTransaction: TransactionBatchSingleRequest,
publishHook: PublishHook,
request: AddTransactionBatchRequest,
txBatchMeta: TransactionBatchMeta | undefined,
index: number,
): Promise<
Omit<PublishBatchHookTransaction, 'signedTx'> & { type?: TransactionType }
> {
const { assetsFiatValues, existingTransaction, params, type } =
nestedTransaction;
const {
addTransaction,
getTransaction,
request: userRequest,
updateTransaction,
} = request;
const { from, networkClientId, origin } = userRequest;
if (existingTransaction) {
const { id, onPublish } = existingTransaction;
let transactionMeta = getTransaction(id);
const currentNonceHex = transactionMeta.txParams.nonce;
let { signedTransaction } = existingTransaction;
const currentNonceNum = currentNonceHex
? parseInt(currentNonceHex, 16)
: undefined;
const newNonce =
index > 0 && currentNonceNum !== undefined
? currentNonceNum + index
: undefined;
updateTransaction({ transactionId: id }, (_transactionMeta) => {
_transactionMeta.batchId = batchId;
if (newNonce) {
_transactionMeta.txParams.nonce = toHex(newNonce);
}
});
if (newNonce) {
const signResult = await updateTransactionSignature({
transactionId: id,
request,
});
signedTransaction = signResult.newSignature;
transactionMeta = signResult.transactionMeta;
}
publishHook(transactionMeta, signedTransaction)
.then(onPublish)
.catch(() => {
// Intentionally empty
});
log('Processed existing transaction with hook', {
id,
params,
});
return {
id,
params,
};
}
const transactionMetaForGasEstimates = {
...txBatchMeta,
txParams: { ...params, from, gas: txBatchMeta?.gas ?? params.gas },
};
if (txBatchMeta) {
updateTransactionGasEstimates({
txMeta: transactionMetaForGasEstimates as TransactionMeta,
userFeeLevel: GasFeeEstimateLevel.Medium,
});
}
const { transactionMeta } = await addTransaction(
transactionMetaForGasEstimates.txParams,
{
assetsFiatValues,
batchId,
disableGasBuffer: true,
networkClientId,
origin,
publishHook,
requireApproval: false,
type,
},
);
const { id, txParams } = transactionMeta;
const data = txParams.data as Hex | undefined;
const gas = txParams.gas as Hex | undefined;
const maxFeePerGas = txParams.maxFeePerGas as Hex | undefined;
const maxPriorityFeePerGas = txParams.maxPriorityFeePerGas as Hex | undefined;
const to = txParams.to as Hex | undefined;
const value = txParams.value as Hex | undefined;
const newParams: BatchTransactionParams = {
data,
gas,
maxFeePerGas,
maxPriorityFeePerGas,
to,
value,
};
log('Processed new transaction with hook', {
id,
params: newParams,
type,
});
return {
id,
params: newParams,
type,
};
}
/**
* Requests approval for a transaction batch by interacting with the ApprovalController.
*
* @param txBatchMeta - Metadata for the transaction batch, including its ID and origin.
* @param messenger - The messenger instance used to communicate with the ApprovalController.
* @returns A promise that resolves to the result of adding the approval request.
*/
async function requestApproval(
txBatchMeta: TransactionBatchMeta,
messenger: TransactionControllerMessenger,
): Promise<AddResult> {
const id = String(txBatchMeta.id);
const { origin } = txBatchMeta;
const type = ApprovalType.TransactionBatch;
const requestData = { txBatchId: id };
log('Requesting approval for transaction batch', id);
return (await messenger.call(
'ApprovalController:addRequest',
{
id,
origin: origin ?? ORIGIN_METAMASK,
requestData,
expectsResult: true,
type,
},
true,
)) as Promise<AddResult>;
}
/**
* Adds batch metadata to the transaction controller state.
*
* @param transactionBatchMeta - The transaction batch metadata to be added.
* @param update - The update function to modify the transaction controller state.
*/
function addBatchMetadata(
transactionBatchMeta: TransactionBatchMeta,
update: UpdateStateCallback,
): void {
update((state) => {
state.transactionBatches = [
...state.transactionBatches,
transactionBatchMeta,
];
});
}
/**
* Wipes a specific transaction batch from the transaction controller state by its ID.
*
* @param update - The update function to modify the transaction controller state.
* @param id - The ID of the transaction batch to be wiped.
*/
function wipeTransactionBatchById(
update: UpdateStateCallback,
id: string,
): void {
update((state) => {
state.transactionBatches = state.transactionBatches.filter(
(batch) => batch.id !== id,
);
});
}
/**
* Create a new batch metadata object.
*
* @param transactionBatchMeta - The transaction batch metadata object to be created.
* @returns A new TransactionBatchMeta object.
*/
function newBatchMetadata(
transactionBatchMeta: Omit<TransactionBatchMeta, 'status'>,
): TransactionBatchMeta {
return {
...transactionBatchMeta,
status: TransactionStatus.unapproved,
};
}
/**
* Prepares the approval data for a transaction batch.
*
* @param options - The options object containing necessary parameters.
* @param options.batchId - The batch ID for the transaction batch.
* @param options.request - The request object including the user request and necessary callbacks.
* @returns The prepared transaction batch metadata.
*/
async function prepareApprovalData({
batchId,
request,
}: {
batchId: Hex;
request: AddTransactionBatchRequest;
}): Promise<TransactionBatchMeta> {
const {
messenger,
request: userRequest,
isSimulationEnabled,
getChainId,
getEthQuery,
getGasFeeEstimates,
getSimulationConfig,
update,
} = request;
const {
from,
origin,
networkClientId,
transactions: nestedTransactions,
} = userRequest;
const ethQuery = getEthQuery(networkClientId);
if (!isSimulationEnabled()) {
throw new Error(
'Cannot create transaction batch as simulation not supported',
);
}
log('Preparing approval data for batch');
const chainId = getChainId(networkClientId);
const { totalGasLimit: gasLimit } = await simulateGasBatch({
chainId,
from,
getSimulationConfig,
transactions: nestedTransactions,
});
const txBatchMeta: TransactionBatchMeta = newBatchMetadata({
chainId,
from,
gas: gasLimit,
id: batchId,
networkClientId,
origin,
transactions: nestedTransactions,
});
const defaultGasFeeFlow = new DefaultGasFeeFlow();
const gasFeeControllerData = await getGasFeeEstimates({
networkClientId,
});
const gasFeeResponse = await defaultGasFeeFlow.getGasFees({
ethQuery,
gasFeeControllerData,
messenger,
transactionMeta: {
...txBatchMeta,
txParams: {
from,
gas: gasLimit,
},
time: Date.now(),
},
});
txBatchMeta.gasFeeEstimates = gasFeeResponse.estimates;
log('Saving transaction batch metadata', txBatchMeta);
addBatchMetadata(txBatchMeta, update);
return txBatchMeta;
}
/**
* Convert an existing transaction to an EIP-7702 batch transaction.
*
* @param options - Options object.
* @param options.batchId - Batch ID for the transaction batch.
* @param options.existingTransaction - Existing transaction to be converted.
* @param options.nestedTransactions - Nested transactions to be included in the batch.
* @param options.request - Request object including the user request and necessary callbacks.
* @param options.txParams - Transaction parameters for the new EIP-7702 transaction.
* @param options.existingTransaction.id - ID of the existing transaction.
* @param options.existingTransaction.onPublish - Callback for when the transaction is published.
* @returns Promise that resolves after the publish callback has been invoked.
*/
async function convertTransactionToEIP7702({
batchId,
existingTransaction,
nestedTransactions,
request,
txParams,
}: {
batchId: Hex;
request: AddTransactionBatchRequest;
existingTransaction: {
id: string;
onPublish?: ({
transactionHash,
newSignature,
}: {
transactionHash: string | undefined;
newSignature: Hex;
}) => void;
};
nestedTransactions: NestedTransactionMetadata[];
txParams: TransactionParams;
}): Promise<void> {
const { getTransaction, estimateGas, updateTransaction } = request;
const existingTransactionMeta = getTransaction(existingTransaction.id);
if (!existingTransactionMeta) {
throw new Error('Existing transaction not found');
}
log('Converting existing transaction to 7702', { batchId, txParams });
const { networkClientId } = existingTransactionMeta;
const newGasResult = await estimateGas(txParams, networkClientId);
log('Estimated gas for converted EIP-7702 transaction', newGasResult);
updateTransaction(
{ transactionId: existingTransactionMeta.id },
(transactionMeta) => {
transactionMeta.batchId = batchId;
transactionMeta.nestedTransactions = nestedTransactions;
transactionMeta.txParams = txParams;
transactionMeta.txParams.gas = newGasResult.gas;
transactionMeta.txParams.gasLimit = newGasResult.gas;
transactionMeta.txParams.maxFeePerGas =
existingTransactionMeta.txParams.maxFeePerGas;
transactionMeta.txParams.maxPriorityFeePerGas =
existingTransactionMeta.txParams.maxPriorityFeePerGas;
transactionMeta.txParams.nonce = existingTransactionMeta.txParams.nonce;
transactionMeta.txParams.type ??= TransactionEnvelopeType.feeMarket;
},
);
const { newSignature } = await updateTransactionSignature({
request,
transactionId: existingTransactionMeta.id,
});
existingTransaction.onPublish?.({
transactionHash: undefined,
newSignature,
});
log('Transaction updated to EIP-7702', { batchId, txParams, newSignature });