viem 2.48.7 → 2.48.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/_cjs/errors/version.js +1 -1
- package/_cjs/tempo/Formatters.js +1 -0
- package/_cjs/tempo/Formatters.js.map +1 -1
- package/_cjs/tempo/Transaction.js.map +1 -1
- package/_esm/errors/version.js +1 -1
- package/_esm/tempo/Formatters.js +1 -0
- package/_esm/tempo/Formatters.js.map +1 -1
- package/_esm/tempo/Transaction.js.map +1 -1
- package/_types/chains/definitions/tempo.d.ts +20 -2
- package/_types/chains/definitions/tempo.d.ts.map +1 -1
- package/_types/chains/definitions/tempoDevnet.d.ts +20 -2
- package/_types/chains/definitions/tempoDevnet.d.ts.map +1 -1
- package/_types/chains/definitions/tempoLocalnet.d.ts +20 -2
- package/_types/chains/definitions/tempoLocalnet.d.ts.map +1 -1
- package/_types/chains/definitions/tempoModerato.d.ts +20 -2
- package/_types/chains/definitions/tempoModerato.d.ts.map +1 -1
- package/_types/errors/version.d.ts +1 -1
- package/_types/tempo/Capabilities.d.ts +5 -0
- package/_types/tempo/Capabilities.d.ts.map +1 -1
- package/_types/tempo/Formatters.d.ts.map +1 -1
- package/_types/tempo/Transaction.d.ts +3 -1
- package/_types/tempo/Transaction.d.ts.map +1 -1
- package/_types/tempo/chainConfig.d.ts +10 -1
- package/_types/tempo/chainConfig.d.ts.map +1 -1
- package/_types/tempo/zones/zone.d.ts +60 -6
- package/_types/tempo/zones/zone.d.ts.map +1 -1
- package/errors/version.ts +1 -1
- package/package.json +1 -1
- package/tempo/Capabilities.ts +6 -0
- package/tempo/Formatters.ts +1 -0
- package/tempo/Transaction.ts +3 -1
|
@@ -312,6 +312,7 @@ export declare const zone: (id: number) => {
|
|
|
312
312
|
sidecars?: undefined;
|
|
313
313
|
authorizationList?: undefined;
|
|
314
314
|
calls?: undefined;
|
|
315
|
+
capabilities?: undefined;
|
|
315
316
|
nonceKey?: undefined;
|
|
316
317
|
keyAuthorization?: undefined;
|
|
317
318
|
feeToken?: undefined;
|
|
@@ -337,6 +338,7 @@ export declare const zone: (id: number) => {
|
|
|
337
338
|
sidecars?: undefined;
|
|
338
339
|
authorizationList?: undefined;
|
|
339
340
|
calls?: undefined;
|
|
341
|
+
capabilities?: undefined;
|
|
340
342
|
nonceKey?: undefined;
|
|
341
343
|
keyAuthorization?: undefined;
|
|
342
344
|
feeToken?: undefined;
|
|
@@ -362,6 +364,7 @@ export declare const zone: (id: number) => {
|
|
|
362
364
|
sidecars?: undefined;
|
|
363
365
|
authorizationList?: undefined;
|
|
364
366
|
calls?: undefined;
|
|
367
|
+
capabilities?: undefined;
|
|
365
368
|
nonceKey?: undefined;
|
|
366
369
|
keyAuthorization?: undefined;
|
|
367
370
|
feeToken?: undefined;
|
|
@@ -387,6 +390,7 @@ export declare const zone: (id: number) => {
|
|
|
387
390
|
kzg?: undefined;
|
|
388
391
|
authorizationList?: undefined;
|
|
389
392
|
calls?: undefined;
|
|
393
|
+
capabilities?: undefined;
|
|
390
394
|
nonceKey?: undefined;
|
|
391
395
|
keyAuthorization?: undefined;
|
|
392
396
|
feeToken?: undefined;
|
|
@@ -412,6 +416,7 @@ export declare const zone: (id: number) => {
|
|
|
412
416
|
kzg?: import("../../index.js").Kzg | undefined;
|
|
413
417
|
authorizationList?: undefined;
|
|
414
418
|
calls?: undefined;
|
|
419
|
+
capabilities?: undefined;
|
|
415
420
|
nonceKey?: undefined;
|
|
416
421
|
keyAuthorization?: undefined;
|
|
417
422
|
feeToken?: undefined;
|
|
@@ -437,6 +442,7 @@ export declare const zone: (id: number) => {
|
|
|
437
442
|
kzg?: undefined;
|
|
438
443
|
sidecars?: undefined;
|
|
439
444
|
calls?: undefined;
|
|
445
|
+
capabilities?: undefined;
|
|
440
446
|
nonceKey?: undefined;
|
|
441
447
|
keyAuthorization?: undefined;
|
|
442
448
|
feeToken?: undefined;
|
|
@@ -456,10 +462,13 @@ export declare const zone: (id: number) => {
|
|
|
456
462
|
maxFeePerGas?: `0x${string}` | undefined;
|
|
457
463
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
458
464
|
accessList?: import("../../index.js").AccessList | undefined;
|
|
459
|
-
keyAuthorization?: import("ox/tempo/KeyAuthorization").Signed<`0x${string}`, `0x${string}`, `0x${string}`> | undefined;
|
|
460
465
|
calls?: readonly import("ox/tempo/TxEnvelopeTempo").Call<`0x${string}`, import("ox/tempo/TempoAddress").Address>[] | undefined;
|
|
466
|
+
capabilities?: {
|
|
467
|
+
[x: string]: any;
|
|
468
|
+
} | undefined;
|
|
461
469
|
feePayer?: true | import("../../index.js").Account | undefined;
|
|
462
470
|
feeToken?: bigint | import("ox/tempo/TempoAddress").Address | undefined;
|
|
471
|
+
keyAuthorization?: import("ox/tempo/KeyAuthorization").Signed<`0x${string}`, `0x${string}`, `0x${string}`> | undefined;
|
|
463
472
|
nonceKey?: `0x${string}` | "expiring" | undefined;
|
|
464
473
|
validBefore?: `0x${string}` | undefined;
|
|
465
474
|
validAfter?: `0x${string}` | undefined;
|
|
@@ -765,6 +774,7 @@ export declare const zone: (id: number) => {
|
|
|
765
774
|
sidecars?: undefined;
|
|
766
775
|
authorizationList?: undefined;
|
|
767
776
|
calls?: undefined;
|
|
777
|
+
capabilities?: undefined;
|
|
768
778
|
nonceKey?: undefined;
|
|
769
779
|
keyAuthorization?: undefined;
|
|
770
780
|
feeToken?: undefined;
|
|
@@ -790,6 +800,7 @@ export declare const zone: (id: number) => {
|
|
|
790
800
|
sidecars?: undefined;
|
|
791
801
|
authorizationList?: undefined;
|
|
792
802
|
calls?: undefined;
|
|
803
|
+
capabilities?: undefined;
|
|
793
804
|
nonceKey?: undefined;
|
|
794
805
|
keyAuthorization?: undefined;
|
|
795
806
|
feeToken?: undefined;
|
|
@@ -815,6 +826,7 @@ export declare const zone: (id: number) => {
|
|
|
815
826
|
sidecars?: undefined;
|
|
816
827
|
authorizationList?: undefined;
|
|
817
828
|
calls?: undefined;
|
|
829
|
+
capabilities?: undefined;
|
|
818
830
|
nonceKey?: undefined;
|
|
819
831
|
keyAuthorization?: undefined;
|
|
820
832
|
feeToken?: undefined;
|
|
@@ -840,6 +852,7 @@ export declare const zone: (id: number) => {
|
|
|
840
852
|
kzg?: undefined;
|
|
841
853
|
authorizationList?: undefined;
|
|
842
854
|
calls?: undefined;
|
|
855
|
+
capabilities?: undefined;
|
|
843
856
|
nonceKey?: undefined;
|
|
844
857
|
keyAuthorization?: undefined;
|
|
845
858
|
feeToken?: undefined;
|
|
@@ -865,6 +878,7 @@ export declare const zone: (id: number) => {
|
|
|
865
878
|
kzg?: import("../../index.js").Kzg | undefined;
|
|
866
879
|
authorizationList?: undefined;
|
|
867
880
|
calls?: undefined;
|
|
881
|
+
capabilities?: undefined;
|
|
868
882
|
nonceKey?: undefined;
|
|
869
883
|
keyAuthorization?: undefined;
|
|
870
884
|
feeToken?: undefined;
|
|
@@ -890,6 +904,7 @@ export declare const zone: (id: number) => {
|
|
|
890
904
|
kzg?: undefined;
|
|
891
905
|
sidecars?: undefined;
|
|
892
906
|
calls?: undefined;
|
|
907
|
+
capabilities?: undefined;
|
|
893
908
|
nonceKey?: undefined;
|
|
894
909
|
keyAuthorization?: undefined;
|
|
895
910
|
feeToken?: undefined;
|
|
@@ -909,10 +924,13 @@ export declare const zone: (id: number) => {
|
|
|
909
924
|
maxFeePerGas?: `0x${string}` | undefined;
|
|
910
925
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
911
926
|
accessList?: import("../../index.js").AccessList | undefined;
|
|
912
|
-
keyAuthorization?: import("ox/tempo/KeyAuthorization").Signed<`0x${string}`, `0x${string}`, `0x${string}`> | undefined;
|
|
913
927
|
calls?: readonly import("ox/tempo/TxEnvelopeTempo").Call<`0x${string}`, import("ox/tempo/TempoAddress").Address>[] | undefined;
|
|
928
|
+
capabilities?: {
|
|
929
|
+
[x: string]: any;
|
|
930
|
+
} | undefined;
|
|
914
931
|
feePayer?: true | import("../../index.js").Account | undefined;
|
|
915
932
|
feeToken?: bigint | import("ox/tempo/TempoAddress").Address | undefined;
|
|
933
|
+
keyAuthorization?: import("ox/tempo/KeyAuthorization").Signed<`0x${string}`, `0x${string}`, `0x${string}`> | undefined;
|
|
916
934
|
nonceKey?: `0x${string}` | "expiring" | undefined;
|
|
917
935
|
validBefore?: `0x${string}` | undefined;
|
|
918
936
|
validAfter?: `0x${string}` | undefined;
|
|
@@ -1243,6 +1261,7 @@ export declare const zoneModerato: (id: number) => {
|
|
|
1243
1261
|
sidecars?: undefined;
|
|
1244
1262
|
authorizationList?: undefined;
|
|
1245
1263
|
calls?: undefined;
|
|
1264
|
+
capabilities?: undefined;
|
|
1246
1265
|
nonceKey?: undefined;
|
|
1247
1266
|
keyAuthorization?: undefined;
|
|
1248
1267
|
feeToken?: undefined;
|
|
@@ -1268,6 +1287,7 @@ export declare const zoneModerato: (id: number) => {
|
|
|
1268
1287
|
sidecars?: undefined;
|
|
1269
1288
|
authorizationList?: undefined;
|
|
1270
1289
|
calls?: undefined;
|
|
1290
|
+
capabilities?: undefined;
|
|
1271
1291
|
nonceKey?: undefined;
|
|
1272
1292
|
keyAuthorization?: undefined;
|
|
1273
1293
|
feeToken?: undefined;
|
|
@@ -1293,6 +1313,7 @@ export declare const zoneModerato: (id: number) => {
|
|
|
1293
1313
|
sidecars?: undefined;
|
|
1294
1314
|
authorizationList?: undefined;
|
|
1295
1315
|
calls?: undefined;
|
|
1316
|
+
capabilities?: undefined;
|
|
1296
1317
|
nonceKey?: undefined;
|
|
1297
1318
|
keyAuthorization?: undefined;
|
|
1298
1319
|
feeToken?: undefined;
|
|
@@ -1318,6 +1339,7 @@ export declare const zoneModerato: (id: number) => {
|
|
|
1318
1339
|
kzg?: undefined;
|
|
1319
1340
|
authorizationList?: undefined;
|
|
1320
1341
|
calls?: undefined;
|
|
1342
|
+
capabilities?: undefined;
|
|
1321
1343
|
nonceKey?: undefined;
|
|
1322
1344
|
keyAuthorization?: undefined;
|
|
1323
1345
|
feeToken?: undefined;
|
|
@@ -1343,6 +1365,7 @@ export declare const zoneModerato: (id: number) => {
|
|
|
1343
1365
|
kzg?: import("../../index.js").Kzg | undefined;
|
|
1344
1366
|
authorizationList?: undefined;
|
|
1345
1367
|
calls?: undefined;
|
|
1368
|
+
capabilities?: undefined;
|
|
1346
1369
|
nonceKey?: undefined;
|
|
1347
1370
|
keyAuthorization?: undefined;
|
|
1348
1371
|
feeToken?: undefined;
|
|
@@ -1368,6 +1391,7 @@ export declare const zoneModerato: (id: number) => {
|
|
|
1368
1391
|
kzg?: undefined;
|
|
1369
1392
|
sidecars?: undefined;
|
|
1370
1393
|
calls?: undefined;
|
|
1394
|
+
capabilities?: undefined;
|
|
1371
1395
|
nonceKey?: undefined;
|
|
1372
1396
|
keyAuthorization?: undefined;
|
|
1373
1397
|
feeToken?: undefined;
|
|
@@ -1387,10 +1411,13 @@ export declare const zoneModerato: (id: number) => {
|
|
|
1387
1411
|
maxFeePerGas?: `0x${string}` | undefined;
|
|
1388
1412
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
1389
1413
|
accessList?: import("../../index.js").AccessList | undefined;
|
|
1390
|
-
keyAuthorization?: import("ox/tempo/KeyAuthorization").Signed<`0x${string}`, `0x${string}`, `0x${string}`> | undefined;
|
|
1391
1414
|
calls?: readonly import("ox/tempo/TxEnvelopeTempo").Call<`0x${string}`, import("ox/tempo/TempoAddress").Address>[] | undefined;
|
|
1415
|
+
capabilities?: {
|
|
1416
|
+
[x: string]: any;
|
|
1417
|
+
} | undefined;
|
|
1392
1418
|
feePayer?: true | import("../../index.js").Account | undefined;
|
|
1393
1419
|
feeToken?: bigint | import("ox/tempo/TempoAddress").Address | undefined;
|
|
1420
|
+
keyAuthorization?: import("ox/tempo/KeyAuthorization").Signed<`0x${string}`, `0x${string}`, `0x${string}`> | undefined;
|
|
1394
1421
|
nonceKey?: `0x${string}` | "expiring" | undefined;
|
|
1395
1422
|
validBefore?: `0x${string}` | undefined;
|
|
1396
1423
|
validAfter?: `0x${string}` | undefined;
|
|
@@ -1696,6 +1723,7 @@ export declare const zoneModerato: (id: number) => {
|
|
|
1696
1723
|
sidecars?: undefined;
|
|
1697
1724
|
authorizationList?: undefined;
|
|
1698
1725
|
calls?: undefined;
|
|
1726
|
+
capabilities?: undefined;
|
|
1699
1727
|
nonceKey?: undefined;
|
|
1700
1728
|
keyAuthorization?: undefined;
|
|
1701
1729
|
feeToken?: undefined;
|
|
@@ -1721,6 +1749,7 @@ export declare const zoneModerato: (id: number) => {
|
|
|
1721
1749
|
sidecars?: undefined;
|
|
1722
1750
|
authorizationList?: undefined;
|
|
1723
1751
|
calls?: undefined;
|
|
1752
|
+
capabilities?: undefined;
|
|
1724
1753
|
nonceKey?: undefined;
|
|
1725
1754
|
keyAuthorization?: undefined;
|
|
1726
1755
|
feeToken?: undefined;
|
|
@@ -1746,6 +1775,7 @@ export declare const zoneModerato: (id: number) => {
|
|
|
1746
1775
|
sidecars?: undefined;
|
|
1747
1776
|
authorizationList?: undefined;
|
|
1748
1777
|
calls?: undefined;
|
|
1778
|
+
capabilities?: undefined;
|
|
1749
1779
|
nonceKey?: undefined;
|
|
1750
1780
|
keyAuthorization?: undefined;
|
|
1751
1781
|
feeToken?: undefined;
|
|
@@ -1771,6 +1801,7 @@ export declare const zoneModerato: (id: number) => {
|
|
|
1771
1801
|
kzg?: undefined;
|
|
1772
1802
|
authorizationList?: undefined;
|
|
1773
1803
|
calls?: undefined;
|
|
1804
|
+
capabilities?: undefined;
|
|
1774
1805
|
nonceKey?: undefined;
|
|
1775
1806
|
keyAuthorization?: undefined;
|
|
1776
1807
|
feeToken?: undefined;
|
|
@@ -1796,6 +1827,7 @@ export declare const zoneModerato: (id: number) => {
|
|
|
1796
1827
|
kzg?: import("../../index.js").Kzg | undefined;
|
|
1797
1828
|
authorizationList?: undefined;
|
|
1798
1829
|
calls?: undefined;
|
|
1830
|
+
capabilities?: undefined;
|
|
1799
1831
|
nonceKey?: undefined;
|
|
1800
1832
|
keyAuthorization?: undefined;
|
|
1801
1833
|
feeToken?: undefined;
|
|
@@ -1821,6 +1853,7 @@ export declare const zoneModerato: (id: number) => {
|
|
|
1821
1853
|
kzg?: undefined;
|
|
1822
1854
|
sidecars?: undefined;
|
|
1823
1855
|
calls?: undefined;
|
|
1856
|
+
capabilities?: undefined;
|
|
1824
1857
|
nonceKey?: undefined;
|
|
1825
1858
|
keyAuthorization?: undefined;
|
|
1826
1859
|
feeToken?: undefined;
|
|
@@ -1840,10 +1873,13 @@ export declare const zoneModerato: (id: number) => {
|
|
|
1840
1873
|
maxFeePerGas?: `0x${string}` | undefined;
|
|
1841
1874
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
1842
1875
|
accessList?: import("../../index.js").AccessList | undefined;
|
|
1843
|
-
keyAuthorization?: import("ox/tempo/KeyAuthorization").Signed<`0x${string}`, `0x${string}`, `0x${string}`> | undefined;
|
|
1844
1876
|
calls?: readonly import("ox/tempo/TxEnvelopeTempo").Call<`0x${string}`, import("ox/tempo/TempoAddress").Address>[] | undefined;
|
|
1877
|
+
capabilities?: {
|
|
1878
|
+
[x: string]: any;
|
|
1879
|
+
} | undefined;
|
|
1845
1880
|
feePayer?: true | import("../../index.js").Account | undefined;
|
|
1846
1881
|
feeToken?: bigint | import("ox/tempo/TempoAddress").Address | undefined;
|
|
1882
|
+
keyAuthorization?: import("ox/tempo/KeyAuthorization").Signed<`0x${string}`, `0x${string}`, `0x${string}`> | undefined;
|
|
1847
1883
|
nonceKey?: `0x${string}` | "expiring" | undefined;
|
|
1848
1884
|
validBefore?: `0x${string}` | undefined;
|
|
1849
1885
|
validAfter?: `0x${string}` | undefined;
|
|
@@ -2175,6 +2211,7 @@ export declare function from(options: from.Options): (id: number) => {
|
|
|
2175
2211
|
sidecars?: undefined;
|
|
2176
2212
|
authorizationList?: undefined;
|
|
2177
2213
|
calls?: undefined;
|
|
2214
|
+
capabilities?: undefined;
|
|
2178
2215
|
nonceKey?: undefined;
|
|
2179
2216
|
keyAuthorization?: undefined;
|
|
2180
2217
|
feeToken?: undefined;
|
|
@@ -2200,6 +2237,7 @@ export declare function from(options: from.Options): (id: number) => {
|
|
|
2200
2237
|
sidecars?: undefined;
|
|
2201
2238
|
authorizationList?: undefined;
|
|
2202
2239
|
calls?: undefined;
|
|
2240
|
+
capabilities?: undefined;
|
|
2203
2241
|
nonceKey?: undefined;
|
|
2204
2242
|
keyAuthorization?: undefined;
|
|
2205
2243
|
feeToken?: undefined;
|
|
@@ -2225,6 +2263,7 @@ export declare function from(options: from.Options): (id: number) => {
|
|
|
2225
2263
|
sidecars?: undefined;
|
|
2226
2264
|
authorizationList?: undefined;
|
|
2227
2265
|
calls?: undefined;
|
|
2266
|
+
capabilities?: undefined;
|
|
2228
2267
|
nonceKey?: undefined;
|
|
2229
2268
|
keyAuthorization?: undefined;
|
|
2230
2269
|
feeToken?: undefined;
|
|
@@ -2250,6 +2289,7 @@ export declare function from(options: from.Options): (id: number) => {
|
|
|
2250
2289
|
kzg?: undefined;
|
|
2251
2290
|
authorizationList?: undefined;
|
|
2252
2291
|
calls?: undefined;
|
|
2292
|
+
capabilities?: undefined;
|
|
2253
2293
|
nonceKey?: undefined;
|
|
2254
2294
|
keyAuthorization?: undefined;
|
|
2255
2295
|
feeToken?: undefined;
|
|
@@ -2275,6 +2315,7 @@ export declare function from(options: from.Options): (id: number) => {
|
|
|
2275
2315
|
kzg?: import("../../index.js").Kzg | undefined;
|
|
2276
2316
|
authorizationList?: undefined;
|
|
2277
2317
|
calls?: undefined;
|
|
2318
|
+
capabilities?: undefined;
|
|
2278
2319
|
nonceKey?: undefined;
|
|
2279
2320
|
keyAuthorization?: undefined;
|
|
2280
2321
|
feeToken?: undefined;
|
|
@@ -2300,6 +2341,7 @@ export declare function from(options: from.Options): (id: number) => {
|
|
|
2300
2341
|
kzg?: undefined;
|
|
2301
2342
|
sidecars?: undefined;
|
|
2302
2343
|
calls?: undefined;
|
|
2344
|
+
capabilities?: undefined;
|
|
2303
2345
|
nonceKey?: undefined;
|
|
2304
2346
|
keyAuthorization?: undefined;
|
|
2305
2347
|
feeToken?: undefined;
|
|
@@ -2319,10 +2361,13 @@ export declare function from(options: from.Options): (id: number) => {
|
|
|
2319
2361
|
maxFeePerGas?: `0x${string}` | undefined;
|
|
2320
2362
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
2321
2363
|
accessList?: import("../../index.js").AccessList | undefined;
|
|
2322
|
-
keyAuthorization?: import("ox/tempo/KeyAuthorization").Signed<`0x${string}`, `0x${string}`, `0x${string}`> | undefined;
|
|
2323
2364
|
calls?: readonly import("ox/tempo/TxEnvelopeTempo").Call<`0x${string}`, import("ox/tempo/TempoAddress").Address>[] | undefined;
|
|
2365
|
+
capabilities?: {
|
|
2366
|
+
[x: string]: any;
|
|
2367
|
+
} | undefined;
|
|
2324
2368
|
feePayer?: true | import("../../index.js").Account | undefined;
|
|
2325
2369
|
feeToken?: bigint | import("ox/tempo/TempoAddress").Address | undefined;
|
|
2370
|
+
keyAuthorization?: import("ox/tempo/KeyAuthorization").Signed<`0x${string}`, `0x${string}`, `0x${string}`> | undefined;
|
|
2326
2371
|
nonceKey?: `0x${string}` | "expiring" | undefined;
|
|
2327
2372
|
validBefore?: `0x${string}` | undefined;
|
|
2328
2373
|
validAfter?: `0x${string}` | undefined;
|
|
@@ -2628,6 +2673,7 @@ export declare function from(options: from.Options): (id: number) => {
|
|
|
2628
2673
|
sidecars?: undefined;
|
|
2629
2674
|
authorizationList?: undefined;
|
|
2630
2675
|
calls?: undefined;
|
|
2676
|
+
capabilities?: undefined;
|
|
2631
2677
|
nonceKey?: undefined;
|
|
2632
2678
|
keyAuthorization?: undefined;
|
|
2633
2679
|
feeToken?: undefined;
|
|
@@ -2653,6 +2699,7 @@ export declare function from(options: from.Options): (id: number) => {
|
|
|
2653
2699
|
sidecars?: undefined;
|
|
2654
2700
|
authorizationList?: undefined;
|
|
2655
2701
|
calls?: undefined;
|
|
2702
|
+
capabilities?: undefined;
|
|
2656
2703
|
nonceKey?: undefined;
|
|
2657
2704
|
keyAuthorization?: undefined;
|
|
2658
2705
|
feeToken?: undefined;
|
|
@@ -2678,6 +2725,7 @@ export declare function from(options: from.Options): (id: number) => {
|
|
|
2678
2725
|
sidecars?: undefined;
|
|
2679
2726
|
authorizationList?: undefined;
|
|
2680
2727
|
calls?: undefined;
|
|
2728
|
+
capabilities?: undefined;
|
|
2681
2729
|
nonceKey?: undefined;
|
|
2682
2730
|
keyAuthorization?: undefined;
|
|
2683
2731
|
feeToken?: undefined;
|
|
@@ -2703,6 +2751,7 @@ export declare function from(options: from.Options): (id: number) => {
|
|
|
2703
2751
|
kzg?: undefined;
|
|
2704
2752
|
authorizationList?: undefined;
|
|
2705
2753
|
calls?: undefined;
|
|
2754
|
+
capabilities?: undefined;
|
|
2706
2755
|
nonceKey?: undefined;
|
|
2707
2756
|
keyAuthorization?: undefined;
|
|
2708
2757
|
feeToken?: undefined;
|
|
@@ -2728,6 +2777,7 @@ export declare function from(options: from.Options): (id: number) => {
|
|
|
2728
2777
|
kzg?: import("../../index.js").Kzg | undefined;
|
|
2729
2778
|
authorizationList?: undefined;
|
|
2730
2779
|
calls?: undefined;
|
|
2780
|
+
capabilities?: undefined;
|
|
2731
2781
|
nonceKey?: undefined;
|
|
2732
2782
|
keyAuthorization?: undefined;
|
|
2733
2783
|
feeToken?: undefined;
|
|
@@ -2753,6 +2803,7 @@ export declare function from(options: from.Options): (id: number) => {
|
|
|
2753
2803
|
kzg?: undefined;
|
|
2754
2804
|
sidecars?: undefined;
|
|
2755
2805
|
calls?: undefined;
|
|
2806
|
+
capabilities?: undefined;
|
|
2756
2807
|
nonceKey?: undefined;
|
|
2757
2808
|
keyAuthorization?: undefined;
|
|
2758
2809
|
feeToken?: undefined;
|
|
@@ -2772,10 +2823,13 @@ export declare function from(options: from.Options): (id: number) => {
|
|
|
2772
2823
|
maxFeePerGas?: `0x${string}` | undefined;
|
|
2773
2824
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
2774
2825
|
accessList?: import("../../index.js").AccessList | undefined;
|
|
2775
|
-
keyAuthorization?: import("ox/tempo/KeyAuthorization").Signed<`0x${string}`, `0x${string}`, `0x${string}`> | undefined;
|
|
2776
2826
|
calls?: readonly import("ox/tempo/TxEnvelopeTempo").Call<`0x${string}`, import("ox/tempo/TempoAddress").Address>[] | undefined;
|
|
2827
|
+
capabilities?: {
|
|
2828
|
+
[x: string]: any;
|
|
2829
|
+
} | undefined;
|
|
2777
2830
|
feePayer?: true | import("../../index.js").Account | undefined;
|
|
2778
2831
|
feeToken?: bigint | import("ox/tempo/TempoAddress").Address | undefined;
|
|
2832
|
+
keyAuthorization?: import("ox/tempo/KeyAuthorization").Signed<`0x${string}`, `0x${string}`, `0x${string}`> | undefined;
|
|
2779
2833
|
nonceKey?: `0x${string}` | "expiring" | undefined;
|
|
2780
2834
|
validBefore?: `0x${string}` | undefined;
|
|
2781
2835
|
validAfter?: `0x${string}` | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"zone.d.ts","sourceRoot":"","sources":["../../../tempo/zones/zone.ts"],"names":[],"mappings":"AAMA,eAAO,MAAM,eAAe;;;;;CAKsC,CAAA;AAElE,wBAAgB,gBAAgB,CAC9B,OAAO,EAAE,MAAM,EACf,MAAM,EAAE,MAAM,GACb,KAAK,MAAM,EAAE,CASf;AAkBD,eAAO,MAAM,IAAI,OAYH,MAAM
|
|
1
|
+
{"version":3,"file":"zone.d.ts","sourceRoot":"","sources":["../../../tempo/zones/zone.ts"],"names":[],"mappings":"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"}
|
package/errors/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const version = '2.48.
|
|
1
|
+
export const version = '2.48.8'
|
package/package.json
CHANGED
package/tempo/Capabilities.ts
CHANGED
|
@@ -7,6 +7,7 @@ import type { TransactionRequestTempo } from './Transaction.js'
|
|
|
7
7
|
|
|
8
8
|
export type Schema = Omit<DefaultCapabilitiesSchema, 'sendCalls'> & {
|
|
9
9
|
fillTransaction: {
|
|
10
|
+
Request: FillTransactionRequestCapabilities
|
|
10
11
|
ReturnType: FillTransactionCapabilities
|
|
11
12
|
}
|
|
12
13
|
sendCalls: {
|
|
@@ -14,6 +15,11 @@ export type Schema = Omit<DefaultCapabilitiesSchema, 'sendCalls'> & {
|
|
|
14
15
|
}
|
|
15
16
|
}
|
|
16
17
|
|
|
18
|
+
export type FillTransactionRequestCapabilities = {
|
|
19
|
+
/** Whether to include `balanceDiffs` in the response. */
|
|
20
|
+
balanceDiffs?: boolean | undefined
|
|
21
|
+
}
|
|
22
|
+
|
|
17
23
|
export type FillTransactionCapabilities = {
|
|
18
24
|
autoSwap?:
|
|
19
25
|
| {
|
package/tempo/Formatters.ts
CHANGED
|
@@ -139,6 +139,7 @@ export function formatTransactionRequest(
|
|
|
139
139
|
|
|
140
140
|
return {
|
|
141
141
|
...rpc,
|
|
142
|
+
...(request.capabilities ? { capabilities: request.capabilities } : {}),
|
|
142
143
|
...(keyData ? { keyData } : {}),
|
|
143
144
|
...(keyId ? { keyId } : {}),
|
|
144
145
|
...(keyType ? { keyType } : {}),
|
package/tempo/Transaction.ts
CHANGED
|
@@ -13,6 +13,7 @@ import {
|
|
|
13
13
|
TxEnvelopeTempo as TxTempo,
|
|
14
14
|
} from 'ox/tempo'
|
|
15
15
|
import type { Account } from '../accounts/types.js'
|
|
16
|
+
import type { ExtractCapabilities } from '../types/capabilities.js'
|
|
16
17
|
import type { FeeValuesEIP1559 } from '../types/fee.js'
|
|
17
18
|
import type { Signature as viem_Signature } from '../types/misc.js'
|
|
18
19
|
import type {
|
|
@@ -118,10 +119,11 @@ export type TransactionRequestTempo<
|
|
|
118
119
|
> = TransactionRequestBase<quantity, index, type> &
|
|
119
120
|
ExactPartial<FeeValuesEIP1559<quantity>> & {
|
|
120
121
|
accessList?: AccessList | undefined
|
|
121
|
-
keyAuthorization?: KeyAuthorization.Signed<quantity, index> | undefined
|
|
122
122
|
calls?: readonly TxTempo.Call<quantity, TempoAddress.Address>[] | undefined
|
|
123
|
+
capabilities?: ExtractCapabilities<'fillTransaction', 'Request'> | undefined
|
|
123
124
|
feePayer?: Account | true | undefined
|
|
124
125
|
feeToken?: TempoAddress.Address | bigint | undefined
|
|
126
|
+
keyAuthorization?: KeyAuthorization.Signed<quantity, index> | undefined
|
|
125
127
|
nonceKey?: 'expiring' | quantity | undefined
|
|
126
128
|
validBefore?: index | undefined
|
|
127
129
|
validAfter?: index | undefined
|