You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/engine/src/client/types.gen.ts
+28-3Lines changed: 28 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -92,6 +92,28 @@ export type AaZksyncExecutionOptions = {
92
92
chainId: string;
93
93
};
94
94
95
+
/**
96
+
* Uses EOA for execution. Only supported for signing currently.
97
+
*/
98
+
exporttypeEoaExecutionOptions={
99
+
type: "eoa";
100
+
101
+
/**
102
+
* The EOA address
103
+
*/
104
+
address: string;
105
+
106
+
/**
107
+
* The chain id of the transaction
108
+
*/
109
+
chainId: string;
110
+
111
+
/**
112
+
* The idempotency key of the transaction. Transaction requests sent with the same idempotency key will be de-duplicated. If not provided, a randomUUID will be generated. This is also used as the ID of a queued/stored transaction.
113
+
*/
114
+
idempotencyKey?: string;
115
+
};
116
+
95
117
exporttypeListAccountsData={
96
118
body?: never;
97
119
path?: never;
@@ -434,7 +456,8 @@ export type SignTransactionData = {
434
456
executionOptions:
435
457
|AutoExecutionOptions
436
458
|AaExecutionOptions
437
-
|AaZksyncExecutionOptions;
459
+
|AaZksyncExecutionOptions
460
+
|EoaExecutionOptions;
438
461
params: Array<{
439
462
/**
440
463
* The recipient address
@@ -585,7 +608,8 @@ export type SignMessageData = {
585
608
executionOptions:
586
609
|AutoExecutionOptions
587
610
|AaExecutionOptions
588
-
|AaZksyncExecutionOptions;
611
+
|AaZksyncExecutionOptions
612
+
|EoaExecutionOptions;
589
613
params: Array<{
590
614
/**
591
615
* The message to sign
@@ -661,7 +685,8 @@ export type SignTypedDataData = {
0 commit comments