@lodestar/types 1.35.0-dev.f80d2d52da → 1.35.0-dev.fd1dac853d

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.
Files changed (106) hide show
  1. package/lib/altair/index.d.ts.map +1 -0
  2. package/lib/altair/index.js.map +1 -1
  3. package/lib/altair/sszTypes.d.ts +1 -1
  4. package/lib/altair/sszTypes.d.ts.map +1 -0
  5. package/lib/altair/types.d.ts.map +1 -0
  6. package/lib/bellatrix/index.d.ts.map +1 -0
  7. package/lib/bellatrix/index.js.map +1 -1
  8. package/lib/bellatrix/sszTypes.d.ts +15 -15
  9. package/lib/bellatrix/sszTypes.d.ts.map +1 -0
  10. package/lib/bellatrix/types.d.ts.map +1 -0
  11. package/lib/capella/index.d.ts.map +1 -0
  12. package/lib/capella/index.js.map +1 -1
  13. package/lib/capella/sszTypes.d.ts +41 -41
  14. package/lib/capella/sszTypes.d.ts.map +1 -0
  15. package/lib/capella/types.d.ts.map +1 -0
  16. package/lib/deneb/index.d.ts.map +1 -0
  17. package/lib/deneb/index.js.map +1 -1
  18. package/lib/deneb/sszTypes.d.ts +44 -44
  19. package/lib/deneb/sszTypes.d.ts.map +1 -0
  20. package/lib/deneb/types.d.ts.map +1 -0
  21. package/lib/electra/index.d.ts.map +1 -0
  22. package/lib/electra/index.js.map +1 -1
  23. package/lib/electra/sszTypes.d.ts +67 -67
  24. package/lib/electra/sszTypes.d.ts.map +1 -0
  25. package/lib/electra/types.d.ts.map +1 -0
  26. package/lib/fulu/index.d.ts.map +1 -0
  27. package/lib/fulu/index.js.map +1 -1
  28. package/lib/fulu/sszTypes.d.ts +22 -22
  29. package/lib/fulu/sszTypes.d.ts.map +1 -0
  30. package/lib/fulu/sszTypes.js.map +1 -1
  31. package/lib/fulu/types.d.ts.map +1 -0
  32. package/lib/gloas/index.d.ts.map +1 -0
  33. package/lib/gloas/index.js.map +1 -1
  34. package/lib/gloas/sszTypes.d.ts +535 -234
  35. package/lib/gloas/sszTypes.d.ts.map +1 -0
  36. package/lib/gloas/sszTypes.js +162 -3
  37. package/lib/gloas/sszTypes.js.map +1 -1
  38. package/lib/gloas/types.d.ts +13 -0
  39. package/lib/gloas/types.d.ts.map +1 -0
  40. package/lib/index.d.ts +4 -3
  41. package/lib/index.d.ts.map +1 -0
  42. package/lib/index.js +5 -4
  43. package/lib/index.js.map +1 -1
  44. package/lib/phase0/index.d.ts +1 -0
  45. package/lib/phase0/index.d.ts.map +1 -0
  46. package/lib/phase0/index.js +1 -0
  47. package/lib/phase0/index.js.map +1 -1
  48. package/lib/phase0/sszTypes.d.ts.map +1 -0
  49. package/lib/phase0/types.d.ts.map +1 -0
  50. package/lib/phase0/validator.d.ts.map +1 -0
  51. package/lib/primitive/index.d.ts.map +1 -0
  52. package/lib/primitive/sszTypes.d.ts.map +1 -0
  53. package/lib/primitive/types.d.ts.map +1 -0
  54. package/lib/sszTypes.d.ts +1668 -1450
  55. package/lib/sszTypes.d.ts.map +1 -0
  56. package/lib/types.d.ts +9 -6
  57. package/lib/types.d.ts.map +1 -0
  58. package/lib/types.js +2 -2
  59. package/lib/types.js.map +1 -1
  60. package/lib/utils/container.d.ts.map +1 -0
  61. package/lib/utils/container.js.map +1 -1
  62. package/lib/utils/executionAddress.d.ts.map +1 -0
  63. package/lib/utils/executionAddress.js +1 -1
  64. package/lib/utils/executionAddress.js.map +1 -1
  65. package/lib/utils/stringType.d.ts.map +1 -0
  66. package/lib/utils/stringType.js +5 -8
  67. package/lib/utils/stringType.js.map +1 -1
  68. package/lib/utils/typeguards.d.ts.map +1 -0
  69. package/lib/utils/validatorStatus.d.ts.map +1 -0
  70. package/package.json +17 -8
  71. package/src/altair/index.ts +5 -0
  72. package/src/altair/sszTypes.ts +243 -0
  73. package/src/altair/types.ts +24 -0
  74. package/src/bellatrix/index.ts +5 -0
  75. package/src/bellatrix/sszTypes.ts +238 -0
  76. package/src/bellatrix/types.ts +24 -0
  77. package/src/capella/index.ts +5 -0
  78. package/src/capella/sszTypes.ts +281 -0
  79. package/src/capella/types.ts +33 -0
  80. package/src/deneb/index.ts +5 -0
  81. package/src/deneb/sszTypes.ts +329 -0
  82. package/src/deneb/types.ts +55 -0
  83. package/src/electra/index.ts +5 -0
  84. package/src/electra/sszTypes.ts +451 -0
  85. package/src/electra/types.ts +54 -0
  86. package/src/fulu/index.ts +5 -0
  87. package/src/fulu/sszTypes.ts +138 -0
  88. package/src/fulu/types.ts +31 -0
  89. package/src/gloas/index.ts +5 -0
  90. package/src/gloas/sszTypes.ts +234 -0
  91. package/src/gloas/types.ts +20 -0
  92. package/src/index.ts +15 -0
  93. package/src/phase0/index.ts +6 -0
  94. package/src/phase0/sszTypes.ts +514 -0
  95. package/src/phase0/types.ts +46 -0
  96. package/src/phase0/validator.ts +78 -0
  97. package/src/primitive/index.ts +3 -0
  98. package/src/primitive/sszTypes.ts +70 -0
  99. package/src/primitive/types.ts +53 -0
  100. package/src/sszTypes.ts +86 -0
  101. package/src/types.ts +374 -0
  102. package/src/utils/container.ts +38 -0
  103. package/src/utils/executionAddress.ts +48 -0
  104. package/src/utils/stringType.ts +58 -0
  105. package/src/utils/typeguards.ts +98 -0
  106. package/src/utils/validatorStatus.ts +52 -0
@@ -25,12 +25,12 @@ export declare const ExecutionPayload: ContainerType<{
25
25
  withdrawals: ListCompositeType<ContainerType<{
26
26
  index: import("@chainsafe/ssz").UintNumberType;
27
27
  validatorIndex: import("@chainsafe/ssz").UintNumberType;
28
- address: import("../utils/executionAddress.js").ExecutionAddressType;
28
+ address: import("../index.ts").ExecutionAddressType;
29
29
  amount: import("@chainsafe/ssz").UintBigintType;
30
30
  }>>;
31
31
  transactions: ListCompositeType<import("@chainsafe/ssz").ByteListType>;
32
32
  parentHash: ByteVectorType;
33
- feeRecipient: import("../utils/executionAddress.js").ExecutionAddressType;
33
+ feeRecipient: import("../index.ts").ExecutionAddressType;
34
34
  stateRoot: ByteVectorType;
35
35
  receiptsRoot: ByteVectorType;
36
36
  logsBloom: ByteVectorType;
@@ -49,7 +49,7 @@ export declare const ExecutionPayloadHeader: ContainerType<{
49
49
  withdrawalsRoot: ByteVectorType;
50
50
  transactionsRoot: ByteVectorType;
51
51
  parentHash: ByteVectorType;
52
- feeRecipient: import("../utils/executionAddress.js").ExecutionAddressType;
52
+ feeRecipient: import("../index.ts").ExecutionAddressType;
53
53
  stateRoot: ByteVectorType;
54
54
  receiptsRoot: ByteVectorType;
55
55
  logsBloom: ByteVectorType;
@@ -69,12 +69,12 @@ export declare const BeaconBlockBody: ContainerType<{
69
69
  withdrawals: ListCompositeType<ContainerType<{
70
70
  index: import("@chainsafe/ssz").UintNumberType;
71
71
  validatorIndex: import("@chainsafe/ssz").UintNumberType;
72
- address: import("../utils/executionAddress.js").ExecutionAddressType;
72
+ address: import("../index.ts").ExecutionAddressType;
73
73
  amount: import("@chainsafe/ssz").UintBigintType;
74
74
  }>>;
75
75
  transactions: ListCompositeType<import("@chainsafe/ssz").ByteListType>;
76
76
  parentHash: ByteVectorType;
77
- feeRecipient: import("../utils/executionAddress.js").ExecutionAddressType;
77
+ feeRecipient: import("../index.ts").ExecutionAddressType;
78
78
  stateRoot: ByteVectorType;
79
79
  receiptsRoot: ByteVectorType;
80
80
  logsBloom: ByteVectorType;
@@ -91,7 +91,7 @@ export declare const BeaconBlockBody: ContainerType<{
91
91
  message: ContainerType<{
92
92
  validatorIndex: import("@chainsafe/ssz").UintNumberType;
93
93
  fromBlsPubkey: ByteVectorType;
94
- toExecutionAddress: import("../utils/executionAddress.js").ExecutionAddressType;
94
+ toExecutionAddress: import("../index.ts").ExecutionAddressType;
95
95
  }>;
96
96
  signature: ByteVectorType;
97
97
  }>>;
@@ -207,12 +207,12 @@ export declare const BeaconBlock: ContainerType<{
207
207
  withdrawals: ListCompositeType<ContainerType<{
208
208
  index: import("@chainsafe/ssz").UintNumberType;
209
209
  validatorIndex: import("@chainsafe/ssz").UintNumberType;
210
- address: import("../utils/executionAddress.js").ExecutionAddressType;
210
+ address: import("../index.ts").ExecutionAddressType;
211
211
  amount: import("@chainsafe/ssz").UintBigintType;
212
212
  }>>;
213
213
  transactions: ListCompositeType<import("@chainsafe/ssz").ByteListType>;
214
214
  parentHash: ByteVectorType;
215
- feeRecipient: import("../utils/executionAddress.js").ExecutionAddressType;
215
+ feeRecipient: import("../index.ts").ExecutionAddressType;
216
216
  stateRoot: ByteVectorType;
217
217
  receiptsRoot: ByteVectorType;
218
218
  logsBloom: ByteVectorType;
@@ -229,7 +229,7 @@ export declare const BeaconBlock: ContainerType<{
229
229
  message: ContainerType<{
230
230
  validatorIndex: import("@chainsafe/ssz").UintNumberType;
231
231
  fromBlsPubkey: ByteVectorType;
232
- toExecutionAddress: import("../utils/executionAddress.js").ExecutionAddressType;
232
+ toExecutionAddress: import("../index.ts").ExecutionAddressType;
233
233
  }>;
234
234
  signature: ByteVectorType;
235
235
  }>>;
@@ -351,12 +351,12 @@ export declare const SignedBeaconBlock: ContainerType<{
351
351
  withdrawals: ListCompositeType<ContainerType<{
352
352
  index: import("@chainsafe/ssz").UintNumberType;
353
353
  validatorIndex: import("@chainsafe/ssz").UintNumberType;
354
- address: import("../utils/executionAddress.js").ExecutionAddressType;
354
+ address: import("../index.ts").ExecutionAddressType;
355
355
  amount: import("@chainsafe/ssz").UintBigintType;
356
356
  }>>;
357
357
  transactions: ListCompositeType<import("@chainsafe/ssz").ByteListType>;
358
358
  parentHash: ByteVectorType;
359
- feeRecipient: import("../utils/executionAddress.js").ExecutionAddressType;
359
+ feeRecipient: import("../index.ts").ExecutionAddressType;
360
360
  stateRoot: ByteVectorType;
361
361
  receiptsRoot: ByteVectorType;
362
362
  logsBloom: ByteVectorType;
@@ -373,7 +373,7 @@ export declare const SignedBeaconBlock: ContainerType<{
373
373
  message: ContainerType<{
374
374
  validatorIndex: import("@chainsafe/ssz").UintNumberType;
375
375
  fromBlsPubkey: ByteVectorType;
376
- toExecutionAddress: import("../utils/executionAddress.js").ExecutionAddressType;
376
+ toExecutionAddress: import("../index.ts").ExecutionAddressType;
377
377
  }>;
378
378
  signature: ByteVectorType;
379
379
  }>>;
@@ -535,7 +535,7 @@ export declare const BlindedBeaconBlockBody: ContainerType<{
535
535
  withdrawalsRoot: ByteVectorType;
536
536
  transactionsRoot: ByteVectorType;
537
537
  parentHash: ByteVectorType;
538
- feeRecipient: import("../utils/executionAddress.js").ExecutionAddressType;
538
+ feeRecipient: import("../index.ts").ExecutionAddressType;
539
539
  stateRoot: ByteVectorType;
540
540
  receiptsRoot: ByteVectorType;
541
541
  logsBloom: ByteVectorType;
@@ -552,7 +552,7 @@ export declare const BlindedBeaconBlockBody: ContainerType<{
552
552
  message: ContainerType<{
553
553
  validatorIndex: import("@chainsafe/ssz").UintNumberType;
554
554
  fromBlsPubkey: ByteVectorType;
555
- toExecutionAddress: import("../utils/executionAddress.js").ExecutionAddressType;
555
+ toExecutionAddress: import("../index.ts").ExecutionAddressType;
556
556
  }>;
557
557
  signature: ByteVectorType;
558
558
  }>>;
@@ -668,7 +668,7 @@ export declare const BlindedBeaconBlock: ContainerType<{
668
668
  withdrawalsRoot: ByteVectorType;
669
669
  transactionsRoot: ByteVectorType;
670
670
  parentHash: ByteVectorType;
671
- feeRecipient: import("../utils/executionAddress.js").ExecutionAddressType;
671
+ feeRecipient: import("../index.ts").ExecutionAddressType;
672
672
  stateRoot: ByteVectorType;
673
673
  receiptsRoot: ByteVectorType;
674
674
  logsBloom: ByteVectorType;
@@ -685,7 +685,7 @@ export declare const BlindedBeaconBlock: ContainerType<{
685
685
  message: ContainerType<{
686
686
  validatorIndex: import("@chainsafe/ssz").UintNumberType;
687
687
  fromBlsPubkey: ByteVectorType;
688
- toExecutionAddress: import("../utils/executionAddress.js").ExecutionAddressType;
688
+ toExecutionAddress: import("../index.ts").ExecutionAddressType;
689
689
  }>;
690
690
  signature: ByteVectorType;
691
691
  }>>;
@@ -807,7 +807,7 @@ export declare const SignedBlindedBeaconBlock: ContainerType<{
807
807
  withdrawalsRoot: ByteVectorType;
808
808
  transactionsRoot: ByteVectorType;
809
809
  parentHash: ByteVectorType;
810
- feeRecipient: import("../utils/executionAddress.js").ExecutionAddressType;
810
+ feeRecipient: import("../index.ts").ExecutionAddressType;
811
811
  stateRoot: ByteVectorType;
812
812
  receiptsRoot: ByteVectorType;
813
813
  logsBloom: ByteVectorType;
@@ -824,7 +824,7 @@ export declare const SignedBlindedBeaconBlock: ContainerType<{
824
824
  message: ContainerType<{
825
825
  validatorIndex: import("@chainsafe/ssz").UintNumberType;
826
826
  fromBlsPubkey: ByteVectorType;
827
- toExecutionAddress: import("../utils/executionAddress.js").ExecutionAddressType;
827
+ toExecutionAddress: import("../index.ts").ExecutionAddressType;
828
828
  }>;
829
829
  signature: ByteVectorType;
830
830
  }>>;
@@ -946,7 +946,7 @@ export declare const BuilderBid: ContainerType<{
946
946
  withdrawalsRoot: ByteVectorType;
947
947
  transactionsRoot: ByteVectorType;
948
948
  parentHash: ByteVectorType;
949
- feeRecipient: import("../utils/executionAddress.js").ExecutionAddressType;
949
+ feeRecipient: import("../index.ts").ExecutionAddressType;
950
950
  stateRoot: ByteVectorType;
951
951
  receiptsRoot: ByteVectorType;
952
952
  logsBloom: ByteVectorType;
@@ -971,7 +971,7 @@ export declare const SignedBuilderBid: ContainerType<{
971
971
  withdrawalsRoot: ByteVectorType;
972
972
  transactionsRoot: ByteVectorType;
973
973
  parentHash: ByteVectorType;
974
- feeRecipient: import("../utils/executionAddress.js").ExecutionAddressType;
974
+ feeRecipient: import("../index.ts").ExecutionAddressType;
975
975
  stateRoot: ByteVectorType;
976
976
  receiptsRoot: ByteVectorType;
977
977
  logsBloom: ByteVectorType;
@@ -997,12 +997,12 @@ export declare const ExecutionPayloadAndBlobsBundle: ContainerType<{
997
997
  withdrawals: ListCompositeType<ContainerType<{
998
998
  index: import("@chainsafe/ssz").UintNumberType;
999
999
  validatorIndex: import("@chainsafe/ssz").UintNumberType;
1000
- address: import("../utils/executionAddress.js").ExecutionAddressType;
1000
+ address: import("../index.ts").ExecutionAddressType;
1001
1001
  amount: import("@chainsafe/ssz").UintBigintType;
1002
1002
  }>>;
1003
1003
  transactions: ListCompositeType<import("@chainsafe/ssz").ByteListType>;
1004
1004
  parentHash: ByteVectorType;
1005
- feeRecipient: import("../utils/executionAddress.js").ExecutionAddressType;
1005
+ feeRecipient: import("../index.ts").ExecutionAddressType;
1006
1006
  stateRoot: ByteVectorType;
1007
1007
  receiptsRoot: ByteVectorType;
1008
1008
  logsBloom: ByteVectorType;
@@ -1051,7 +1051,7 @@ export declare const BeaconState: ContainerType<{
1051
1051
  blockHash: ByteVectorType;
1052
1052
  }>>;
1053
1053
  eth1DepositIndex: import("@chainsafe/ssz").UintNumberType;
1054
- validators: ListCompositeType<import("../phase0/validator.js").ValidatorNodeStructType>;
1054
+ validators: ListCompositeType<import("../phase0/validator.ts").ValidatorNodeStructType>;
1055
1055
  balances: import("@chainsafe/ssz").ListUintNum64Type;
1056
1056
  randaoMixes: VectorCompositeType<ByteVectorType>;
1057
1057
  slashings: import("@chainsafe/ssz").VectorBasicType<import("@chainsafe/ssz").UintNumberType>;
@@ -1085,7 +1085,7 @@ export declare const BeaconState: ContainerType<{
1085
1085
  withdrawalsRoot: ByteVectorType;
1086
1086
  transactionsRoot: ByteVectorType;
1087
1087
  parentHash: ByteVectorType;
1088
- feeRecipient: import("../utils/executionAddress.js").ExecutionAddressType;
1088
+ feeRecipient: import("../index.ts").ExecutionAddressType;
1089
1089
  stateRoot: ByteVectorType;
1090
1090
  receiptsRoot: ByteVectorType;
1091
1091
  logsBloom: ByteVectorType;
@@ -1119,7 +1119,7 @@ export declare const LightClientHeader: ContainerType<{
1119
1119
  withdrawalsRoot: ByteVectorType;
1120
1120
  transactionsRoot: ByteVectorType;
1121
1121
  parentHash: ByteVectorType;
1122
- feeRecipient: import("../utils/executionAddress.js").ExecutionAddressType;
1122
+ feeRecipient: import("../index.ts").ExecutionAddressType;
1123
1123
  stateRoot: ByteVectorType;
1124
1124
  receiptsRoot: ByteVectorType;
1125
1125
  logsBloom: ByteVectorType;
@@ -1149,7 +1149,7 @@ export declare const LightClientBootstrap: ContainerType<{
1149
1149
  withdrawalsRoot: ByteVectorType;
1150
1150
  transactionsRoot: ByteVectorType;
1151
1151
  parentHash: ByteVectorType;
1152
- feeRecipient: import("../utils/executionAddress.js").ExecutionAddressType;
1152
+ feeRecipient: import("../index.ts").ExecutionAddressType;
1153
1153
  stateRoot: ByteVectorType;
1154
1154
  receiptsRoot: ByteVectorType;
1155
1155
  logsBloom: ByteVectorType;
@@ -1185,7 +1185,7 @@ export declare const LightClientUpdate: ContainerType<{
1185
1185
  withdrawalsRoot: ByteVectorType;
1186
1186
  transactionsRoot: ByteVectorType;
1187
1187
  parentHash: ByteVectorType;
1188
- feeRecipient: import("../utils/executionAddress.js").ExecutionAddressType;
1188
+ feeRecipient: import("../index.ts").ExecutionAddressType;
1189
1189
  stateRoot: ByteVectorType;
1190
1190
  receiptsRoot: ByteVectorType;
1191
1191
  logsBloom: ByteVectorType;
@@ -1219,7 +1219,7 @@ export declare const LightClientUpdate: ContainerType<{
1219
1219
  withdrawalsRoot: ByteVectorType;
1220
1220
  transactionsRoot: ByteVectorType;
1221
1221
  parentHash: ByteVectorType;
1222
- feeRecipient: import("../utils/executionAddress.js").ExecutionAddressType;
1222
+ feeRecipient: import("../index.ts").ExecutionAddressType;
1223
1223
  stateRoot: ByteVectorType;
1224
1224
  receiptsRoot: ByteVectorType;
1225
1225
  logsBloom: ByteVectorType;
@@ -1256,7 +1256,7 @@ export declare const LightClientFinalityUpdate: ContainerType<{
1256
1256
  withdrawalsRoot: ByteVectorType;
1257
1257
  transactionsRoot: ByteVectorType;
1258
1258
  parentHash: ByteVectorType;
1259
- feeRecipient: import("../utils/executionAddress.js").ExecutionAddressType;
1259
+ feeRecipient: import("../index.ts").ExecutionAddressType;
1260
1260
  stateRoot: ByteVectorType;
1261
1261
  receiptsRoot: ByteVectorType;
1262
1262
  logsBloom: ByteVectorType;
@@ -1285,7 +1285,7 @@ export declare const LightClientFinalityUpdate: ContainerType<{
1285
1285
  withdrawalsRoot: ByteVectorType;
1286
1286
  transactionsRoot: ByteVectorType;
1287
1287
  parentHash: ByteVectorType;
1288
- feeRecipient: import("../utils/executionAddress.js").ExecutionAddressType;
1288
+ feeRecipient: import("../index.ts").ExecutionAddressType;
1289
1289
  stateRoot: ByteVectorType;
1290
1290
  receiptsRoot: ByteVectorType;
1291
1291
  logsBloom: ByteVectorType;
@@ -1322,7 +1322,7 @@ export declare const LightClientOptimisticUpdate: ContainerType<{
1322
1322
  withdrawalsRoot: ByteVectorType;
1323
1323
  transactionsRoot: ByteVectorType;
1324
1324
  parentHash: ByteVectorType;
1325
- feeRecipient: import("../utils/executionAddress.js").ExecutionAddressType;
1325
+ feeRecipient: import("../index.ts").ExecutionAddressType;
1326
1326
  stateRoot: ByteVectorType;
1327
1327
  receiptsRoot: ByteVectorType;
1328
1328
  logsBloom: ByteVectorType;
@@ -1359,7 +1359,7 @@ export declare const LightClientStore: ContainerType<{
1359
1359
  withdrawalsRoot: ByteVectorType;
1360
1360
  transactionsRoot: ByteVectorType;
1361
1361
  parentHash: ByteVectorType;
1362
- feeRecipient: import("../utils/executionAddress.js").ExecutionAddressType;
1362
+ feeRecipient: import("../index.ts").ExecutionAddressType;
1363
1363
  stateRoot: ByteVectorType;
1364
1364
  receiptsRoot: ByteVectorType;
1365
1365
  logsBloom: ByteVectorType;
@@ -1395,7 +1395,7 @@ export declare const LightClientStore: ContainerType<{
1395
1395
  withdrawalsRoot: ByteVectorType;
1396
1396
  transactionsRoot: ByteVectorType;
1397
1397
  parentHash: ByteVectorType;
1398
- feeRecipient: import("../utils/executionAddress.js").ExecutionAddressType;
1398
+ feeRecipient: import("../index.ts").ExecutionAddressType;
1399
1399
  stateRoot: ByteVectorType;
1400
1400
  receiptsRoot: ByteVectorType;
1401
1401
  logsBloom: ByteVectorType;
@@ -1429,7 +1429,7 @@ export declare const LightClientStore: ContainerType<{
1429
1429
  withdrawalsRoot: ByteVectorType;
1430
1430
  transactionsRoot: ByteVectorType;
1431
1431
  parentHash: ByteVectorType;
1432
- feeRecipient: import("../utils/executionAddress.js").ExecutionAddressType;
1432
+ feeRecipient: import("../index.ts").ExecutionAddressType;
1433
1433
  stateRoot: ByteVectorType;
1434
1434
  receiptsRoot: ByteVectorType;
1435
1435
  logsBloom: ByteVectorType;
@@ -1457,12 +1457,12 @@ export declare const PayloadAttributes: ContainerType<{
1457
1457
  withdrawals: ListCompositeType<ContainerType<{
1458
1458
  index: import("@chainsafe/ssz").UintNumberType;
1459
1459
  validatorIndex: import("@chainsafe/ssz").UintNumberType;
1460
- address: import("../utils/executionAddress.js").ExecutionAddressType;
1460
+ address: import("../index.ts").ExecutionAddressType;
1461
1461
  amount: import("@chainsafe/ssz").UintBigintType;
1462
1462
  }>>;
1463
1463
  timestamp: import("@chainsafe/ssz").UintNumberType;
1464
1464
  prevRandao: ByteVectorType;
1465
- suggestedFeeRecipient: import("../index.js").StringType<string>;
1465
+ suggestedFeeRecipient: import("../index.ts").StringType<string>;
1466
1466
  }>;
1467
1467
  export declare const SSEPayloadAttributes: ContainerType<{
1468
1468
  payloadAttributes: ContainerType<{
@@ -1470,12 +1470,12 @@ export declare const SSEPayloadAttributes: ContainerType<{
1470
1470
  withdrawals: ListCompositeType<ContainerType<{
1471
1471
  index: import("@chainsafe/ssz").UintNumberType;
1472
1472
  validatorIndex: import("@chainsafe/ssz").UintNumberType;
1473
- address: import("../utils/executionAddress.js").ExecutionAddressType;
1473
+ address: import("../index.ts").ExecutionAddressType;
1474
1474
  amount: import("@chainsafe/ssz").UintBigintType;
1475
1475
  }>>;
1476
1476
  timestamp: import("@chainsafe/ssz").UintNumberType;
1477
1477
  prevRandao: ByteVectorType;
1478
- suggestedFeeRecipient: import("../index.js").StringType<string>;
1478
+ suggestedFeeRecipient: import("../index.ts").StringType<string>;
1479
1479
  }>;
1480
1480
  proposerIndex: import("@chainsafe/ssz").UintNumberType;
1481
1481
  proposalSlot: import("@chainsafe/ssz").UintNumberType;
@@ -1492,12 +1492,12 @@ export declare const BlockContents: ContainerType<{
1492
1492
  withdrawals: ListCompositeType<ContainerType<{
1493
1493
  index: import("@chainsafe/ssz").UintNumberType;
1494
1494
  validatorIndex: import("@chainsafe/ssz").UintNumberType;
1495
- address: import("../utils/executionAddress.js").ExecutionAddressType;
1495
+ address: import("../index.ts").ExecutionAddressType;
1496
1496
  amount: import("@chainsafe/ssz").UintBigintType;
1497
1497
  }>>;
1498
1498
  transactions: ListCompositeType<import("@chainsafe/ssz").ByteListType>;
1499
1499
  parentHash: ByteVectorType;
1500
- feeRecipient: import("../utils/executionAddress.js").ExecutionAddressType;
1500
+ feeRecipient: import("../index.ts").ExecutionAddressType;
1501
1501
  stateRoot: ByteVectorType;
1502
1502
  receiptsRoot: ByteVectorType;
1503
1503
  logsBloom: ByteVectorType;
@@ -1514,7 +1514,7 @@ export declare const BlockContents: ContainerType<{
1514
1514
  message: ContainerType<{
1515
1515
  validatorIndex: import("@chainsafe/ssz").UintNumberType;
1516
1516
  fromBlsPubkey: ByteVectorType;
1517
- toExecutionAddress: import("../utils/executionAddress.js").ExecutionAddressType;
1517
+ toExecutionAddress: import("../index.ts").ExecutionAddressType;
1518
1518
  }>;
1519
1519
  signature: ByteVectorType;
1520
1520
  }>>;
@@ -1640,12 +1640,12 @@ export declare const SignedBlockContents: ContainerType<{
1640
1640
  withdrawals: ListCompositeType<ContainerType<{
1641
1641
  index: import("@chainsafe/ssz").UintNumberType;
1642
1642
  validatorIndex: import("@chainsafe/ssz").UintNumberType;
1643
- address: import("../utils/executionAddress.js").ExecutionAddressType;
1643
+ address: import("../index.ts").ExecutionAddressType;
1644
1644
  amount: import("@chainsafe/ssz").UintBigintType;
1645
1645
  }>>;
1646
1646
  transactions: ListCompositeType<import("@chainsafe/ssz").ByteListType>;
1647
1647
  parentHash: ByteVectorType;
1648
- feeRecipient: import("../utils/executionAddress.js").ExecutionAddressType;
1648
+ feeRecipient: import("../index.ts").ExecutionAddressType;
1649
1649
  stateRoot: ByteVectorType;
1650
1650
  receiptsRoot: ByteVectorType;
1651
1651
  logsBloom: ByteVectorType;
@@ -1662,7 +1662,7 @@ export declare const SignedBlockContents: ContainerType<{
1662
1662
  message: ContainerType<{
1663
1663
  validatorIndex: import("@chainsafe/ssz").UintNumberType;
1664
1664
  fromBlsPubkey: ByteVectorType;
1665
- toExecutionAddress: import("../utils/executionAddress.js").ExecutionAddressType;
1665
+ toExecutionAddress: import("../index.ts").ExecutionAddressType;
1666
1666
  }>;
1667
1667
  signature: ByteVectorType;
1668
1668
  }>>;
@@ -0,0 +1 @@
1
+ {"version":3,"file":"sszTypes.d.ts","sourceRoot":"","sources":["../../src/deneb/sszTypes.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/deneb/types.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/electra/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC;AAE3B,OAAO,KAAK,GAAG,MAAM,eAAe,CAAC;AACrC,OAAO,KAAK,EAAE,MAAM,YAAY,CAAC;AACjC,OAAO,EAAC,EAAE,EAAE,GAAG,EAAC,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/electra/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC;AAC3B,OAAO,KAAK,GAAG,MAAM,eAAe,CAAC;AACrC,OAAO,KAAK,EAAE,MAAM,YAAY,CAAC;AACjC,OAAO,EAAC,EAAE,EAAE,GAAG,EAAC,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/electra/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC;AAE3B,OAAO,KAAK,GAAG,MAAM,eAAe,CAAC;AACrC,OAAO,KAAK,EAAE,MAAM,YAAY,CAAC;AACjC,OAAO,EAAC,EAAE,EAAE,GAAG,EAAC,CAAC"}