@lodestar/types 1.35.0-dev.f80d2d52da → 1.35.0-dev.fcf8d024ea
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/lib/altair/index.d.ts.map +1 -0
- package/lib/altair/index.js.map +1 -1
- package/lib/altair/sszTypes.d.ts +1 -1
- package/lib/altair/sszTypes.d.ts.map +1 -0
- package/lib/altair/types.d.ts.map +1 -0
- package/lib/bellatrix/index.d.ts.map +1 -0
- package/lib/bellatrix/index.js.map +1 -1
- package/lib/bellatrix/sszTypes.d.ts +15 -15
- package/lib/bellatrix/sszTypes.d.ts.map +1 -0
- package/lib/bellatrix/types.d.ts.map +1 -0
- package/lib/capella/index.d.ts.map +1 -0
- package/lib/capella/index.js.map +1 -1
- package/lib/capella/sszTypes.d.ts +41 -41
- package/lib/capella/sszTypes.d.ts.map +1 -0
- package/lib/capella/types.d.ts.map +1 -0
- package/lib/deneb/index.d.ts.map +1 -0
- package/lib/deneb/index.js.map +1 -1
- package/lib/deneb/sszTypes.d.ts +44 -44
- package/lib/deneb/sszTypes.d.ts.map +1 -0
- package/lib/deneb/types.d.ts.map +1 -0
- package/lib/electra/index.d.ts.map +1 -0
- package/lib/electra/index.js.map +1 -1
- package/lib/electra/sszTypes.d.ts +67 -67
- package/lib/electra/sszTypes.d.ts.map +1 -0
- package/lib/electra/types.d.ts.map +1 -0
- package/lib/fulu/index.d.ts.map +1 -0
- package/lib/fulu/index.js.map +1 -1
- package/lib/fulu/sszTypes.d.ts +22 -22
- package/lib/fulu/sszTypes.d.ts.map +1 -0
- package/lib/fulu/sszTypes.js.map +1 -1
- package/lib/fulu/types.d.ts.map +1 -0
- package/lib/gloas/index.d.ts.map +1 -0
- package/lib/gloas/index.js.map +1 -1
- package/lib/gloas/sszTypes.d.ts +535 -234
- package/lib/gloas/sszTypes.d.ts.map +1 -0
- package/lib/gloas/sszTypes.js +162 -3
- package/lib/gloas/sszTypes.js.map +1 -1
- package/lib/gloas/types.d.ts +13 -0
- package/lib/gloas/types.d.ts.map +1 -0
- package/lib/index.d.ts +4 -3
- package/lib/index.d.ts.map +1 -0
- package/lib/index.js +5 -4
- package/lib/index.js.map +1 -1
- package/lib/phase0/index.d.ts +1 -0
- package/lib/phase0/index.d.ts.map +1 -0
- package/lib/phase0/index.js +1 -0
- package/lib/phase0/index.js.map +1 -1
- package/lib/phase0/sszTypes.d.ts.map +1 -0
- package/lib/phase0/types.d.ts.map +1 -0
- package/lib/phase0/validator.d.ts.map +1 -0
- package/lib/primitive/index.d.ts.map +1 -0
- package/lib/primitive/sszTypes.d.ts.map +1 -0
- package/lib/primitive/types.d.ts.map +1 -0
- package/lib/sszTypes.d.ts +1668 -1450
- package/lib/sszTypes.d.ts.map +1 -0
- package/lib/types.d.ts +9 -6
- package/lib/types.d.ts.map +1 -0
- package/lib/types.js +2 -2
- package/lib/types.js.map +1 -1
- package/lib/utils/container.d.ts.map +1 -0
- package/lib/utils/container.js.map +1 -1
- package/lib/utils/executionAddress.d.ts.map +1 -0
- package/lib/utils/executionAddress.js +1 -1
- package/lib/utils/executionAddress.js.map +1 -1
- package/lib/utils/stringType.d.ts.map +1 -0
- package/lib/utils/stringType.js +5 -8
- package/lib/utils/stringType.js.map +1 -1
- package/lib/utils/typeguards.d.ts.map +1 -0
- package/lib/utils/validatorStatus.d.ts.map +1 -0
- package/package.json +17 -8
- package/src/altair/index.ts +5 -0
- package/src/altair/sszTypes.ts +243 -0
- package/src/altair/types.ts +24 -0
- package/src/bellatrix/index.ts +5 -0
- package/src/bellatrix/sszTypes.ts +238 -0
- package/src/bellatrix/types.ts +24 -0
- package/src/capella/index.ts +5 -0
- package/src/capella/sszTypes.ts +281 -0
- package/src/capella/types.ts +33 -0
- package/src/deneb/index.ts +5 -0
- package/src/deneb/sszTypes.ts +329 -0
- package/src/deneb/types.ts +55 -0
- package/src/electra/index.ts +5 -0
- package/src/electra/sszTypes.ts +451 -0
- package/src/electra/types.ts +54 -0
- package/src/fulu/index.ts +5 -0
- package/src/fulu/sszTypes.ts +138 -0
- package/src/fulu/types.ts +31 -0
- package/src/gloas/index.ts +5 -0
- package/src/gloas/sszTypes.ts +234 -0
- package/src/gloas/types.ts +20 -0
- package/src/index.ts +15 -0
- package/src/phase0/index.ts +6 -0
- package/src/phase0/sszTypes.ts +514 -0
- package/src/phase0/types.ts +46 -0
- package/src/phase0/validator.ts +78 -0
- package/src/primitive/index.ts +3 -0
- package/src/primitive/sszTypes.ts +70 -0
- package/src/primitive/types.ts +53 -0
- package/src/sszTypes.ts +86 -0
- package/src/types.ts +374 -0
- package/src/utils/container.ts +38 -0
- package/src/utils/executionAddress.ts +48 -0
- package/src/utils/stringType.ts +58 -0
- package/src/utils/typeguards.ts +98 -0
- package/src/utils/validatorStatus.ts +52 -0
|
@@ -174,22 +174,22 @@ export declare const DepositRequests: ListCompositeType<ContainerType<{
|
|
|
174
174
|
index: import("@chainsafe/ssz").UintBigintType;
|
|
175
175
|
}>>;
|
|
176
176
|
export declare const WithdrawalRequest: ContainerType<{
|
|
177
|
-
sourceAddress: import("../
|
|
177
|
+
sourceAddress: import("../index.ts").ExecutionAddressType;
|
|
178
178
|
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
179
179
|
amount: import("@chainsafe/ssz").UintBigintType;
|
|
180
180
|
}>;
|
|
181
181
|
export declare const WithdrawalRequests: ListCompositeType<ContainerType<{
|
|
182
|
-
sourceAddress: import("../
|
|
182
|
+
sourceAddress: import("../index.ts").ExecutionAddressType;
|
|
183
183
|
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
184
184
|
amount: import("@chainsafe/ssz").UintBigintType;
|
|
185
185
|
}>>;
|
|
186
186
|
export declare const ConsolidationRequest: ContainerType<{
|
|
187
|
-
sourceAddress: import("../
|
|
187
|
+
sourceAddress: import("../index.ts").ExecutionAddressType;
|
|
188
188
|
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
189
189
|
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
190
190
|
}>;
|
|
191
191
|
export declare const ConsolidationRequests: ListCompositeType<ContainerType<{
|
|
192
|
-
sourceAddress: import("../
|
|
192
|
+
sourceAddress: import("../index.ts").ExecutionAddressType;
|
|
193
193
|
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
194
194
|
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
195
195
|
}>>;
|
|
@@ -202,12 +202,12 @@ export declare const ExecutionRequests: ContainerType<{
|
|
|
202
202
|
index: import("@chainsafe/ssz").UintBigintType;
|
|
203
203
|
}>>;
|
|
204
204
|
withdrawals: ListCompositeType<ContainerType<{
|
|
205
|
-
sourceAddress: import("../
|
|
205
|
+
sourceAddress: import("../index.ts").ExecutionAddressType;
|
|
206
206
|
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
207
207
|
amount: import("@chainsafe/ssz").UintBigintType;
|
|
208
208
|
}>>;
|
|
209
209
|
consolidations: ListCompositeType<ContainerType<{
|
|
210
|
-
sourceAddress: import("../
|
|
210
|
+
sourceAddress: import("../index.ts").ExecutionAddressType;
|
|
211
211
|
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
212
212
|
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
213
213
|
}>>;
|
|
@@ -218,7 +218,7 @@ export declare const ExecutionPayloadHeader: ContainerType<{
|
|
|
218
218
|
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
219
219
|
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
220
220
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
221
|
-
feeRecipient: import("../
|
|
221
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
222
222
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
223
223
|
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
224
224
|
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -237,12 +237,12 @@ export declare const ExecutionPayload: ContainerType<{
|
|
|
237
237
|
withdrawals: ListCompositeType<ContainerType<{
|
|
238
238
|
index: import("@chainsafe/ssz").UintNumberType;
|
|
239
239
|
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
240
|
-
address: import("../
|
|
240
|
+
address: import("../index.ts").ExecutionAddressType;
|
|
241
241
|
amount: import("@chainsafe/ssz").UintBigintType;
|
|
242
242
|
}>>;
|
|
243
243
|
transactions: ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
244
244
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
245
|
-
feeRecipient: import("../
|
|
245
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
246
246
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
247
247
|
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
248
248
|
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -365,12 +365,12 @@ export declare const BeaconBlockBody: ContainerType<{
|
|
|
365
365
|
withdrawals: ListCompositeType<ContainerType<{
|
|
366
366
|
index: import("@chainsafe/ssz").UintNumberType;
|
|
367
367
|
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
368
|
-
address: import("../
|
|
368
|
+
address: import("../index.ts").ExecutionAddressType;
|
|
369
369
|
amount: import("@chainsafe/ssz").UintBigintType;
|
|
370
370
|
}>>;
|
|
371
371
|
transactions: ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
372
372
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
373
|
-
feeRecipient: import("../
|
|
373
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
374
374
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
375
375
|
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
376
376
|
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -387,7 +387,7 @@ export declare const BeaconBlockBody: ContainerType<{
|
|
|
387
387
|
message: ContainerType<{
|
|
388
388
|
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
389
389
|
fromBlsPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
390
|
-
toExecutionAddress: import("../
|
|
390
|
+
toExecutionAddress: import("../index.ts").ExecutionAddressType;
|
|
391
391
|
}>;
|
|
392
392
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
393
393
|
}>>;
|
|
@@ -401,12 +401,12 @@ export declare const BeaconBlockBody: ContainerType<{
|
|
|
401
401
|
index: import("@chainsafe/ssz").UintBigintType;
|
|
402
402
|
}>>;
|
|
403
403
|
withdrawals: ListCompositeType<ContainerType<{
|
|
404
|
-
sourceAddress: import("../
|
|
404
|
+
sourceAddress: import("../index.ts").ExecutionAddressType;
|
|
405
405
|
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
406
406
|
amount: import("@chainsafe/ssz").UintBigintType;
|
|
407
407
|
}>>;
|
|
408
408
|
consolidations: ListCompositeType<ContainerType<{
|
|
409
|
-
sourceAddress: import("../
|
|
409
|
+
sourceAddress: import("../index.ts").ExecutionAddressType;
|
|
410
410
|
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
411
411
|
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
412
412
|
}>>;
|
|
@@ -523,12 +523,12 @@ export declare const BeaconBlock: ContainerType<{
|
|
|
523
523
|
withdrawals: ListCompositeType<ContainerType<{
|
|
524
524
|
index: import("@chainsafe/ssz").UintNumberType;
|
|
525
525
|
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
526
|
-
address: import("../
|
|
526
|
+
address: import("../index.ts").ExecutionAddressType;
|
|
527
527
|
amount: import("@chainsafe/ssz").UintBigintType;
|
|
528
528
|
}>>;
|
|
529
529
|
transactions: ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
530
530
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
531
|
-
feeRecipient: import("../
|
|
531
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
532
532
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
533
533
|
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
534
534
|
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -545,7 +545,7 @@ export declare const BeaconBlock: ContainerType<{
|
|
|
545
545
|
message: ContainerType<{
|
|
546
546
|
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
547
547
|
fromBlsPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
548
|
-
toExecutionAddress: import("../
|
|
548
|
+
toExecutionAddress: import("../index.ts").ExecutionAddressType;
|
|
549
549
|
}>;
|
|
550
550
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
551
551
|
}>>;
|
|
@@ -559,12 +559,12 @@ export declare const BeaconBlock: ContainerType<{
|
|
|
559
559
|
index: import("@chainsafe/ssz").UintBigintType;
|
|
560
560
|
}>>;
|
|
561
561
|
withdrawals: ListCompositeType<ContainerType<{
|
|
562
|
-
sourceAddress: import("../
|
|
562
|
+
sourceAddress: import("../index.ts").ExecutionAddressType;
|
|
563
563
|
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
564
564
|
amount: import("@chainsafe/ssz").UintBigintType;
|
|
565
565
|
}>>;
|
|
566
566
|
consolidations: ListCompositeType<ContainerType<{
|
|
567
|
-
sourceAddress: import("../
|
|
567
|
+
sourceAddress: import("../index.ts").ExecutionAddressType;
|
|
568
568
|
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
569
569
|
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
570
570
|
}>>;
|
|
@@ -687,12 +687,12 @@ export declare const SignedBeaconBlock: ContainerType<{
|
|
|
687
687
|
withdrawals: ListCompositeType<ContainerType<{
|
|
688
688
|
index: import("@chainsafe/ssz").UintNumberType;
|
|
689
689
|
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
690
|
-
address: import("../
|
|
690
|
+
address: import("../index.ts").ExecutionAddressType;
|
|
691
691
|
amount: import("@chainsafe/ssz").UintBigintType;
|
|
692
692
|
}>>;
|
|
693
693
|
transactions: ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
694
694
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
695
|
-
feeRecipient: import("../
|
|
695
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
696
696
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
697
697
|
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
698
698
|
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -709,7 +709,7 @@ export declare const SignedBeaconBlock: ContainerType<{
|
|
|
709
709
|
message: ContainerType<{
|
|
710
710
|
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
711
711
|
fromBlsPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
712
|
-
toExecutionAddress: import("../
|
|
712
|
+
toExecutionAddress: import("../index.ts").ExecutionAddressType;
|
|
713
713
|
}>;
|
|
714
714
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
715
715
|
}>>;
|
|
@@ -723,12 +723,12 @@ export declare const SignedBeaconBlock: ContainerType<{
|
|
|
723
723
|
index: import("@chainsafe/ssz").UintBigintType;
|
|
724
724
|
}>>;
|
|
725
725
|
withdrawals: ListCompositeType<ContainerType<{
|
|
726
|
-
sourceAddress: import("../
|
|
726
|
+
sourceAddress: import("../index.ts").ExecutionAddressType;
|
|
727
727
|
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
728
728
|
amount: import("@chainsafe/ssz").UintBigintType;
|
|
729
729
|
}>>;
|
|
730
730
|
consolidations: ListCompositeType<ContainerType<{
|
|
731
|
-
sourceAddress: import("../
|
|
731
|
+
sourceAddress: import("../index.ts").ExecutionAddressType;
|
|
732
732
|
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
733
733
|
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
734
734
|
}>>;
|
|
@@ -851,7 +851,7 @@ export declare const BlindedBeaconBlockBody: ContainerType<{
|
|
|
851
851
|
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
852
852
|
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
853
853
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
854
|
-
feeRecipient: import("../
|
|
854
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
855
855
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
856
856
|
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
857
857
|
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -868,7 +868,7 @@ export declare const BlindedBeaconBlockBody: ContainerType<{
|
|
|
868
868
|
message: ContainerType<{
|
|
869
869
|
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
870
870
|
fromBlsPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
871
|
-
toExecutionAddress: import("../
|
|
871
|
+
toExecutionAddress: import("../index.ts").ExecutionAddressType;
|
|
872
872
|
}>;
|
|
873
873
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
874
874
|
}>>;
|
|
@@ -882,12 +882,12 @@ export declare const BlindedBeaconBlockBody: ContainerType<{
|
|
|
882
882
|
index: import("@chainsafe/ssz").UintBigintType;
|
|
883
883
|
}>>;
|
|
884
884
|
withdrawals: ListCompositeType<ContainerType<{
|
|
885
|
-
sourceAddress: import("../
|
|
885
|
+
sourceAddress: import("../index.ts").ExecutionAddressType;
|
|
886
886
|
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
887
887
|
amount: import("@chainsafe/ssz").UintBigintType;
|
|
888
888
|
}>>;
|
|
889
889
|
consolidations: ListCompositeType<ContainerType<{
|
|
890
|
-
sourceAddress: import("../
|
|
890
|
+
sourceAddress: import("../index.ts").ExecutionAddressType;
|
|
891
891
|
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
892
892
|
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
893
893
|
}>>;
|
|
@@ -1004,7 +1004,7 @@ export declare const BlindedBeaconBlock: ContainerType<{
|
|
|
1004
1004
|
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1005
1005
|
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1006
1006
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1007
|
-
feeRecipient: import("../
|
|
1007
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
1008
1008
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1009
1009
|
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1010
1010
|
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -1021,7 +1021,7 @@ export declare const BlindedBeaconBlock: ContainerType<{
|
|
|
1021
1021
|
message: ContainerType<{
|
|
1022
1022
|
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1023
1023
|
fromBlsPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
1024
|
-
toExecutionAddress: import("../
|
|
1024
|
+
toExecutionAddress: import("../index.ts").ExecutionAddressType;
|
|
1025
1025
|
}>;
|
|
1026
1026
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
1027
1027
|
}>>;
|
|
@@ -1035,12 +1035,12 @@ export declare const BlindedBeaconBlock: ContainerType<{
|
|
|
1035
1035
|
index: import("@chainsafe/ssz").UintBigintType;
|
|
1036
1036
|
}>>;
|
|
1037
1037
|
withdrawals: ListCompositeType<ContainerType<{
|
|
1038
|
-
sourceAddress: import("../
|
|
1038
|
+
sourceAddress: import("../index.ts").ExecutionAddressType;
|
|
1039
1039
|
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
1040
1040
|
amount: import("@chainsafe/ssz").UintBigintType;
|
|
1041
1041
|
}>>;
|
|
1042
1042
|
consolidations: ListCompositeType<ContainerType<{
|
|
1043
|
-
sourceAddress: import("../
|
|
1043
|
+
sourceAddress: import("../index.ts").ExecutionAddressType;
|
|
1044
1044
|
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
1045
1045
|
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
1046
1046
|
}>>;
|
|
@@ -1163,7 +1163,7 @@ export declare const SignedBlindedBeaconBlock: ContainerType<{
|
|
|
1163
1163
|
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1164
1164
|
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1165
1165
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1166
|
-
feeRecipient: import("../
|
|
1166
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
1167
1167
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1168
1168
|
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1169
1169
|
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -1180,7 +1180,7 @@ export declare const SignedBlindedBeaconBlock: ContainerType<{
|
|
|
1180
1180
|
message: ContainerType<{
|
|
1181
1181
|
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1182
1182
|
fromBlsPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
1183
|
-
toExecutionAddress: import("../
|
|
1183
|
+
toExecutionAddress: import("../index.ts").ExecutionAddressType;
|
|
1184
1184
|
}>;
|
|
1185
1185
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
1186
1186
|
}>>;
|
|
@@ -1194,12 +1194,12 @@ export declare const SignedBlindedBeaconBlock: ContainerType<{
|
|
|
1194
1194
|
index: import("@chainsafe/ssz").UintBigintType;
|
|
1195
1195
|
}>>;
|
|
1196
1196
|
withdrawals: ListCompositeType<ContainerType<{
|
|
1197
|
-
sourceAddress: import("../
|
|
1197
|
+
sourceAddress: import("../index.ts").ExecutionAddressType;
|
|
1198
1198
|
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
1199
1199
|
amount: import("@chainsafe/ssz").UintBigintType;
|
|
1200
1200
|
}>>;
|
|
1201
1201
|
consolidations: ListCompositeType<ContainerType<{
|
|
1202
|
-
sourceAddress: import("../
|
|
1202
|
+
sourceAddress: import("../index.ts").ExecutionAddressType;
|
|
1203
1203
|
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
1204
1204
|
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
1205
1205
|
}>>;
|
|
@@ -1219,7 +1219,7 @@ export declare const BuilderBid: ContainerType<{
|
|
|
1219
1219
|
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1220
1220
|
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1221
1221
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1222
|
-
feeRecipient: import("../
|
|
1222
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
1223
1223
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1224
1224
|
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1225
1225
|
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -1242,12 +1242,12 @@ export declare const BuilderBid: ContainerType<{
|
|
|
1242
1242
|
index: import("@chainsafe/ssz").UintBigintType;
|
|
1243
1243
|
}>>;
|
|
1244
1244
|
withdrawals: ListCompositeType<ContainerType<{
|
|
1245
|
-
sourceAddress: import("../
|
|
1245
|
+
sourceAddress: import("../index.ts").ExecutionAddressType;
|
|
1246
1246
|
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
1247
1247
|
amount: import("@chainsafe/ssz").UintBigintType;
|
|
1248
1248
|
}>>;
|
|
1249
1249
|
consolidations: ListCompositeType<ContainerType<{
|
|
1250
|
-
sourceAddress: import("../
|
|
1250
|
+
sourceAddress: import("../index.ts").ExecutionAddressType;
|
|
1251
1251
|
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
1252
1252
|
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
1253
1253
|
}>>;
|
|
@@ -1263,7 +1263,7 @@ export declare const SignedBuilderBid: ContainerType<{
|
|
|
1263
1263
|
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1264
1264
|
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1265
1265
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1266
|
-
feeRecipient: import("../
|
|
1266
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
1267
1267
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1268
1268
|
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1269
1269
|
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -1286,12 +1286,12 @@ export declare const SignedBuilderBid: ContainerType<{
|
|
|
1286
1286
|
index: import("@chainsafe/ssz").UintBigintType;
|
|
1287
1287
|
}>>;
|
|
1288
1288
|
withdrawals: ListCompositeType<ContainerType<{
|
|
1289
|
-
sourceAddress: import("../
|
|
1289
|
+
sourceAddress: import("../index.ts").ExecutionAddressType;
|
|
1290
1290
|
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
1291
1291
|
amount: import("@chainsafe/ssz").UintBigintType;
|
|
1292
1292
|
}>>;
|
|
1293
1293
|
consolidations: ListCompositeType<ContainerType<{
|
|
1294
|
-
sourceAddress: import("../
|
|
1294
|
+
sourceAddress: import("../index.ts").ExecutionAddressType;
|
|
1295
1295
|
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
1296
1296
|
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
1297
1297
|
}>>;
|
|
@@ -1363,7 +1363,7 @@ export declare const BeaconState: ContainerType<{
|
|
|
1363
1363
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1364
1364
|
}>>;
|
|
1365
1365
|
eth1DepositIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1366
|
-
validators: ListCompositeType<import("../phase0/validator.
|
|
1366
|
+
validators: ListCompositeType<import("../phase0/validator.ts").ValidatorNodeStructType>;
|
|
1367
1367
|
balances: import("@chainsafe/ssz").ListUintNum64Type;
|
|
1368
1368
|
randaoMixes: VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
1369
1369
|
slashings: import("@chainsafe/ssz").VectorBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
@@ -1397,7 +1397,7 @@ export declare const BeaconState: ContainerType<{
|
|
|
1397
1397
|
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1398
1398
|
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1399
1399
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1400
|
-
feeRecipient: import("../
|
|
1400
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
1401
1401
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1402
1402
|
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1403
1403
|
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -1454,7 +1454,7 @@ export declare const LightClientBootstrap: ContainerType<{
|
|
|
1454
1454
|
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1455
1455
|
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1456
1456
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1457
|
-
feeRecipient: import("../
|
|
1457
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
1458
1458
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1459
1459
|
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1460
1460
|
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -1490,7 +1490,7 @@ export declare const LightClientUpdate: ContainerType<{
|
|
|
1490
1490
|
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1491
1491
|
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1492
1492
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1493
|
-
feeRecipient: import("../
|
|
1493
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
1494
1494
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1495
1495
|
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1496
1496
|
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -1524,7 +1524,7 @@ export declare const LightClientUpdate: ContainerType<{
|
|
|
1524
1524
|
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1525
1525
|
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1526
1526
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1527
|
-
feeRecipient: import("../
|
|
1527
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
1528
1528
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1529
1529
|
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1530
1530
|
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -1561,7 +1561,7 @@ export declare const LightClientFinalityUpdate: ContainerType<{
|
|
|
1561
1561
|
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1562
1562
|
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1563
1563
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1564
|
-
feeRecipient: import("../
|
|
1564
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
1565
1565
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1566
1566
|
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1567
1567
|
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -1590,7 +1590,7 @@ export declare const LightClientFinalityUpdate: ContainerType<{
|
|
|
1590
1590
|
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1591
1591
|
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1592
1592
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1593
|
-
feeRecipient: import("../
|
|
1593
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
1594
1594
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1595
1595
|
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1596
1596
|
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -1627,7 +1627,7 @@ export declare const LightClientOptimisticUpdate: ContainerType<{
|
|
|
1627
1627
|
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1628
1628
|
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1629
1629
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1630
|
-
feeRecipient: import("../
|
|
1630
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
1631
1631
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1632
1632
|
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1633
1633
|
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -1664,7 +1664,7 @@ export declare const LightClientStore: ContainerType<{
|
|
|
1664
1664
|
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1665
1665
|
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1666
1666
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1667
|
-
feeRecipient: import("../
|
|
1667
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
1668
1668
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1669
1669
|
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1670
1670
|
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -1700,7 +1700,7 @@ export declare const LightClientStore: ContainerType<{
|
|
|
1700
1700
|
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1701
1701
|
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1702
1702
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1703
|
-
feeRecipient: import("../
|
|
1703
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
1704
1704
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1705
1705
|
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1706
1706
|
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -1734,7 +1734,7 @@ export declare const LightClientStore: ContainerType<{
|
|
|
1734
1734
|
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1735
1735
|
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1736
1736
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1737
|
-
feeRecipient: import("../
|
|
1737
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
1738
1738
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1739
1739
|
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1740
1740
|
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -1762,12 +1762,12 @@ export declare const PayloadAttributes: ContainerType<{
|
|
|
1762
1762
|
withdrawals: ListCompositeType<ContainerType<{
|
|
1763
1763
|
index: import("@chainsafe/ssz").UintNumberType;
|
|
1764
1764
|
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1765
|
-
address: import("../
|
|
1765
|
+
address: import("../index.ts").ExecutionAddressType;
|
|
1766
1766
|
amount: import("@chainsafe/ssz").UintBigintType;
|
|
1767
1767
|
}>>;
|
|
1768
1768
|
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
1769
1769
|
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
1770
|
-
suggestedFeeRecipient: import("../index.
|
|
1770
|
+
suggestedFeeRecipient: import("../index.ts").StringType<string>;
|
|
1771
1771
|
}>;
|
|
1772
1772
|
export declare const SSEPayloadAttributes: ContainerType<{
|
|
1773
1773
|
payloadAttributes: ContainerType<{
|
|
@@ -1775,12 +1775,12 @@ export declare const SSEPayloadAttributes: ContainerType<{
|
|
|
1775
1775
|
withdrawals: ListCompositeType<ContainerType<{
|
|
1776
1776
|
index: import("@chainsafe/ssz").UintNumberType;
|
|
1777
1777
|
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1778
|
-
address: import("../
|
|
1778
|
+
address: import("../index.ts").ExecutionAddressType;
|
|
1779
1779
|
amount: import("@chainsafe/ssz").UintBigintType;
|
|
1780
1780
|
}>>;
|
|
1781
1781
|
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
1782
1782
|
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
1783
|
-
suggestedFeeRecipient: import("../index.
|
|
1783
|
+
suggestedFeeRecipient: import("../index.ts").StringType<string>;
|
|
1784
1784
|
}>;
|
|
1785
1785
|
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1786
1786
|
proposalSlot: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -1900,12 +1900,12 @@ export declare const BlockContents: ContainerType<{
|
|
|
1900
1900
|
withdrawals: ListCompositeType<ContainerType<{
|
|
1901
1901
|
index: import("@chainsafe/ssz").UintNumberType;
|
|
1902
1902
|
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1903
|
-
address: import("../
|
|
1903
|
+
address: import("../index.ts").ExecutionAddressType;
|
|
1904
1904
|
amount: import("@chainsafe/ssz").UintBigintType;
|
|
1905
1905
|
}>>;
|
|
1906
1906
|
transactions: ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
1907
1907
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1908
|
-
feeRecipient: import("../
|
|
1908
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
1909
1909
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1910
1910
|
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1911
1911
|
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -1922,7 +1922,7 @@ export declare const BlockContents: ContainerType<{
|
|
|
1922
1922
|
message: ContainerType<{
|
|
1923
1923
|
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1924
1924
|
fromBlsPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
1925
|
-
toExecutionAddress: import("../
|
|
1925
|
+
toExecutionAddress: import("../index.ts").ExecutionAddressType;
|
|
1926
1926
|
}>;
|
|
1927
1927
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
1928
1928
|
}>>;
|
|
@@ -1936,12 +1936,12 @@ export declare const BlockContents: ContainerType<{
|
|
|
1936
1936
|
index: import("@chainsafe/ssz").UintBigintType;
|
|
1937
1937
|
}>>;
|
|
1938
1938
|
withdrawals: ListCompositeType<ContainerType<{
|
|
1939
|
-
sourceAddress: import("../
|
|
1939
|
+
sourceAddress: import("../index.ts").ExecutionAddressType;
|
|
1940
1940
|
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
1941
1941
|
amount: import("@chainsafe/ssz").UintBigintType;
|
|
1942
1942
|
}>>;
|
|
1943
1943
|
consolidations: ListCompositeType<ContainerType<{
|
|
1944
|
-
sourceAddress: import("../
|
|
1944
|
+
sourceAddress: import("../index.ts").ExecutionAddressType;
|
|
1945
1945
|
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
1946
1946
|
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
1947
1947
|
}>>;
|
|
@@ -2068,12 +2068,12 @@ export declare const SignedBlockContents: ContainerType<{
|
|
|
2068
2068
|
withdrawals: ListCompositeType<ContainerType<{
|
|
2069
2069
|
index: import("@chainsafe/ssz").UintNumberType;
|
|
2070
2070
|
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
2071
|
-
address: import("../
|
|
2071
|
+
address: import("../index.ts").ExecutionAddressType;
|
|
2072
2072
|
amount: import("@chainsafe/ssz").UintBigintType;
|
|
2073
2073
|
}>>;
|
|
2074
2074
|
transactions: ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
2075
2075
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
2076
|
-
feeRecipient: import("../
|
|
2076
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
2077
2077
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
2078
2078
|
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
2079
2079
|
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -2090,7 +2090,7 @@ export declare const SignedBlockContents: ContainerType<{
|
|
|
2090
2090
|
message: ContainerType<{
|
|
2091
2091
|
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
2092
2092
|
fromBlsPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
2093
|
-
toExecutionAddress: import("../
|
|
2093
|
+
toExecutionAddress: import("../index.ts").ExecutionAddressType;
|
|
2094
2094
|
}>;
|
|
2095
2095
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
2096
2096
|
}>>;
|
|
@@ -2104,12 +2104,12 @@ export declare const SignedBlockContents: ContainerType<{
|
|
|
2104
2104
|
index: import("@chainsafe/ssz").UintBigintType;
|
|
2105
2105
|
}>>;
|
|
2106
2106
|
withdrawals: ListCompositeType<ContainerType<{
|
|
2107
|
-
sourceAddress: import("../
|
|
2107
|
+
sourceAddress: import("../index.ts").ExecutionAddressType;
|
|
2108
2108
|
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
2109
2109
|
amount: import("@chainsafe/ssz").UintBigintType;
|
|
2110
2110
|
}>>;
|
|
2111
2111
|
consolidations: ListCompositeType<ContainerType<{
|
|
2112
|
-
sourceAddress: import("../
|
|
2112
|
+
sourceAddress: import("../index.ts").ExecutionAddressType;
|
|
2113
2113
|
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
2114
2114
|
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
2115
2115
|
}>>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"sszTypes.d.ts","sourceRoot":"","sources":["../../src/electra/sszTypes.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/electra/types.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/fulu/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"}
|
package/lib/fulu/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/fulu/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/fulu/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"}
|