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
* @param simulateTx Simulates the transaction before adding it to the queue, returning an error if it fails simulation. Note: This step is less performant and recommended only for debugging purposes.
168
+
* @param simulateTx Simulate the transaction on-chain without executing
169
169
* @param xIdempotencyKey Transactions submitted with the same idempotency key will be de-duplicated. Only the last 100000 transactions are compared.
170
170
* @param xAccountAddress Smart account address
171
-
* @param xAccountFactoryAddress Smart account factory address. If omitted, Engine will try to resolve it from the contract.
171
+
* @param xAccountFactoryAddress Smart account factory address. If omitted, engine will try to resolve it from the chain.
172
172
* @param xAccountSalt Smart account salt as string or hex. This is used to predict the smart account address. Useful when creating multiple accounts with the same admin and only needed when deploying the account as part of a userop.
173
173
* @returns any Default Response
174
174
* @throws ApiError
@@ -191,10 +191,6 @@ export class AccountFactoryService {
191
191
* Gas limit for the transaction
192
192
*/
193
193
gas?: string;
194
-
/**
195
-
* Gas price for the transaction. Do not use this if maxFeePerGas is set or if you want to use EIP-1559 type transactions. Only use this if you want to use legacy transactions.
* @param simulateTx Simulates the transaction before adding it to the queue, returning an error if it fails simulation. Note: This step is less performant and recommended only for debugging purposes.
89
+
* @param simulateTx Simulate the transaction on-chain without executing
90
90
* @param xIdempotencyKey Transactions submitted with the same idempotency key will be de-duplicated. Only the last 100000 transactions are compared.
91
91
* @param xAccountAddress Smart account address
92
-
* @param xAccountFactoryAddress Smart account factory address. If omitted, Engine will try to resolve it from the contract.
92
+
* @param xAccountFactoryAddress Smart account factory address. If omitted, engine will try to resolve it from the chain.
93
93
* @param xAccountSalt Smart account salt as string or hex. This is used to predict the smart account address. Useful when creating multiple accounts with the same admin and only needed when deploying the account as part of a userop.
94
94
* @returns any Default Response
95
95
* @throws ApiError
@@ -108,10 +108,6 @@ export class AccountService {
108
108
* Gas limit for the transaction
109
109
*/
110
110
gas?: string;
111
-
/**
112
-
* Gas price for the transaction. Do not use this if maxFeePerGas is set or if you want to use EIP-1559 type transactions. Only use this if you want to use legacy transactions.
113
-
*/
114
-
gasPrice?: string;
115
111
/**
116
112
* Maximum fee per gas
117
113
*/
@@ -173,14 +169,14 @@ export class AccountService {
173
169
/**
174
170
* Revoke admin
175
171
* Revoke a smart account's admin permission.
176
-
* @param chain A chain ID ("137") or slug ("polygon-amoy-testnet"). Chain ID is preferred.
* @param simulateTx Simulates the transaction before adding it to the queue, returning an error if it fails simulation. Note: This step is less performant and recommended only for debugging purposes.
176
+
* @param simulateTx Simulate the transaction on-chain without executing
181
177
* @param xIdempotencyKey Transactions submitted with the same idempotency key will be de-duplicated. Only the last 100000 transactions are compared.
182
178
* @param xAccountAddress Smart account address
183
-
* @param xAccountFactoryAddress Smart account factory address. If omitted, Engine will try to resolve it from the contract.
179
+
* @param xAccountFactoryAddress Smart account factory address. If omitted, engine will try to resolve it from the chain.
184
180
* @param xAccountSalt Smart account salt as string or hex. This is used to predict the smart account address. Useful when creating multiple accounts with the same admin and only needed when deploying the account as part of a userop.
185
181
* @returns any Default Response
186
182
* @throws ApiError
@@ -199,10 +195,6 @@ export class AccountService {
199
195
* Gas limit for the transaction
200
196
*/
201
197
gas?: string;
202
-
/**
203
-
* Gas price for the transaction. Do not use this if maxFeePerGas is set or if you want to use EIP-1559 type transactions. Only use this if you want to use legacy transactions.
204
-
*/
205
-
gasPrice?: string;
206
198
/**
207
199
* Maximum fee per gas
208
200
*/
@@ -264,14 +256,14 @@ export class AccountService {
264
256
/**
265
257
* Create session key
266
258
* Create a session key for a smart account.
267
-
* @param chain A chain ID ("137") or slug ("polygon-amoy-testnet"). Chain ID is preferred.
* @param simulateTx Simulates the transaction before adding it to the queue, returning an error if it fails simulation. Note: This step is less performant and recommended only for debugging purposes.
263
+
* @param simulateTx Simulate the transaction on-chain without executing
272
264
* @param xIdempotencyKey Transactions submitted with the same idempotency key will be de-duplicated. Only the last 100000 transactions are compared.
273
265
* @param xAccountAddress Smart account address
274
-
* @param xAccountFactoryAddress Smart account factory address. If omitted, Engine will try to resolve it from the contract.
266
+
* @param xAccountFactoryAddress Smart account factory address. If omitted, engine will try to resolve it from the chain.
275
267
* @param xAccountSalt Smart account salt as string or hex. This is used to predict the smart account address. Useful when creating multiple accounts with the same admin and only needed when deploying the account as part of a userop.
276
268
* @returns any Default Response
277
269
* @throws ApiError
@@ -294,10 +286,6 @@ export class AccountService {
294
286
* Gas limit for the transaction
295
287
*/
296
288
gas?: string;
297
-
/**
298
-
* Gas price for the transaction. Do not use this if maxFeePerGas is set or if you want to use EIP-1559 type transactions. Only use this if you want to use legacy transactions.
299
-
*/
300
-
gasPrice?: string;
301
289
/**
302
290
* Maximum fee per gas
303
291
*/
@@ -359,14 +347,14 @@ export class AccountService {
359
347
/**
360
348
* Revoke session key
361
349
* Revoke a session key for a smart account.
362
-
* @param chain A chain ID ("137") or slug ("polygon-amoy-testnet"). Chain ID is preferred.
* @param simulateTx Simulates the transaction before adding it to the queue, returning an error if it fails simulation. Note: This step is less performant and recommended only for debugging purposes.
354
+
* @param simulateTx Simulate the transaction on-chain without executing
367
355
* @param xIdempotencyKey Transactions submitted with the same idempotency key will be de-duplicated. Only the last 100000 transactions are compared.
368
356
* @param xAccountAddress Smart account address
369
-
* @param xAccountFactoryAddress Smart account factory address. If omitted, Engine will try to resolve it from the contract.
357
+
* @param xAccountFactoryAddress Smart account factory address. If omitted, engine will try to resolve it from the chain.
370
358
* @param xAccountSalt Smart account salt as string or hex. This is used to predict the smart account address. Useful when creating multiple accounts with the same admin and only needed when deploying the account as part of a userop.
371
359
* @returns any Default Response
372
360
* @throws ApiError
@@ -385,10 +373,6 @@ export class AccountService {
385
373
* Gas limit for the transaction
386
374
*/
387
375
gas?: string;
388
-
/**
389
-
* Gas price for the transaction. Do not use this if maxFeePerGas is set or if you want to use EIP-1559 type transactions. Only use this if you want to use legacy transactions.
390
-
*/
391
-
gasPrice?: string;
392
376
/**
393
377
* Maximum fee per gas
394
378
*/
@@ -450,14 +434,14 @@ export class AccountService {
450
434
/**
451
435
* Update session key
452
436
* Update a session key for a smart account.
453
-
* @param chain A chain ID ("137") or slug ("polygon-amoy-testnet"). Chain ID is preferred.
* @param simulateTx Simulates the transaction before adding it to the queue, returning an error if it fails simulation. Note: This step is less performant and recommended only for debugging purposes.
441
+
* @param simulateTx Simulate the transaction on-chain without executing
458
442
* @param xIdempotencyKey Transactions submitted with the same idempotency key will be de-duplicated. Only the last 100000 transactions are compared.
459
443
* @param xAccountAddress Smart account address
460
-
* @param xAccountFactoryAddress Smart account factory address. If omitted, Engine will try to resolve it from the contract.
444
+
* @param xAccountFactoryAddress Smart account factory address. If omitted, engine will try to resolve it from the chain.
461
445
* @param xAccountSalt Smart account salt as string or hex. This is used to predict the smart account address. Useful when creating multiple accounts with the same admin and only needed when deploying the account as part of a userop.
462
446
* @returns any Default Response
463
447
* @throws ApiError
@@ -480,10 +464,6 @@ export class AccountService {
480
464
* Gas limit for the transaction
481
465
*/
482
466
gas?: string;
483
-
/**
484
-
* Gas price for the transaction. Do not use this if maxFeePerGas is set or if you want to use EIP-1559 type transactions. Only use this if you want to use legacy transactions.
0 commit comments