@lodestar/types 1.31.0-dev.fb014780d5 → 1.31.0-peerDAS.d70dab2e57
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/fulu/sszTypes.d.ts +1957 -3
- package/lib/fulu/sszTypes.js +91 -6
- package/lib/fulu/sszTypes.js.map +1 -1
- package/lib/fulu/types.d.ts +29 -1
- package/lib/sszTypes.d.ts +731 -731
- package/lib/sszTypes.js +5 -1
- package/lib/sszTypes.js.map +1 -1
- package/lib/types.d.ts +20 -20
- package/package.json +4 -4
package/lib/sszTypes.d.ts
CHANGED
|
@@ -10247,6 +10247,8 @@ declare const typesByFork: {
|
|
|
10247
10247
|
}>;
|
|
10248
10248
|
};
|
|
10249
10249
|
fulu: {
|
|
10250
|
+
KZGProof: import("@chainsafe/ssz").ByteVectorType;
|
|
10251
|
+
Blob: import("@chainsafe/ssz").ByteVectorType;
|
|
10250
10252
|
Metadata: ContainerType<{
|
|
10251
10253
|
custodyGroupCount: import("@chainsafe/ssz").UintNumberType;
|
|
10252
10254
|
seqNumber: import("@chainsafe/ssz").UintBigintType;
|
|
@@ -10257,6 +10259,7 @@ declare const typesByFork: {
|
|
|
10257
10259
|
DataColumn: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
10258
10260
|
ExtendedMatrix: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
10259
10261
|
KzgCommitmentsInclusionProof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
10262
|
+
KZGProofs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
10260
10263
|
DataColumnSidecar: ContainerType<{
|
|
10261
10264
|
index: import("@chainsafe/ssz").UintNumberType;
|
|
10262
10265
|
column: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
@@ -10297,233 +10300,29 @@ declare const typesByFork: {
|
|
|
10297
10300
|
columnIndex: import("@chainsafe/ssz").UintNumberType;
|
|
10298
10301
|
rowIndex: import("@chainsafe/ssz").UintNumberType;
|
|
10299
10302
|
}>;
|
|
10300
|
-
|
|
10303
|
+
DataColumnsByRootIdentifier: ContainerType<{
|
|
10301
10304
|
blockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10302
|
-
|
|
10305
|
+
columns: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
10303
10306
|
}>;
|
|
10304
10307
|
DataColumnSidecarsByRootRequest: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
10305
10308
|
blockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10306
|
-
|
|
10309
|
+
columns: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
10307
10310
|
}>>;
|
|
10308
10311
|
DataColumnSidecarsByRangeRequest: ContainerType<{
|
|
10309
10312
|
startSlot: import("@chainsafe/ssz").UintNumberType;
|
|
10310
10313
|
count: import("@chainsafe/ssz").UintNumberType;
|
|
10311
10314
|
columns: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
10312
10315
|
}>;
|
|
10313
|
-
|
|
10314
|
-
|
|
10315
|
-
|
|
10316
|
-
Attestation: ContainerType<{
|
|
10317
|
-
aggregationBits: import("@chainsafe/ssz").BitListType;
|
|
10318
|
-
data: ContainerType<{
|
|
10319
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
10320
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
10321
|
-
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10322
|
-
source: ContainerType<{
|
|
10323
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
10324
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
10325
|
-
}>;
|
|
10326
|
-
target: ContainerType<{
|
|
10327
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
10328
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
10329
|
-
}>;
|
|
10330
|
-
}>;
|
|
10331
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
10332
|
-
committeeBits: import("@chainsafe/ssz").BitVectorType;
|
|
10333
|
-
}>;
|
|
10334
|
-
SingleAttestation: ContainerType<{
|
|
10335
|
-
committeeIndex: import("@chainsafe/ssz").UintNumberType;
|
|
10336
|
-
attesterIndex: import("@chainsafe/ssz").UintNumberType;
|
|
10337
|
-
data: ContainerType<{
|
|
10338
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
10339
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
10340
|
-
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10341
|
-
source: ContainerType<{
|
|
10342
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
10343
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
10344
|
-
}>;
|
|
10345
|
-
target: ContainerType<{
|
|
10346
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
10347
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
10348
|
-
}>;
|
|
10349
|
-
}>;
|
|
10350
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
10351
|
-
}>;
|
|
10352
|
-
IndexedAttestation: ContainerType<{
|
|
10353
|
-
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
10354
|
-
data: ContainerType<{
|
|
10355
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
10356
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
10357
|
-
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10358
|
-
source: ContainerType<{
|
|
10359
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
10360
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
10361
|
-
}>;
|
|
10362
|
-
target: ContainerType<{
|
|
10363
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
10364
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
10365
|
-
}>;
|
|
10366
|
-
}>;
|
|
10367
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
10368
|
-
}>;
|
|
10369
|
-
IndexedAttestationBigint: ContainerType<{
|
|
10370
|
-
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
10371
|
-
data: ContainerType<{
|
|
10372
|
-
slot: import("@chainsafe/ssz").UintBigintType;
|
|
10373
|
-
index: import("@chainsafe/ssz").UintBigintType;
|
|
10374
|
-
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10375
|
-
source: ContainerType<{
|
|
10376
|
-
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
10377
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
10378
|
-
}>;
|
|
10379
|
-
target: ContainerType<{
|
|
10380
|
-
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
10381
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
10382
|
-
}>;
|
|
10383
|
-
}>;
|
|
10384
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
10385
|
-
}>;
|
|
10386
|
-
AttesterSlashing: ContainerType<{
|
|
10387
|
-
attestation1: ContainerType<{
|
|
10388
|
-
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
10389
|
-
data: ContainerType<{
|
|
10390
|
-
slot: import("@chainsafe/ssz").UintBigintType;
|
|
10391
|
-
index: import("@chainsafe/ssz").UintBigintType;
|
|
10392
|
-
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10393
|
-
source: ContainerType<{
|
|
10394
|
-
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
10395
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
10396
|
-
}>;
|
|
10397
|
-
target: ContainerType<{
|
|
10398
|
-
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
10399
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
10400
|
-
}>;
|
|
10401
|
-
}>;
|
|
10402
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
10403
|
-
}>;
|
|
10404
|
-
attestation2: ContainerType<{
|
|
10405
|
-
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
10406
|
-
data: ContainerType<{
|
|
10407
|
-
slot: import("@chainsafe/ssz").UintBigintType;
|
|
10408
|
-
index: import("@chainsafe/ssz").UintBigintType;
|
|
10409
|
-
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10410
|
-
source: ContainerType<{
|
|
10411
|
-
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
10412
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
10413
|
-
}>;
|
|
10414
|
-
target: ContainerType<{
|
|
10415
|
-
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
10416
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
10417
|
-
}>;
|
|
10418
|
-
}>;
|
|
10419
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
10420
|
-
}>;
|
|
10421
|
-
}>;
|
|
10422
|
-
AggregateAndProof: ContainerType<{
|
|
10423
|
-
aggregatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
10424
|
-
aggregate: ContainerType<{
|
|
10425
|
-
aggregationBits: import("@chainsafe/ssz").BitListType;
|
|
10426
|
-
data: ContainerType<{
|
|
10427
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
10428
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
10429
|
-
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10430
|
-
source: ContainerType<{
|
|
10431
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
10432
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
10433
|
-
}>;
|
|
10434
|
-
target: ContainerType<{
|
|
10435
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
10436
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
10437
|
-
}>;
|
|
10438
|
-
}>;
|
|
10439
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
10440
|
-
committeeBits: import("@chainsafe/ssz").BitVectorType;
|
|
10441
|
-
}>;
|
|
10442
|
-
selectionProof: import("@chainsafe/ssz").ByteVectorType;
|
|
10443
|
-
}>;
|
|
10444
|
-
SignedAggregateAndProof: ContainerType<{
|
|
10445
|
-
message: ContainerType<{
|
|
10446
|
-
aggregatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
10447
|
-
aggregate: ContainerType<{
|
|
10448
|
-
aggregationBits: import("@chainsafe/ssz").BitListType;
|
|
10449
|
-
data: ContainerType<{
|
|
10450
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
10451
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
10452
|
-
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10453
|
-
source: ContainerType<{
|
|
10454
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
10455
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
10456
|
-
}>;
|
|
10457
|
-
target: ContainerType<{
|
|
10458
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
10459
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
10460
|
-
}>;
|
|
10461
|
-
}>;
|
|
10462
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
10463
|
-
committeeBits: import("@chainsafe/ssz").BitVectorType;
|
|
10464
|
-
}>;
|
|
10465
|
-
selectionProof: import("@chainsafe/ssz").ByteVectorType;
|
|
10466
|
-
}>;
|
|
10467
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
10468
|
-
}>;
|
|
10469
|
-
DepositRequest: ContainerType<{
|
|
10470
|
-
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
10471
|
-
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
10472
|
-
amount: import("@chainsafe/ssz").UintNumberType;
|
|
10473
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
10474
|
-
index: import("@chainsafe/ssz").UintBigintType;
|
|
10475
|
-
}>;
|
|
10476
|
-
DepositRequests: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
10477
|
-
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
10478
|
-
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
10479
|
-
amount: import("@chainsafe/ssz").UintNumberType;
|
|
10480
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
10481
|
-
index: import("@chainsafe/ssz").UintBigintType;
|
|
10482
|
-
}>>;
|
|
10483
|
-
WithdrawalRequest: ContainerType<{
|
|
10484
|
-
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
10485
|
-
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
10486
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
10487
|
-
}>;
|
|
10488
|
-
WithdrawalRequests: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
10489
|
-
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
10490
|
-
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
10491
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
10492
|
-
}>>;
|
|
10493
|
-
ConsolidationRequest: ContainerType<{
|
|
10494
|
-
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
10495
|
-
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
10496
|
-
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
10497
|
-
}>;
|
|
10498
|
-
ConsolidationRequests: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
10499
|
-
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
10500
|
-
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
10501
|
-
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
10502
|
-
}>>;
|
|
10503
|
-
ExecutionRequests: ContainerType<{
|
|
10504
|
-
deposits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
10505
|
-
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
10506
|
-
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
10507
|
-
amount: import("@chainsafe/ssz").UintNumberType;
|
|
10508
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
10509
|
-
index: import("@chainsafe/ssz").UintBigintType;
|
|
10510
|
-
}>>;
|
|
10316
|
+
ExecutionPayload: ContainerType<{
|
|
10317
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
10318
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
10511
10319
|
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
10512
|
-
|
|
10513
|
-
|
|
10320
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
10321
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
10322
|
+
address: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
10514
10323
|
amount: import("@chainsafe/ssz").UintBigintType;
|
|
10515
10324
|
}>>;
|
|
10516
|
-
|
|
10517
|
-
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
10518
|
-
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
10519
|
-
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
10520
|
-
}>>;
|
|
10521
|
-
}>;
|
|
10522
|
-
ExecutionPayloadHeader: ContainerType<{
|
|
10523
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
10524
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
10525
|
-
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10526
|
-
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10325
|
+
transactions: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
10527
10326
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
10528
10327
|
feeRecipient: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
10529
10328
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -10538,16 +10337,11 @@ declare const typesByFork: {
|
|
|
10538
10337
|
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
10539
10338
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
10540
10339
|
}>;
|
|
10541
|
-
|
|
10340
|
+
ExecutionPayloadHeader: ContainerType<{
|
|
10542
10341
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
10543
10342
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
10544
|
-
|
|
10545
|
-
|
|
10546
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
10547
|
-
address: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
10548
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
10549
|
-
}>>;
|
|
10550
|
-
transactions: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
10343
|
+
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10344
|
+
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10551
10345
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
10552
10346
|
feeRecipient: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
10553
10347
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -11048,12 +10842,34 @@ declare const typesByFork: {
|
|
|
11048
10842
|
}>;
|
|
11049
10843
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
11050
10844
|
}>;
|
|
11051
|
-
|
|
11052
|
-
|
|
11053
|
-
|
|
11054
|
-
|
|
11055
|
-
|
|
11056
|
-
|
|
10845
|
+
BlobSidecar: ContainerType<{
|
|
10846
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
10847
|
+
blob: import("@chainsafe/ssz").ByteVectorType;
|
|
10848
|
+
kzgCommitment: import("@chainsafe/ssz").ByteVectorType;
|
|
10849
|
+
kzgProof: import("@chainsafe/ssz").ByteVectorType;
|
|
10850
|
+
signedBlockHeader: ContainerType<{
|
|
10851
|
+
message: ContainerType<{
|
|
10852
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
10853
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
10854
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10855
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10856
|
+
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10857
|
+
}>;
|
|
10858
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
10859
|
+
}>;
|
|
10860
|
+
kzgCommitmentInclusionProof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
10861
|
+
}>;
|
|
10862
|
+
BlobsBundle: ContainerType<{
|
|
10863
|
+
commitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
10864
|
+
proofs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
10865
|
+
blobs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
10866
|
+
}>;
|
|
10867
|
+
BlindedBeaconBlockBody: ContainerType<{
|
|
10868
|
+
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
10869
|
+
eth1Data: ContainerType<{
|
|
10870
|
+
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10871
|
+
depositCount: import("@chainsafe/ssz").UintNumberType;
|
|
10872
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
11057
10873
|
}>;
|
|
11058
10874
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
11059
10875
|
proposerSlashings: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
@@ -11608,38 +11424,37 @@ declare const typesByFork: {
|
|
|
11608
11424
|
}>;
|
|
11609
11425
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
11610
11426
|
}>;
|
|
11611
|
-
|
|
11612
|
-
|
|
11613
|
-
|
|
11614
|
-
|
|
11615
|
-
|
|
11616
|
-
|
|
11617
|
-
|
|
11618
|
-
|
|
11619
|
-
|
|
11620
|
-
|
|
11621
|
-
|
|
11622
|
-
|
|
11623
|
-
|
|
11624
|
-
|
|
11625
|
-
|
|
11626
|
-
|
|
11627
|
-
|
|
11628
|
-
|
|
11629
|
-
|
|
11630
|
-
|
|
11631
|
-
|
|
11632
|
-
|
|
11633
|
-
|
|
11634
|
-
|
|
11635
|
-
|
|
11636
|
-
|
|
11637
|
-
|
|
11427
|
+
ExecutionPayloadAndBlobsBundle: ContainerType<{
|
|
11428
|
+
executionPayload: ContainerType<{
|
|
11429
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
11430
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
11431
|
+
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
11432
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
11433
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
11434
|
+
address: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
11435
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
11436
|
+
}>>;
|
|
11437
|
+
transactions: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
11438
|
+
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
11439
|
+
feeRecipient: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
11440
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
11441
|
+
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
11442
|
+
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
11443
|
+
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
11444
|
+
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
11445
|
+
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
11446
|
+
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
11447
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
11448
|
+
extraData: import("@chainsafe/ssz").ByteListType;
|
|
11449
|
+
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
11450
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
11451
|
+
}>;
|
|
11452
|
+
blobsBundle: ContainerType<{
|
|
11453
|
+
commitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
11454
|
+
proofs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
11455
|
+
blobs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
11456
|
+
}>;
|
|
11638
11457
|
}>;
|
|
11639
|
-
PendingConsolidations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
11640
|
-
sourceIndex: import("@chainsafe/ssz").UintNumberType;
|
|
11641
|
-
targetIndex: import("@chainsafe/ssz").UintNumberType;
|
|
11642
|
-
}>>;
|
|
11643
11458
|
BeaconState: ContainerType<{
|
|
11644
11459
|
genesisTime: import("@chainsafe/ssz").UintNumberType;
|
|
11645
11460
|
genesisValidatorsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -11746,6 +11561,35 @@ declare const typesByFork: {
|
|
|
11746
11561
|
targetIndex: import("@chainsafe/ssz").UintNumberType;
|
|
11747
11562
|
}>>;
|
|
11748
11563
|
}>;
|
|
11564
|
+
LightClientHeader: ContainerType<{
|
|
11565
|
+
beacon: ContainerType<{
|
|
11566
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
11567
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
11568
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
11569
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
11570
|
+
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
11571
|
+
}>;
|
|
11572
|
+
execution: ContainerType<{
|
|
11573
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
11574
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
11575
|
+
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
11576
|
+
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
11577
|
+
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
11578
|
+
feeRecipient: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
11579
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
11580
|
+
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
11581
|
+
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
11582
|
+
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
11583
|
+
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
11584
|
+
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
11585
|
+
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
11586
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
11587
|
+
extraData: import("@chainsafe/ssz").ByteListType;
|
|
11588
|
+
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
11589
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
11590
|
+
}>;
|
|
11591
|
+
executionBranch: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
11592
|
+
}>;
|
|
11749
11593
|
LightClientBootstrap: ContainerType<{
|
|
11750
11594
|
header: ContainerType<{
|
|
11751
11595
|
beacon: ContainerType<{
|
|
@@ -12064,18 +11908,6 @@ declare const typesByFork: {
|
|
|
12064
11908
|
signatureSlot: import("@chainsafe/ssz").UintNumberType;
|
|
12065
11909
|
}>>;
|
|
12066
11910
|
}>;
|
|
12067
|
-
PayloadAttributes: ContainerType<{
|
|
12068
|
-
parentBeaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12069
|
-
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
12070
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
12071
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
12072
|
-
address: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
12073
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
12074
|
-
}>>;
|
|
12075
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
12076
|
-
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
12077
|
-
suggestedFeeRecipient: import("./index.js").StringType<string>;
|
|
12078
|
-
}>;
|
|
12079
11911
|
SSEPayloadAttributes: ContainerType<{
|
|
12080
11912
|
payloadAttributes: ContainerType<{
|
|
12081
11913
|
parentBeaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -12432,126 +12264,294 @@ declare const typesByFork: {
|
|
|
12432
12264
|
kzgProofs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
12433
12265
|
blobs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
12434
12266
|
}>;
|
|
12435
|
-
|
|
12436
|
-
|
|
12437
|
-
|
|
12438
|
-
|
|
12439
|
-
|
|
12440
|
-
|
|
12441
|
-
|
|
12442
|
-
|
|
12443
|
-
|
|
12444
|
-
|
|
12445
|
-
|
|
12446
|
-
|
|
12447
|
-
BlobSidecarsByRangeRequest: ContainerType<{
|
|
12448
|
-
startSlot: import("@chainsafe/ssz").UintNumberType;
|
|
12449
|
-
count: import("@chainsafe/ssz").UintNumberType;
|
|
12450
|
-
}>;
|
|
12451
|
-
BlobIdentifier: ContainerType<{
|
|
12452
|
-
blockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12453
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
12454
|
-
}>;
|
|
12455
|
-
KzgCommitmentInclusionProof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
12456
|
-
BlobSidecar: ContainerType<{
|
|
12457
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
12458
|
-
blob: import("@chainsafe/ssz").ByteVectorType;
|
|
12459
|
-
kzgCommitment: import("@chainsafe/ssz").ByteVectorType;
|
|
12460
|
-
kzgProof: import("@chainsafe/ssz").ByteVectorType;
|
|
12461
|
-
signedBlockHeader: ContainerType<{
|
|
12462
|
-
message: ContainerType<{
|
|
12463
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
12464
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
12465
|
-
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12466
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12467
|
-
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12267
|
+
AggregationBits: import("@chainsafe/ssz").BitListType;
|
|
12268
|
+
CommitteeBits: import("@chainsafe/ssz").BitVectorType;
|
|
12269
|
+
AttestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
12270
|
+
Attestation: ContainerType<{
|
|
12271
|
+
aggregationBits: import("@chainsafe/ssz").BitListType;
|
|
12272
|
+
data: ContainerType<{
|
|
12273
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
12274
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
12275
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12276
|
+
source: ContainerType<{
|
|
12277
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
12278
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
12468
12279
|
}>;
|
|
12469
|
-
|
|
12470
|
-
|
|
12471
|
-
|
|
12472
|
-
}>;
|
|
12473
|
-
BlobSidecars: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
12474
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
12475
|
-
blob: import("@chainsafe/ssz").ByteVectorType;
|
|
12476
|
-
kzgCommitment: import("@chainsafe/ssz").ByteVectorType;
|
|
12477
|
-
kzgProof: import("@chainsafe/ssz").ByteVectorType;
|
|
12478
|
-
signedBlockHeader: ContainerType<{
|
|
12479
|
-
message: ContainerType<{
|
|
12480
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
12481
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
12482
|
-
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12483
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12484
|
-
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12280
|
+
target: ContainerType<{
|
|
12281
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
12282
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
12485
12283
|
}>;
|
|
12486
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
12487
12284
|
}>;
|
|
12488
|
-
|
|
12489
|
-
|
|
12490
|
-
BlobsBundle: ContainerType<{
|
|
12491
|
-
commitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
12492
|
-
proofs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
12493
|
-
blobs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
12285
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
12286
|
+
committeeBits: import("@chainsafe/ssz").BitVectorType;
|
|
12494
12287
|
}>;
|
|
12495
|
-
|
|
12496
|
-
|
|
12497
|
-
|
|
12498
|
-
|
|
12499
|
-
|
|
12500
|
-
|
|
12501
|
-
|
|
12502
|
-
|
|
12503
|
-
|
|
12504
|
-
|
|
12505
|
-
|
|
12506
|
-
|
|
12507
|
-
|
|
12508
|
-
|
|
12509
|
-
|
|
12510
|
-
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
12511
|
-
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
12512
|
-
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
12513
|
-
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
12514
|
-
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
12515
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
12516
|
-
extraData: import("@chainsafe/ssz").ByteListType;
|
|
12517
|
-
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
12518
|
-
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
12519
|
-
}>;
|
|
12520
|
-
blobsBundle: ContainerType<{
|
|
12521
|
-
commitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
12522
|
-
proofs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
12523
|
-
blobs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
12288
|
+
SingleAttestation: ContainerType<{
|
|
12289
|
+
committeeIndex: import("@chainsafe/ssz").UintNumberType;
|
|
12290
|
+
attesterIndex: import("@chainsafe/ssz").UintNumberType;
|
|
12291
|
+
data: ContainerType<{
|
|
12292
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
12293
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
12294
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12295
|
+
source: ContainerType<{
|
|
12296
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
12297
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
12298
|
+
}>;
|
|
12299
|
+
target: ContainerType<{
|
|
12300
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
12301
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
12302
|
+
}>;
|
|
12524
12303
|
}>;
|
|
12304
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
12525
12305
|
}>;
|
|
12526
|
-
|
|
12527
|
-
|
|
12306
|
+
IndexedAttestation: ContainerType<{
|
|
12307
|
+
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
12308
|
+
data: ContainerType<{
|
|
12528
12309
|
slot: import("@chainsafe/ssz").UintNumberType;
|
|
12529
|
-
|
|
12530
|
-
|
|
12531
|
-
|
|
12532
|
-
|
|
12310
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
12311
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12312
|
+
source: ContainerType<{
|
|
12313
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
12314
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
12315
|
+
}>;
|
|
12316
|
+
target: ContainerType<{
|
|
12317
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
12318
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
12319
|
+
}>;
|
|
12533
12320
|
}>;
|
|
12534
|
-
|
|
12535
|
-
|
|
12536
|
-
|
|
12537
|
-
|
|
12538
|
-
|
|
12539
|
-
|
|
12540
|
-
|
|
12541
|
-
|
|
12542
|
-
|
|
12543
|
-
|
|
12544
|
-
|
|
12545
|
-
|
|
12546
|
-
|
|
12547
|
-
|
|
12548
|
-
|
|
12549
|
-
|
|
12550
|
-
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
12551
|
-
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
12321
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
12322
|
+
}>;
|
|
12323
|
+
IndexedAttestationBigint: ContainerType<{
|
|
12324
|
+
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
12325
|
+
data: ContainerType<{
|
|
12326
|
+
slot: import("@chainsafe/ssz").UintBigintType;
|
|
12327
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
12328
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12329
|
+
source: ContainerType<{
|
|
12330
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
12331
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
12332
|
+
}>;
|
|
12333
|
+
target: ContainerType<{
|
|
12334
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
12335
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
12336
|
+
}>;
|
|
12552
12337
|
}>;
|
|
12553
|
-
|
|
12338
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
12339
|
+
}>;
|
|
12340
|
+
AttesterSlashing: ContainerType<{
|
|
12341
|
+
attestation1: ContainerType<{
|
|
12342
|
+
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
12343
|
+
data: ContainerType<{
|
|
12344
|
+
slot: import("@chainsafe/ssz").UintBigintType;
|
|
12345
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
12346
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12347
|
+
source: ContainerType<{
|
|
12348
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
12349
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
12350
|
+
}>;
|
|
12351
|
+
target: ContainerType<{
|
|
12352
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
12353
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
12354
|
+
}>;
|
|
12355
|
+
}>;
|
|
12356
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
12357
|
+
}>;
|
|
12358
|
+
attestation2: ContainerType<{
|
|
12359
|
+
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
12360
|
+
data: ContainerType<{
|
|
12361
|
+
slot: import("@chainsafe/ssz").UintBigintType;
|
|
12362
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
12363
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12364
|
+
source: ContainerType<{
|
|
12365
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
12366
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
12367
|
+
}>;
|
|
12368
|
+
target: ContainerType<{
|
|
12369
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
12370
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
12371
|
+
}>;
|
|
12372
|
+
}>;
|
|
12373
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
12374
|
+
}>;
|
|
12375
|
+
}>;
|
|
12376
|
+
AggregateAndProof: ContainerType<{
|
|
12377
|
+
aggregatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
12378
|
+
aggregate: ContainerType<{
|
|
12379
|
+
aggregationBits: import("@chainsafe/ssz").BitListType;
|
|
12380
|
+
data: ContainerType<{
|
|
12381
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
12382
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
12383
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12384
|
+
source: ContainerType<{
|
|
12385
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
12386
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
12387
|
+
}>;
|
|
12388
|
+
target: ContainerType<{
|
|
12389
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
12390
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
12391
|
+
}>;
|
|
12392
|
+
}>;
|
|
12393
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
12394
|
+
committeeBits: import("@chainsafe/ssz").BitVectorType;
|
|
12395
|
+
}>;
|
|
12396
|
+
selectionProof: import("@chainsafe/ssz").ByteVectorType;
|
|
12397
|
+
}>;
|
|
12398
|
+
SignedAggregateAndProof: ContainerType<{
|
|
12399
|
+
message: ContainerType<{
|
|
12400
|
+
aggregatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
12401
|
+
aggregate: ContainerType<{
|
|
12402
|
+
aggregationBits: import("@chainsafe/ssz").BitListType;
|
|
12403
|
+
data: ContainerType<{
|
|
12404
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
12405
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
12406
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12407
|
+
source: ContainerType<{
|
|
12408
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
12409
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
12410
|
+
}>;
|
|
12411
|
+
target: ContainerType<{
|
|
12412
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
12413
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
12414
|
+
}>;
|
|
12415
|
+
}>;
|
|
12416
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
12417
|
+
committeeBits: import("@chainsafe/ssz").BitVectorType;
|
|
12418
|
+
}>;
|
|
12419
|
+
selectionProof: import("@chainsafe/ssz").ByteVectorType;
|
|
12420
|
+
}>;
|
|
12421
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
12422
|
+
}>;
|
|
12423
|
+
DepositRequest: ContainerType<{
|
|
12424
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
12425
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
12426
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
12427
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
12428
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
12429
|
+
}>;
|
|
12430
|
+
DepositRequests: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
12431
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
12432
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
12433
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
12434
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
12435
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
12436
|
+
}>>;
|
|
12437
|
+
WithdrawalRequest: ContainerType<{
|
|
12438
|
+
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
12439
|
+
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
12440
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
12441
|
+
}>;
|
|
12442
|
+
WithdrawalRequests: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
12443
|
+
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
12444
|
+
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
12445
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
12446
|
+
}>>;
|
|
12447
|
+
ConsolidationRequest: ContainerType<{
|
|
12448
|
+
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
12449
|
+
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
12450
|
+
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
12451
|
+
}>;
|
|
12452
|
+
ConsolidationRequests: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
12453
|
+
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
12454
|
+
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
12455
|
+
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
12456
|
+
}>>;
|
|
12457
|
+
ExecutionRequests: ContainerType<{
|
|
12458
|
+
deposits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
12459
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
12460
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
12461
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
12462
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
12463
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
12464
|
+
}>>;
|
|
12465
|
+
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
12466
|
+
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
12467
|
+
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
12468
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
12469
|
+
}>>;
|
|
12470
|
+
consolidations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
12471
|
+
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
12472
|
+
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
12473
|
+
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
12474
|
+
}>>;
|
|
12475
|
+
}>;
|
|
12476
|
+
PendingDeposit: ContainerType<{
|
|
12477
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
12478
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
12479
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
12480
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
12481
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
12482
|
+
}>;
|
|
12483
|
+
PendingDeposits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
12484
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
12485
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
12486
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
12487
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
12488
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
12489
|
+
}>>;
|
|
12490
|
+
PendingPartialWithdrawal: ContainerType<{
|
|
12491
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
12492
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
12493
|
+
withdrawableEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
12494
|
+
}>;
|
|
12495
|
+
PendingPartialWithdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
12496
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
12497
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
12498
|
+
withdrawableEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
12499
|
+
}>>;
|
|
12500
|
+
PendingConsolidation: ContainerType<{
|
|
12501
|
+
sourceIndex: import("@chainsafe/ssz").UintNumberType;
|
|
12502
|
+
targetIndex: import("@chainsafe/ssz").UintNumberType;
|
|
12503
|
+
}>;
|
|
12504
|
+
PendingConsolidations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
12505
|
+
sourceIndex: import("@chainsafe/ssz").UintNumberType;
|
|
12506
|
+
targetIndex: import("@chainsafe/ssz").UintNumberType;
|
|
12507
|
+
}>>;
|
|
12508
|
+
PayloadAttributes: ContainerType<{
|
|
12509
|
+
parentBeaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12510
|
+
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
12511
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
12512
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
12513
|
+
address: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
12514
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
12515
|
+
}>>;
|
|
12516
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
12517
|
+
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
12518
|
+
suggestedFeeRecipient: import("./index.js").StringType<string>;
|
|
12519
|
+
}>;
|
|
12520
|
+
G1Point: import("@chainsafe/ssz").ByteVectorType;
|
|
12521
|
+
G2Point: import("@chainsafe/ssz").ByteVectorType;
|
|
12522
|
+
BLSFieldElement: import("@chainsafe/ssz").ByteVectorType;
|
|
12523
|
+
KZGCommitment: import("@chainsafe/ssz").ByteVectorType;
|
|
12524
|
+
Blobs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
12525
|
+
BlindedBlob: import("@chainsafe/ssz").ByteVectorType;
|
|
12526
|
+
BlindedBlobs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
12527
|
+
VersionedHash: import("@chainsafe/ssz").ByteVectorType;
|
|
12528
|
+
BlobKzgCommitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
12529
|
+
BlobSidecarsByRangeRequest: ContainerType<{
|
|
12530
|
+
startSlot: import("@chainsafe/ssz").UintNumberType;
|
|
12531
|
+
count: import("@chainsafe/ssz").UintNumberType;
|
|
12532
|
+
}>;
|
|
12533
|
+
BlobIdentifier: ContainerType<{
|
|
12534
|
+
blockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12535
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
12554
12536
|
}>;
|
|
12537
|
+
KzgCommitmentInclusionProof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
12538
|
+
BlobSidecars: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
12539
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
12540
|
+
blob: import("@chainsafe/ssz").ByteVectorType;
|
|
12541
|
+
kzgCommitment: import("@chainsafe/ssz").ByteVectorType;
|
|
12542
|
+
kzgProof: import("@chainsafe/ssz").ByteVectorType;
|
|
12543
|
+
signedBlockHeader: ContainerType<{
|
|
12544
|
+
message: ContainerType<{
|
|
12545
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
12546
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
12547
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12548
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12549
|
+
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12550
|
+
}>;
|
|
12551
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
12552
|
+
}>;
|
|
12553
|
+
kzgCommitmentInclusionProof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
12554
|
+
}>>;
|
|
12555
12555
|
Withdrawal: ContainerType<{
|
|
12556
12556
|
index: import("@chainsafe/ssz").UintNumberType;
|
|
12557
12557
|
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -23188,6 +23188,8 @@ export declare const electra: {
|
|
|
23188
23188
|
}>;
|
|
23189
23189
|
};
|
|
23190
23190
|
export declare const fulu: {
|
|
23191
|
+
KZGProof: import("@chainsafe/ssz").ByteVectorType;
|
|
23192
|
+
Blob: import("@chainsafe/ssz").ByteVectorType;
|
|
23191
23193
|
Metadata: ContainerType<{
|
|
23192
23194
|
custodyGroupCount: import("@chainsafe/ssz").UintNumberType;
|
|
23193
23195
|
seqNumber: import("@chainsafe/ssz").UintBigintType;
|
|
@@ -23198,6 +23200,7 @@ export declare const fulu: {
|
|
|
23198
23200
|
DataColumn: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
23199
23201
|
ExtendedMatrix: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
23200
23202
|
KzgCommitmentsInclusionProof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
23203
|
+
KZGProofs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
23201
23204
|
DataColumnSidecar: ContainerType<{
|
|
23202
23205
|
index: import("@chainsafe/ssz").UintNumberType;
|
|
23203
23206
|
column: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
@@ -23238,233 +23241,29 @@ export declare const fulu: {
|
|
|
23238
23241
|
columnIndex: import("@chainsafe/ssz").UintNumberType;
|
|
23239
23242
|
rowIndex: import("@chainsafe/ssz").UintNumberType;
|
|
23240
23243
|
}>;
|
|
23241
|
-
|
|
23244
|
+
DataColumnsByRootIdentifier: ContainerType<{
|
|
23242
23245
|
blockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23243
|
-
|
|
23246
|
+
columns: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
23244
23247
|
}>;
|
|
23245
23248
|
DataColumnSidecarsByRootRequest: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
23246
23249
|
blockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23247
|
-
|
|
23250
|
+
columns: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
23248
23251
|
}>>;
|
|
23249
23252
|
DataColumnSidecarsByRangeRequest: ContainerType<{
|
|
23250
23253
|
startSlot: import("@chainsafe/ssz").UintNumberType;
|
|
23251
23254
|
count: import("@chainsafe/ssz").UintNumberType;
|
|
23252
23255
|
columns: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
23253
23256
|
}>;
|
|
23254
|
-
|
|
23255
|
-
|
|
23256
|
-
|
|
23257
|
-
Attestation: ContainerType<{
|
|
23258
|
-
aggregationBits: import("@chainsafe/ssz").BitListType;
|
|
23259
|
-
data: ContainerType<{
|
|
23260
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
23261
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
23262
|
-
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23263
|
-
source: ContainerType<{
|
|
23264
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
23265
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
23266
|
-
}>;
|
|
23267
|
-
target: ContainerType<{
|
|
23268
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
23269
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
23270
|
-
}>;
|
|
23271
|
-
}>;
|
|
23272
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
23273
|
-
committeeBits: import("@chainsafe/ssz").BitVectorType;
|
|
23274
|
-
}>;
|
|
23275
|
-
SingleAttestation: ContainerType<{
|
|
23276
|
-
committeeIndex: import("@chainsafe/ssz").UintNumberType;
|
|
23277
|
-
attesterIndex: import("@chainsafe/ssz").UintNumberType;
|
|
23278
|
-
data: ContainerType<{
|
|
23279
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
23280
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
23281
|
-
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23282
|
-
source: ContainerType<{
|
|
23283
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
23284
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
23285
|
-
}>;
|
|
23286
|
-
target: ContainerType<{
|
|
23287
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
23288
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
23289
|
-
}>;
|
|
23290
|
-
}>;
|
|
23291
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
23292
|
-
}>;
|
|
23293
|
-
IndexedAttestation: ContainerType<{
|
|
23294
|
-
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
23295
|
-
data: ContainerType<{
|
|
23296
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
23297
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
23298
|
-
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23299
|
-
source: ContainerType<{
|
|
23300
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
23301
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
23302
|
-
}>;
|
|
23303
|
-
target: ContainerType<{
|
|
23304
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
23305
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
23306
|
-
}>;
|
|
23307
|
-
}>;
|
|
23308
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
23309
|
-
}>;
|
|
23310
|
-
IndexedAttestationBigint: ContainerType<{
|
|
23311
|
-
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
23312
|
-
data: ContainerType<{
|
|
23313
|
-
slot: import("@chainsafe/ssz").UintBigintType;
|
|
23314
|
-
index: import("@chainsafe/ssz").UintBigintType;
|
|
23315
|
-
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23316
|
-
source: ContainerType<{
|
|
23317
|
-
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
23318
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
23319
|
-
}>;
|
|
23320
|
-
target: ContainerType<{
|
|
23321
|
-
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
23322
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
23323
|
-
}>;
|
|
23324
|
-
}>;
|
|
23325
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
23326
|
-
}>;
|
|
23327
|
-
AttesterSlashing: ContainerType<{
|
|
23328
|
-
attestation1: ContainerType<{
|
|
23329
|
-
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
23330
|
-
data: ContainerType<{
|
|
23331
|
-
slot: import("@chainsafe/ssz").UintBigintType;
|
|
23332
|
-
index: import("@chainsafe/ssz").UintBigintType;
|
|
23333
|
-
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23334
|
-
source: ContainerType<{
|
|
23335
|
-
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
23336
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
23337
|
-
}>;
|
|
23338
|
-
target: ContainerType<{
|
|
23339
|
-
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
23340
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
23341
|
-
}>;
|
|
23342
|
-
}>;
|
|
23343
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
23344
|
-
}>;
|
|
23345
|
-
attestation2: ContainerType<{
|
|
23346
|
-
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
23347
|
-
data: ContainerType<{
|
|
23348
|
-
slot: import("@chainsafe/ssz").UintBigintType;
|
|
23349
|
-
index: import("@chainsafe/ssz").UintBigintType;
|
|
23350
|
-
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23351
|
-
source: ContainerType<{
|
|
23352
|
-
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
23353
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
23354
|
-
}>;
|
|
23355
|
-
target: ContainerType<{
|
|
23356
|
-
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
23357
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
23358
|
-
}>;
|
|
23359
|
-
}>;
|
|
23360
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
23361
|
-
}>;
|
|
23362
|
-
}>;
|
|
23363
|
-
AggregateAndProof: ContainerType<{
|
|
23364
|
-
aggregatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
23365
|
-
aggregate: ContainerType<{
|
|
23366
|
-
aggregationBits: import("@chainsafe/ssz").BitListType;
|
|
23367
|
-
data: ContainerType<{
|
|
23368
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
23369
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
23370
|
-
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23371
|
-
source: ContainerType<{
|
|
23372
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
23373
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
23374
|
-
}>;
|
|
23375
|
-
target: ContainerType<{
|
|
23376
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
23377
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
23378
|
-
}>;
|
|
23379
|
-
}>;
|
|
23380
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
23381
|
-
committeeBits: import("@chainsafe/ssz").BitVectorType;
|
|
23382
|
-
}>;
|
|
23383
|
-
selectionProof: import("@chainsafe/ssz").ByteVectorType;
|
|
23384
|
-
}>;
|
|
23385
|
-
SignedAggregateAndProof: ContainerType<{
|
|
23386
|
-
message: ContainerType<{
|
|
23387
|
-
aggregatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
23388
|
-
aggregate: ContainerType<{
|
|
23389
|
-
aggregationBits: import("@chainsafe/ssz").BitListType;
|
|
23390
|
-
data: ContainerType<{
|
|
23391
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
23392
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
23393
|
-
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23394
|
-
source: ContainerType<{
|
|
23395
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
23396
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
23397
|
-
}>;
|
|
23398
|
-
target: ContainerType<{
|
|
23399
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
23400
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
23401
|
-
}>;
|
|
23402
|
-
}>;
|
|
23403
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
23404
|
-
committeeBits: import("@chainsafe/ssz").BitVectorType;
|
|
23405
|
-
}>;
|
|
23406
|
-
selectionProof: import("@chainsafe/ssz").ByteVectorType;
|
|
23407
|
-
}>;
|
|
23408
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
23409
|
-
}>;
|
|
23410
|
-
DepositRequest: ContainerType<{
|
|
23411
|
-
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
23412
|
-
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
23413
|
-
amount: import("@chainsafe/ssz").UintNumberType;
|
|
23414
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
23415
|
-
index: import("@chainsafe/ssz").UintBigintType;
|
|
23416
|
-
}>;
|
|
23417
|
-
DepositRequests: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
23418
|
-
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
23419
|
-
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
23420
|
-
amount: import("@chainsafe/ssz").UintNumberType;
|
|
23421
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
23422
|
-
index: import("@chainsafe/ssz").UintBigintType;
|
|
23423
|
-
}>>;
|
|
23424
|
-
WithdrawalRequest: ContainerType<{
|
|
23425
|
-
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
23426
|
-
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
23427
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
23428
|
-
}>;
|
|
23429
|
-
WithdrawalRequests: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
23430
|
-
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
23431
|
-
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
23432
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
23433
|
-
}>>;
|
|
23434
|
-
ConsolidationRequest: ContainerType<{
|
|
23435
|
-
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
23436
|
-
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
23437
|
-
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
23438
|
-
}>;
|
|
23439
|
-
ConsolidationRequests: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
23440
|
-
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
23441
|
-
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
23442
|
-
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
23443
|
-
}>>;
|
|
23444
|
-
ExecutionRequests: ContainerType<{
|
|
23445
|
-
deposits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
23446
|
-
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
23447
|
-
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
23448
|
-
amount: import("@chainsafe/ssz").UintNumberType;
|
|
23449
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
23450
|
-
index: import("@chainsafe/ssz").UintBigintType;
|
|
23451
|
-
}>>;
|
|
23257
|
+
ExecutionPayload: ContainerType<{
|
|
23258
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
23259
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
23452
23260
|
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
23453
|
-
|
|
23454
|
-
|
|
23261
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
23262
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
23263
|
+
address: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
23455
23264
|
amount: import("@chainsafe/ssz").UintBigintType;
|
|
23456
23265
|
}>>;
|
|
23457
|
-
|
|
23458
|
-
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
23459
|
-
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
23460
|
-
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
23461
|
-
}>>;
|
|
23462
|
-
}>;
|
|
23463
|
-
ExecutionPayloadHeader: ContainerType<{
|
|
23464
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
23465
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
23466
|
-
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23467
|
-
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23266
|
+
transactions: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
23468
23267
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
23469
23268
|
feeRecipient: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
23470
23269
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -23479,16 +23278,11 @@ export declare const fulu: {
|
|
|
23479
23278
|
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
23480
23279
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
23481
23280
|
}>;
|
|
23482
|
-
|
|
23281
|
+
ExecutionPayloadHeader: ContainerType<{
|
|
23483
23282
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
23484
23283
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
23485
|
-
|
|
23486
|
-
|
|
23487
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
23488
|
-
address: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
23489
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
23490
|
-
}>>;
|
|
23491
|
-
transactions: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
23284
|
+
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23285
|
+
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23492
23286
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
23493
23287
|
feeRecipient: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
23494
23288
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -23989,6 +23783,28 @@ export declare const fulu: {
|
|
|
23989
23783
|
}>;
|
|
23990
23784
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
23991
23785
|
}>;
|
|
23786
|
+
BlobSidecar: ContainerType<{
|
|
23787
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
23788
|
+
blob: import("@chainsafe/ssz").ByteVectorType;
|
|
23789
|
+
kzgCommitment: import("@chainsafe/ssz").ByteVectorType;
|
|
23790
|
+
kzgProof: import("@chainsafe/ssz").ByteVectorType;
|
|
23791
|
+
signedBlockHeader: ContainerType<{
|
|
23792
|
+
message: ContainerType<{
|
|
23793
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
23794
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
23795
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23796
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23797
|
+
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23798
|
+
}>;
|
|
23799
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
23800
|
+
}>;
|
|
23801
|
+
kzgCommitmentInclusionProof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
23802
|
+
}>;
|
|
23803
|
+
BlobsBundle: ContainerType<{
|
|
23804
|
+
commitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
23805
|
+
proofs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
23806
|
+
blobs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
23807
|
+
}>;
|
|
23992
23808
|
BlindedBeaconBlockBody: ContainerType<{
|
|
23993
23809
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
23994
23810
|
eth1Data: ContainerType<{
|
|
@@ -24549,38 +24365,37 @@ export declare const fulu: {
|
|
|
24549
24365
|
}>;
|
|
24550
24366
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
24551
24367
|
}>;
|
|
24552
|
-
|
|
24553
|
-
|
|
24554
|
-
|
|
24555
|
-
|
|
24556
|
-
|
|
24557
|
-
|
|
24558
|
-
|
|
24559
|
-
|
|
24560
|
-
|
|
24561
|
-
|
|
24562
|
-
|
|
24563
|
-
|
|
24564
|
-
|
|
24565
|
-
|
|
24566
|
-
|
|
24567
|
-
|
|
24568
|
-
|
|
24569
|
-
|
|
24570
|
-
|
|
24571
|
-
|
|
24572
|
-
|
|
24573
|
-
|
|
24574
|
-
|
|
24575
|
-
|
|
24576
|
-
|
|
24577
|
-
|
|
24578
|
-
|
|
24368
|
+
ExecutionPayloadAndBlobsBundle: ContainerType<{
|
|
24369
|
+
executionPayload: ContainerType<{
|
|
24370
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
24371
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
24372
|
+
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
24373
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
24374
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
24375
|
+
address: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
24376
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
24377
|
+
}>>;
|
|
24378
|
+
transactions: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
24379
|
+
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
24380
|
+
feeRecipient: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
24381
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
24382
|
+
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
24383
|
+
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
24384
|
+
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
24385
|
+
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
24386
|
+
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
24387
|
+
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
24388
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
24389
|
+
extraData: import("@chainsafe/ssz").ByteListType;
|
|
24390
|
+
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
24391
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
24392
|
+
}>;
|
|
24393
|
+
blobsBundle: ContainerType<{
|
|
24394
|
+
commitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
24395
|
+
proofs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
24396
|
+
blobs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
24397
|
+
}>;
|
|
24579
24398
|
}>;
|
|
24580
|
-
PendingConsolidations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
24581
|
-
sourceIndex: import("@chainsafe/ssz").UintNumberType;
|
|
24582
|
-
targetIndex: import("@chainsafe/ssz").UintNumberType;
|
|
24583
|
-
}>>;
|
|
24584
24399
|
BeaconState: ContainerType<{
|
|
24585
24400
|
genesisTime: import("@chainsafe/ssz").UintNumberType;
|
|
24586
24401
|
genesisValidatorsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -24687,6 +24502,35 @@ export declare const fulu: {
|
|
|
24687
24502
|
targetIndex: import("@chainsafe/ssz").UintNumberType;
|
|
24688
24503
|
}>>;
|
|
24689
24504
|
}>;
|
|
24505
|
+
LightClientHeader: ContainerType<{
|
|
24506
|
+
beacon: ContainerType<{
|
|
24507
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
24508
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
24509
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
24510
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
24511
|
+
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
24512
|
+
}>;
|
|
24513
|
+
execution: ContainerType<{
|
|
24514
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
24515
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
24516
|
+
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
24517
|
+
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
24518
|
+
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
24519
|
+
feeRecipient: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
24520
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
24521
|
+
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
24522
|
+
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
24523
|
+
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
24524
|
+
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
24525
|
+
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
24526
|
+
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
24527
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
24528
|
+
extraData: import("@chainsafe/ssz").ByteListType;
|
|
24529
|
+
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
24530
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
24531
|
+
}>;
|
|
24532
|
+
executionBranch: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
24533
|
+
}>;
|
|
24690
24534
|
LightClientBootstrap: ContainerType<{
|
|
24691
24535
|
header: ContainerType<{
|
|
24692
24536
|
beacon: ContainerType<{
|
|
@@ -25005,18 +24849,6 @@ export declare const fulu: {
|
|
|
25005
24849
|
signatureSlot: import("@chainsafe/ssz").UintNumberType;
|
|
25006
24850
|
}>>;
|
|
25007
24851
|
}>;
|
|
25008
|
-
PayloadAttributes: ContainerType<{
|
|
25009
|
-
parentBeaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
25010
|
-
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
25011
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
25012
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
25013
|
-
address: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
25014
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
25015
|
-
}>>;
|
|
25016
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
25017
|
-
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
25018
|
-
suggestedFeeRecipient: import("./index.js").StringType<string>;
|
|
25019
|
-
}>;
|
|
25020
24852
|
SSEPayloadAttributes: ContainerType<{
|
|
25021
24853
|
payloadAttributes: ContainerType<{
|
|
25022
24854
|
parentBeaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -25373,18 +25205,268 @@ export declare const fulu: {
|
|
|
25373
25205
|
kzgProofs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
25374
25206
|
blobs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
25375
25207
|
}>;
|
|
25208
|
+
AggregationBits: import("@chainsafe/ssz").BitListType;
|
|
25209
|
+
CommitteeBits: import("@chainsafe/ssz").BitVectorType;
|
|
25210
|
+
AttestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
25211
|
+
Attestation: ContainerType<{
|
|
25212
|
+
aggregationBits: import("@chainsafe/ssz").BitListType;
|
|
25213
|
+
data: ContainerType<{
|
|
25214
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
25215
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
25216
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
25217
|
+
source: ContainerType<{
|
|
25218
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
25219
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
25220
|
+
}>;
|
|
25221
|
+
target: ContainerType<{
|
|
25222
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
25223
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
25224
|
+
}>;
|
|
25225
|
+
}>;
|
|
25226
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
25227
|
+
committeeBits: import("@chainsafe/ssz").BitVectorType;
|
|
25228
|
+
}>;
|
|
25229
|
+
SingleAttestation: ContainerType<{
|
|
25230
|
+
committeeIndex: import("@chainsafe/ssz").UintNumberType;
|
|
25231
|
+
attesterIndex: import("@chainsafe/ssz").UintNumberType;
|
|
25232
|
+
data: ContainerType<{
|
|
25233
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
25234
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
25235
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
25236
|
+
source: ContainerType<{
|
|
25237
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
25238
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
25239
|
+
}>;
|
|
25240
|
+
target: ContainerType<{
|
|
25241
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
25242
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
25243
|
+
}>;
|
|
25244
|
+
}>;
|
|
25245
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
25246
|
+
}>;
|
|
25247
|
+
IndexedAttestation: ContainerType<{
|
|
25248
|
+
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
25249
|
+
data: ContainerType<{
|
|
25250
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
25251
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
25252
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
25253
|
+
source: ContainerType<{
|
|
25254
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
25255
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
25256
|
+
}>;
|
|
25257
|
+
target: ContainerType<{
|
|
25258
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
25259
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
25260
|
+
}>;
|
|
25261
|
+
}>;
|
|
25262
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
25263
|
+
}>;
|
|
25264
|
+
IndexedAttestationBigint: ContainerType<{
|
|
25265
|
+
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
25266
|
+
data: ContainerType<{
|
|
25267
|
+
slot: import("@chainsafe/ssz").UintBigintType;
|
|
25268
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
25269
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
25270
|
+
source: ContainerType<{
|
|
25271
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
25272
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
25273
|
+
}>;
|
|
25274
|
+
target: ContainerType<{
|
|
25275
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
25276
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
25277
|
+
}>;
|
|
25278
|
+
}>;
|
|
25279
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
25280
|
+
}>;
|
|
25281
|
+
AttesterSlashing: ContainerType<{
|
|
25282
|
+
attestation1: ContainerType<{
|
|
25283
|
+
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
25284
|
+
data: ContainerType<{
|
|
25285
|
+
slot: import("@chainsafe/ssz").UintBigintType;
|
|
25286
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
25287
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
25288
|
+
source: ContainerType<{
|
|
25289
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
25290
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
25291
|
+
}>;
|
|
25292
|
+
target: ContainerType<{
|
|
25293
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
25294
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
25295
|
+
}>;
|
|
25296
|
+
}>;
|
|
25297
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
25298
|
+
}>;
|
|
25299
|
+
attestation2: ContainerType<{
|
|
25300
|
+
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
25301
|
+
data: ContainerType<{
|
|
25302
|
+
slot: import("@chainsafe/ssz").UintBigintType;
|
|
25303
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
25304
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
25305
|
+
source: ContainerType<{
|
|
25306
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
25307
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
25308
|
+
}>;
|
|
25309
|
+
target: ContainerType<{
|
|
25310
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
25311
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
25312
|
+
}>;
|
|
25313
|
+
}>;
|
|
25314
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
25315
|
+
}>;
|
|
25316
|
+
}>;
|
|
25317
|
+
AggregateAndProof: ContainerType<{
|
|
25318
|
+
aggregatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
25319
|
+
aggregate: ContainerType<{
|
|
25320
|
+
aggregationBits: import("@chainsafe/ssz").BitListType;
|
|
25321
|
+
data: ContainerType<{
|
|
25322
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
25323
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
25324
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
25325
|
+
source: ContainerType<{
|
|
25326
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
25327
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
25328
|
+
}>;
|
|
25329
|
+
target: ContainerType<{
|
|
25330
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
25331
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
25332
|
+
}>;
|
|
25333
|
+
}>;
|
|
25334
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
25335
|
+
committeeBits: import("@chainsafe/ssz").BitVectorType;
|
|
25336
|
+
}>;
|
|
25337
|
+
selectionProof: import("@chainsafe/ssz").ByteVectorType;
|
|
25338
|
+
}>;
|
|
25339
|
+
SignedAggregateAndProof: ContainerType<{
|
|
25340
|
+
message: ContainerType<{
|
|
25341
|
+
aggregatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
25342
|
+
aggregate: ContainerType<{
|
|
25343
|
+
aggregationBits: import("@chainsafe/ssz").BitListType;
|
|
25344
|
+
data: ContainerType<{
|
|
25345
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
25346
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
25347
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
25348
|
+
source: ContainerType<{
|
|
25349
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
25350
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
25351
|
+
}>;
|
|
25352
|
+
target: ContainerType<{
|
|
25353
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
25354
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
25355
|
+
}>;
|
|
25356
|
+
}>;
|
|
25357
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
25358
|
+
committeeBits: import("@chainsafe/ssz").BitVectorType;
|
|
25359
|
+
}>;
|
|
25360
|
+
selectionProof: import("@chainsafe/ssz").ByteVectorType;
|
|
25361
|
+
}>;
|
|
25362
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
25363
|
+
}>;
|
|
25364
|
+
DepositRequest: ContainerType<{
|
|
25365
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
25366
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
25367
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
25368
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
25369
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
25370
|
+
}>;
|
|
25371
|
+
DepositRequests: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
25372
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
25373
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
25374
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
25375
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
25376
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
25377
|
+
}>>;
|
|
25378
|
+
WithdrawalRequest: ContainerType<{
|
|
25379
|
+
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
25380
|
+
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
25381
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
25382
|
+
}>;
|
|
25383
|
+
WithdrawalRequests: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
25384
|
+
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
25385
|
+
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
25386
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
25387
|
+
}>>;
|
|
25388
|
+
ConsolidationRequest: ContainerType<{
|
|
25389
|
+
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
25390
|
+
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
25391
|
+
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
25392
|
+
}>;
|
|
25393
|
+
ConsolidationRequests: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
25394
|
+
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
25395
|
+
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
25396
|
+
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
25397
|
+
}>>;
|
|
25398
|
+
ExecutionRequests: ContainerType<{
|
|
25399
|
+
deposits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
25400
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
25401
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
25402
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
25403
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
25404
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
25405
|
+
}>>;
|
|
25406
|
+
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
25407
|
+
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
25408
|
+
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
25409
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
25410
|
+
}>>;
|
|
25411
|
+
consolidations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
25412
|
+
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
25413
|
+
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
25414
|
+
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
25415
|
+
}>>;
|
|
25416
|
+
}>;
|
|
25417
|
+
PendingDeposit: ContainerType<{
|
|
25418
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
25419
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
25420
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
25421
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
25422
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
25423
|
+
}>;
|
|
25424
|
+
PendingDeposits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
25425
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
25426
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
25427
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
25428
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
25429
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
25430
|
+
}>>;
|
|
25431
|
+
PendingPartialWithdrawal: ContainerType<{
|
|
25432
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
25433
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
25434
|
+
withdrawableEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
25435
|
+
}>;
|
|
25436
|
+
PendingPartialWithdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
25437
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
25438
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
25439
|
+
withdrawableEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
25440
|
+
}>>;
|
|
25441
|
+
PendingConsolidation: ContainerType<{
|
|
25442
|
+
sourceIndex: import("@chainsafe/ssz").UintNumberType;
|
|
25443
|
+
targetIndex: import("@chainsafe/ssz").UintNumberType;
|
|
25444
|
+
}>;
|
|
25445
|
+
PendingConsolidations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
25446
|
+
sourceIndex: import("@chainsafe/ssz").UintNumberType;
|
|
25447
|
+
targetIndex: import("@chainsafe/ssz").UintNumberType;
|
|
25448
|
+
}>>;
|
|
25449
|
+
PayloadAttributes: ContainerType<{
|
|
25450
|
+
parentBeaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
25451
|
+
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
25452
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
25453
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
25454
|
+
address: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
25455
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
25456
|
+
}>>;
|
|
25457
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
25458
|
+
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
25459
|
+
suggestedFeeRecipient: import("./index.js").StringType<string>;
|
|
25460
|
+
}>;
|
|
25376
25461
|
G1Point: import("@chainsafe/ssz").ByteVectorType;
|
|
25377
25462
|
G2Point: import("@chainsafe/ssz").ByteVectorType;
|
|
25378
25463
|
BLSFieldElement: import("@chainsafe/ssz").ByteVectorType;
|
|
25379
25464
|
KZGCommitment: import("@chainsafe/ssz").ByteVectorType;
|
|
25380
|
-
KZGProof: import("@chainsafe/ssz").ByteVectorType;
|
|
25381
|
-
Blob: import("@chainsafe/ssz").ByteVectorType;
|
|
25382
25465
|
Blobs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
25383
25466
|
BlindedBlob: import("@chainsafe/ssz").ByteVectorType;
|
|
25384
25467
|
BlindedBlobs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
25385
25468
|
VersionedHash: import("@chainsafe/ssz").ByteVectorType;
|
|
25386
25469
|
BlobKzgCommitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
25387
|
-
KZGProofs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
25388
25470
|
BlobSidecarsByRangeRequest: ContainerType<{
|
|
25389
25471
|
startSlot: import("@chainsafe/ssz").UintNumberType;
|
|
25390
25472
|
count: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -25394,23 +25476,6 @@ export declare const fulu: {
|
|
|
25394
25476
|
index: import("@chainsafe/ssz").UintNumberType;
|
|
25395
25477
|
}>;
|
|
25396
25478
|
KzgCommitmentInclusionProof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
25397
|
-
BlobSidecar: ContainerType<{
|
|
25398
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
25399
|
-
blob: import("@chainsafe/ssz").ByteVectorType;
|
|
25400
|
-
kzgCommitment: import("@chainsafe/ssz").ByteVectorType;
|
|
25401
|
-
kzgProof: import("@chainsafe/ssz").ByteVectorType;
|
|
25402
|
-
signedBlockHeader: ContainerType<{
|
|
25403
|
-
message: ContainerType<{
|
|
25404
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
25405
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
25406
|
-
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
25407
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
25408
|
-
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
25409
|
-
}>;
|
|
25410
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
25411
|
-
}>;
|
|
25412
|
-
kzgCommitmentInclusionProof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
25413
|
-
}>;
|
|
25414
25479
|
BlobSidecars: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
25415
25480
|
index: import("@chainsafe/ssz").UintNumberType;
|
|
25416
25481
|
blob: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -25428,71 +25493,6 @@ export declare const fulu: {
|
|
|
25428
25493
|
}>;
|
|
25429
25494
|
kzgCommitmentInclusionProof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
25430
25495
|
}>>;
|
|
25431
|
-
BlobsBundle: ContainerType<{
|
|
25432
|
-
commitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
25433
|
-
proofs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
25434
|
-
blobs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
25435
|
-
}>;
|
|
25436
|
-
ExecutionPayloadAndBlobsBundle: ContainerType<{
|
|
25437
|
-
executionPayload: ContainerType<{
|
|
25438
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
25439
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
25440
|
-
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
25441
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
25442
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
25443
|
-
address: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
25444
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
25445
|
-
}>>;
|
|
25446
|
-
transactions: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
25447
|
-
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
25448
|
-
feeRecipient: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
25449
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
25450
|
-
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
25451
|
-
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
25452
|
-
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
25453
|
-
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
25454
|
-
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
25455
|
-
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
25456
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
25457
|
-
extraData: import("@chainsafe/ssz").ByteListType;
|
|
25458
|
-
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
25459
|
-
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
25460
|
-
}>;
|
|
25461
|
-
blobsBundle: ContainerType<{
|
|
25462
|
-
commitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
25463
|
-
proofs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
25464
|
-
blobs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
25465
|
-
}>;
|
|
25466
|
-
}>;
|
|
25467
|
-
LightClientHeader: ContainerType<{
|
|
25468
|
-
beacon: ContainerType<{
|
|
25469
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
25470
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
25471
|
-
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
25472
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
25473
|
-
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
25474
|
-
}>;
|
|
25475
|
-
execution: ContainerType<{
|
|
25476
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
25477
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
25478
|
-
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
25479
|
-
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
25480
|
-
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
25481
|
-
feeRecipient: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
25482
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
25483
|
-
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
25484
|
-
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
25485
|
-
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
25486
|
-
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
25487
|
-
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
25488
|
-
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
25489
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
25490
|
-
extraData: import("@chainsafe/ssz").ByteListType;
|
|
25491
|
-
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
25492
|
-
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
25493
|
-
}>;
|
|
25494
|
-
executionBranch: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
25495
|
-
}>;
|
|
25496
25496
|
Withdrawal: ContainerType<{
|
|
25497
25497
|
index: import("@chainsafe/ssz").UintNumberType;
|
|
25498
25498
|
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|