ox 1.0.0-beta.11 → 1.0.0-beta.13
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/dist/core/internal/rpcSchemas/eth.d.ts +16 -0
- package/dist/core/internal/rpcSchemas/eth.d.ts.map +1 -1
- package/dist/tempo/MultisigConfig.d.ts +37 -85
- package/dist/tempo/MultisigConfig.d.ts.map +1 -1
- package/dist/tempo/MultisigConfig.js +39 -83
- package/dist/tempo/MultisigConfig.js.map +1 -1
- package/dist/tempo/SignatureEnvelope.d.ts +32 -30
- package/dist/tempo/SignatureEnvelope.d.ts.map +1 -1
- package/dist/tempo/SignatureEnvelope.js +56 -51
- package/dist/tempo/SignatureEnvelope.js.map +1 -1
- package/dist/tempo/index.d.ts +2 -2
- package/dist/tempo/index.js +2 -2
- package/dist/zod/RpcSchema.d.ts +1 -0
- package/dist/zod/RpcSchema.d.ts.map +1 -1
- package/dist/zod/internal/rpcSchemas/Eth.d.ts +1 -0
- package/dist/zod/internal/rpcSchemas/Eth.d.ts.map +1 -1
- package/dist/zod/internal/rpcSchemas/Eth.js +5 -0
- package/dist/zod/internal/rpcSchemas/Eth.js.map +1 -1
- package/dist/zod/tempo/AuthorizationTempo.d.ts +0 -20
- package/dist/zod/tempo/AuthorizationTempo.d.ts.map +1 -1
- package/dist/zod/tempo/KeyAuthorization.d.ts +0 -11
- package/dist/zod/tempo/KeyAuthorization.d.ts.map +1 -1
- package/dist/zod/tempo/RpcSchemaTempo.d.ts +0 -12
- package/dist/zod/tempo/RpcSchemaTempo.d.ts.map +1 -1
- package/dist/zod/tempo/SignatureEnvelope.d.ts +0 -6
- package/dist/zod/tempo/SignatureEnvelope.d.ts.map +1 -1
- package/dist/zod/tempo/SignatureEnvelope.js +0 -2
- package/dist/zod/tempo/SignatureEnvelope.js.map +1 -1
- package/dist/zod/tempo/Transaction.d.ts +0 -24
- package/dist/zod/tempo/Transaction.d.ts.map +1 -1
- package/dist/zod/tempo/TransactionRequest.d.ts +0 -21
- package/dist/zod/tempo/TransactionRequest.d.ts.map +1 -1
- package/dist/zod/tempo/TxEnvelopeTempo.d.ts +0 -9
- package/dist/zod/tempo/TxEnvelopeTempo.d.ts.map +1 -1
- package/dist/zod/tempo/ZoneRpcAuthentication.d.ts +0 -3
- package/dist/zod/tempo/ZoneRpcAuthentication.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/core/internal/rpcSchemas/eth.ts +16 -0
- package/src/tempo/MultisigConfig.test.ts +54 -37
- package/src/tempo/MultisigConfig.ts +59 -134
- package/src/tempo/SignatureEnvelope.test.ts +118 -17
- package/src/tempo/SignatureEnvelope.ts +77 -72
- package/src/tempo/e2e.test.ts +221 -1
- package/src/tempo/index.ts +2 -2
- package/src/version.ts +1 -1
- package/src/zod/internal/rpcSchemas/Eth.ts +6 -0
- package/src/zod/tempo/SignatureEnvelope.ts +0 -2
- package/src/zod/tempo/_test/SignatureEnvelope.test.ts +0 -2
|
@@ -37,7 +37,6 @@ export declare const Tempo: z.ZodMiniObject<{
|
|
|
37
37
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
38
38
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
39
39
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
40
|
-
configId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
41
40
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
42
41
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
43
42
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -90,7 +89,6 @@ export declare const Tempo: z.ZodMiniObject<{
|
|
|
90
89
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
91
90
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
92
91
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
93
|
-
genesisConfigId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
94
92
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
95
93
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
96
94
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -173,7 +171,6 @@ export declare const Tempo: z.ZodMiniObject<{
|
|
|
173
171
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
174
172
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
175
173
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
176
|
-
configId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
177
174
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
178
175
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
179
176
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -241,7 +238,6 @@ export declare const Tempo: z.ZodMiniObject<{
|
|
|
241
238
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
242
239
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
243
240
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
244
|
-
genesisConfigId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
245
241
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
246
242
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
247
243
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -287,7 +283,6 @@ export declare const Tempo: z.ZodMiniObject<{
|
|
|
287
283
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
288
284
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
289
285
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
290
|
-
configId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
291
286
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
292
287
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
293
288
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -340,7 +335,6 @@ export declare const Tempo: z.ZodMiniObject<{
|
|
|
340
335
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
341
336
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
342
337
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
343
|
-
genesisConfigId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
344
338
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
345
339
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
346
340
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -395,7 +389,6 @@ export declare const TempoToRpc: z.ZodMiniObject<{
|
|
|
395
389
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
396
390
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
397
391
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
398
|
-
configId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
399
392
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
400
393
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
401
394
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -448,7 +441,6 @@ export declare const TempoToRpc: z.ZodMiniObject<{
|
|
|
448
441
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
449
442
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
450
443
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
451
|
-
genesisConfigId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
452
444
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
453
445
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
454
446
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -531,7 +523,6 @@ export declare const TempoToRpc: z.ZodMiniObject<{
|
|
|
531
523
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
532
524
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
533
525
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
534
|
-
configId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
535
526
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
536
527
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
537
528
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -599,7 +590,6 @@ export declare const TempoToRpc: z.ZodMiniObject<{
|
|
|
599
590
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
600
591
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
601
592
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
602
|
-
genesisConfigId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
603
593
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
604
594
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
605
595
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -645,7 +635,6 @@ export declare const TempoToRpc: z.ZodMiniObject<{
|
|
|
645
635
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
646
636
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
647
637
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
648
|
-
configId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
649
638
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
650
639
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
651
640
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -698,7 +687,6 @@ export declare const TempoToRpc: z.ZodMiniObject<{
|
|
|
698
687
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
699
688
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
700
689
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
701
|
-
genesisConfigId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
702
690
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
703
691
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
704
692
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -753,7 +741,6 @@ export declare const Transaction: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
|
753
741
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
754
742
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
755
743
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
756
|
-
configId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
757
744
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
758
745
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
759
746
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -806,7 +793,6 @@ export declare const Transaction: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
|
806
793
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
807
794
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
808
795
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
809
|
-
genesisConfigId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
810
796
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
811
797
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
812
798
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -889,7 +875,6 @@ export declare const Transaction: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
|
889
875
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
890
876
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
891
877
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
892
|
-
configId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
893
878
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
894
879
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
895
880
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -957,7 +942,6 @@ export declare const Transaction: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
|
957
942
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
958
943
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
959
944
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
960
|
-
genesisConfigId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
961
945
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
962
946
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
963
947
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -1003,7 +987,6 @@ export declare const Transaction: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
|
1003
987
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1004
988
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1005
989
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1006
|
-
configId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1007
990
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1008
991
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1009
992
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -1056,7 +1039,6 @@ export declare const Transaction: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
|
1056
1039
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1057
1040
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1058
1041
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1059
|
-
genesisConfigId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1060
1042
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1061
1043
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1062
1044
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -1260,7 +1242,6 @@ export declare const TransactionToRpc: z.ZodMiniUnion<readonly [z.ZodMiniObject<
|
|
|
1260
1242
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1261
1243
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1262
1244
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1263
|
-
configId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1264
1245
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1265
1246
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1266
1247
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -1313,7 +1294,6 @@ export declare const TransactionToRpc: z.ZodMiniUnion<readonly [z.ZodMiniObject<
|
|
|
1313
1294
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1314
1295
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1315
1296
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1316
|
-
genesisConfigId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1317
1297
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1318
1298
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1319
1299
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -1396,7 +1376,6 @@ export declare const TransactionToRpc: z.ZodMiniUnion<readonly [z.ZodMiniObject<
|
|
|
1396
1376
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1397
1377
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1398
1378
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1399
|
-
configId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1400
1379
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1401
1380
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1402
1381
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -1464,7 +1443,6 @@ export declare const TransactionToRpc: z.ZodMiniUnion<readonly [z.ZodMiniObject<
|
|
|
1464
1443
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1465
1444
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1466
1445
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1467
|
-
genesisConfigId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1468
1446
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1469
1447
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1470
1448
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -1510,7 +1488,6 @@ export declare const TransactionToRpc: z.ZodMiniUnion<readonly [z.ZodMiniObject<
|
|
|
1510
1488
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1511
1489
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1512
1490
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1513
|
-
configId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1514
1491
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1515
1492
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1516
1493
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -1563,7 +1540,6 @@ export declare const TransactionToRpc: z.ZodMiniUnion<readonly [z.ZodMiniObject<
|
|
|
1563
1540
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1564
1541
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1565
1542
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1566
|
-
genesisConfigId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1567
1543
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1568
1544
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1569
1545
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Transaction.d.ts","sourceRoot":"","sources":["../../../src/zod/tempo/Transaction.ts"],"names":[],"mappings":"AAOA,OAAO,KAAK,CAAC,MAAM,UAAU,CAAA;AAqE7B,8CAA8C;AAC9C,eAAO,MAAM,KAAK
|
|
1
|
+
{"version":3,"file":"Transaction.d.ts","sourceRoot":"","sources":["../../../src/zod/tempo/Transaction.ts"],"names":[],"mappings":"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"}
|
|
@@ -37,7 +37,6 @@ export declare const Rpc: z.ZodMiniObject<{
|
|
|
37
37
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
38
38
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
39
39
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
40
|
-
configId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
41
40
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
42
41
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
43
42
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -116,7 +115,6 @@ export declare const Rpc: z.ZodMiniObject<{
|
|
|
116
115
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
117
116
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
118
117
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
119
|
-
configId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
120
118
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
121
119
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
122
120
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -166,7 +164,6 @@ export declare const Rpc: z.ZodMiniObject<{
|
|
|
166
164
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
167
165
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
168
166
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
169
|
-
configId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
170
167
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
171
168
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
172
169
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -238,7 +235,6 @@ export declare const Domain: z.ZodMiniObject<{
|
|
|
238
235
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
239
236
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
240
237
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
241
|
-
genesisConfigId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
242
238
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
243
239
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
244
240
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -328,7 +324,6 @@ export declare const Domain: z.ZodMiniObject<{
|
|
|
328
324
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
329
325
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
330
326
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
331
|
-
genesisConfigId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
332
327
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
333
328
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
334
329
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -393,7 +388,6 @@ export declare const Domain: z.ZodMiniObject<{
|
|
|
393
388
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
394
389
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
395
390
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
396
|
-
genesisConfigId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
397
391
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
398
392
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
399
393
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -465,7 +459,6 @@ export declare const DomainToRpc: z.ZodMiniObject<{
|
|
|
465
459
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
466
460
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
467
461
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
468
|
-
genesisConfigId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
469
462
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
470
463
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
471
464
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -555,7 +548,6 @@ export declare const DomainToRpc: z.ZodMiniObject<{
|
|
|
555
548
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
556
549
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
557
550
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
558
|
-
genesisConfigId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
559
551
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
560
552
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
561
553
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -620,7 +612,6 @@ export declare const DomainToRpc: z.ZodMiniObject<{
|
|
|
620
612
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
621
613
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
622
614
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
623
|
-
genesisConfigId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
624
615
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
625
616
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
626
617
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -678,7 +669,6 @@ export declare const TransactionRequest: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
678
669
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
679
670
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
680
671
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
681
|
-
configId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
682
672
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
683
673
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
684
674
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -757,7 +747,6 @@ export declare const TransactionRequest: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
757
747
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
758
748
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
759
749
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
760
|
-
configId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
761
750
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
762
751
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
763
752
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -807,7 +796,6 @@ export declare const TransactionRequest: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
807
796
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
808
797
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
809
798
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
810
|
-
configId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
811
799
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
812
800
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
813
801
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -877,7 +865,6 @@ export declare const TransactionRequest: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
877
865
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
878
866
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
879
867
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
880
|
-
genesisConfigId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
881
868
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
882
869
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
883
870
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -967,7 +954,6 @@ export declare const TransactionRequest: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
967
954
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
968
955
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
969
956
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
970
|
-
genesisConfigId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
971
957
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
972
958
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
973
959
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -1032,7 +1018,6 @@ export declare const TransactionRequest: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
1032
1018
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1033
1019
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1034
1020
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1035
|
-
genesisConfigId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1036
1021
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1037
1022
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1038
1023
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -1090,7 +1075,6 @@ export declare const TransactionRequestToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
1090
1075
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1091
1076
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1092
1077
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1093
|
-
configId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1094
1078
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1095
1079
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1096
1080
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -1169,7 +1153,6 @@ export declare const TransactionRequestToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
1169
1153
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1170
1154
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1171
1155
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1172
|
-
configId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1173
1156
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1174
1157
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1175
1158
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -1219,7 +1202,6 @@ export declare const TransactionRequestToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
1219
1202
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1220
1203
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1221
1204
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1222
|
-
configId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1223
1205
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1224
1206
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1225
1207
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -1289,7 +1271,6 @@ export declare const TransactionRequestToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
1289
1271
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1290
1272
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1291
1273
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1292
|
-
genesisConfigId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1293
1274
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1294
1275
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1295
1276
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -1379,7 +1360,6 @@ export declare const TransactionRequestToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
1379
1360
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1380
1361
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1381
1362
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1382
|
-
genesisConfigId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1383
1363
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1384
1364
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1385
1365
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -1444,7 +1424,6 @@ export declare const TransactionRequestToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
1444
1424
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1445
1425
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1446
1426
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1447
|
-
genesisConfigId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1448
1427
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1449
1428
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1450
1429
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TransactionRequest.d.ts","sourceRoot":"","sources":["../../../src/zod/tempo/TransactionRequest.ts"],"names":[],"mappings":"AAYA,OAAO,KAAK,CAAC,MAAM,UAAU,CAAA;AA+C7B,4CAA4C;AAC5C,eAAO,MAAM,GAAG
|
|
1
|
+
{"version":3,"file":"TransactionRequest.d.ts","sourceRoot":"","sources":["../../../src/zod/tempo/TransactionRequest.ts"],"names":[],"mappings":"AAYA,OAAO,KAAK,CAAC,MAAM,UAAU,CAAA;AA+C7B,4CAA4C;AAC5C,eAAO,MAAM,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAiCd,CAAA;AAgBF,gDAAgD;AAChD,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAiCjB,CAAA;AAEF,+FAA+F;AAC/F,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAiCtB,CAAA;AAEF,kFAAkF;AAClF,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAG7B,CAAA;AAEF,sFAAsF;AACtF,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAGlC,CAAA"}
|
|
@@ -51,7 +51,6 @@ export declare const TxEnvelopeTempo: z.ZodMiniObject<{
|
|
|
51
51
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
52
52
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
53
53
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
54
|
-
genesisConfigId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
55
54
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
56
55
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
57
56
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -113,7 +112,6 @@ export declare const TxEnvelopeTempo: z.ZodMiniObject<{
|
|
|
113
112
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
114
113
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
115
114
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
116
|
-
genesisConfigId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
117
115
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
118
116
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
119
117
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -197,7 +195,6 @@ export declare const TxEnvelopeTempo: z.ZodMiniObject<{
|
|
|
197
195
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
198
196
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
199
197
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
200
|
-
genesisConfigId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
201
198
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
202
199
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
203
200
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -263,7 +260,6 @@ export declare const Signed: z.ZodMiniObject<{
|
|
|
263
260
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
264
261
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
265
262
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
266
|
-
genesisConfigId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
267
263
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
268
264
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
269
265
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -325,7 +321,6 @@ export declare const Signed: z.ZodMiniObject<{
|
|
|
325
321
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
326
322
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
327
323
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
328
|
-
genesisConfigId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
329
324
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
330
325
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
331
326
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -409,7 +404,6 @@ export declare const Signed: z.ZodMiniObject<{
|
|
|
409
404
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
410
405
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
411
406
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
412
|
-
genesisConfigId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
413
407
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
414
408
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
415
409
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -475,7 +469,6 @@ export declare const serialized: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${st
|
|
|
475
469
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
476
470
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
477
471
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
478
|
-
genesisConfigId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
479
472
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
480
473
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
481
474
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -537,7 +530,6 @@ export declare const serialized: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${st
|
|
|
537
530
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
538
531
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
539
532
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
540
|
-
genesisConfigId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
541
533
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
542
534
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
543
535
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -621,7 +613,6 @@ export declare const serialized: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${st
|
|
|
621
613
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
622
614
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
623
615
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
624
|
-
genesisConfigId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
625
616
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
626
617
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
627
618
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TxEnvelopeTempo.d.ts","sourceRoot":"","sources":["../../../src/zod/tempo/TxEnvelopeTempo.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,CAAC,MAAM,UAAU,CAAA;AAY7B,8CAA8C;AAC9C,eAAO,MAAM,IAAI,2BAAqB,CAAA;AAEtC,qCAAqC;AACrC,eAAO,MAAM,IAAI;;;;iBAIf,CAAA;AAqBF,yCAAyC;AACzC,eAAO,MAAM,eAAe
|
|
1
|
+
{"version":3,"file":"TxEnvelopeTempo.d.ts","sourceRoot":"","sources":["../../../src/zod/tempo/TxEnvelopeTempo.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,CAAC,MAAM,UAAU,CAAA;AAY7B,8CAA8C;AAC9C,eAAO,MAAM,IAAI,2BAAqB,CAAA;AAEtC,qCAAqC;AACrC,eAAO,MAAM,IAAI;;;;iBAIf,CAAA;AAqBF,yCAAyC;AACzC,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAG1B,CAAA;AAEF,gDAAgD;AAChD,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAGjB,CAAA;AAEF,yFAAyF;AACzF,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBASrB,CAAA"}
|
|
@@ -61,7 +61,6 @@ export declare const Signed: z.ZodMiniObject<{
|
|
|
61
61
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
62
62
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
63
63
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
64
|
-
genesisConfigId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
65
64
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
66
65
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
67
66
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -123,7 +122,6 @@ export declare const ZoneRpcAuthentication: z.ZodMiniUnion<readonly [z.ZodMiniOb
|
|
|
123
122
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
124
123
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
125
124
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
126
|
-
genesisConfigId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
127
125
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
128
126
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
129
127
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -192,7 +190,6 @@ export declare const serialized: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${st
|
|
|
192
190
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
193
191
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
194
192
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
195
|
-
genesisConfigId: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
196
193
|
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
197
194
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
198
195
|
threshold: z.ZodMiniNumber<number>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ZoneRpcAuthentication.d.ts","sourceRoot":"","sources":["../../../src/zod/tempo/ZoneRpcAuthentication.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,CAAC,MAAM,UAAU,CAAA;AAG7B,8CAA8C;AAC9C,eAAO,MAAM,OAAO,qBAAe,CAAA;AAEnC,iEAAiE;AACjE,eAAO,MAAM,MAAM,yCAAwD,CAAA;AAE3E,mEAAmE;AACnE,eAAO,MAAM,UAAU,yCAAY,CAAA;AAEnC,qDAAqD;AACrD,eAAO,MAAM,QAAQ;;;;;;;iBAOnB,CAAA;AAEF,mDAAmD;AACnD,eAAO,MAAM,MAAM
|
|
1
|
+
{"version":3,"file":"ZoneRpcAuthentication.d.ts","sourceRoot":"","sources":["../../../src/zod/tempo/ZoneRpcAuthentication.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,CAAC,MAAM,UAAU,CAAA;AAG7B,8CAA8C;AAC9C,eAAO,MAAM,OAAO,qBAAe,CAAA;AAEnC,iEAAiE;AACjE,eAAO,MAAM,MAAM,yCAAwD,CAAA;AAE3E,mEAAmE;AACnE,eAAO,MAAM,UAAU,yCAAY,CAAA;AAEnC,qDAAqD;AACrD,eAAO,MAAM,QAAQ;;;;;;;iBAOnB,CAAA;AAEF,mDAAmD;AACnD,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAOjB,CAAA;AAEF,4CAA4C;AAC5C,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mBAA8B,CAAA;AAEhE,qFAAqF;AACrF,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAMrB,CAAA"}
|
package/package.json
CHANGED
|
@@ -445,6 +445,22 @@ export type Eth = RpcSchema.From<
|
|
|
445
445
|
}
|
|
446
446
|
ReturnType: AccountProof.Rpc
|
|
447
447
|
}
|
|
448
|
+
/**
|
|
449
|
+
* Returns the raw, serialized transaction specified by hash
|
|
450
|
+
*
|
|
451
|
+
* @example
|
|
452
|
+
* ```
|
|
453
|
+
* request({ method: 'eth_getRawTransactionByHash', params: ['0x...'] })
|
|
454
|
+
* // '0x...'
|
|
455
|
+
* ```
|
|
456
|
+
*/
|
|
457
|
+
| {
|
|
458
|
+
Request: {
|
|
459
|
+
method: 'eth_getRawTransactionByHash'
|
|
460
|
+
params: [hash: Hex.Hex]
|
|
461
|
+
}
|
|
462
|
+
ReturnType: Hex.Hex | null
|
|
463
|
+
}
|
|
448
464
|
/**
|
|
449
465
|
* Returns the value from a storage position at an address
|
|
450
466
|
*
|