@lodestar/types 1.33.0-peerDAS.f124be0a30 → 1.33.0
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 +3 -1859
- package/lib/fulu/sszTypes.js +6 -91
- package/lib/fulu/sszTypes.js.map +1 -1
- package/lib/fulu/types.d.ts +2 -30
- package/lib/sszTypes.d.ts +1585 -1587
- package/lib/types.d.ts +19 -27
- package/package.json +3 -3
package/lib/sszTypes.d.ts
CHANGED
|
@@ -10265,27 +10265,16 @@ declare const typesByFork: {
|
|
|
10265
10265
|
}>;
|
|
10266
10266
|
};
|
|
10267
10267
|
fulu: {
|
|
10268
|
-
KZGProof: import("@chainsafe/ssz").ByteVectorType;
|
|
10269
|
-
Blob: import("@chainsafe/ssz").ByteVectorType;
|
|
10270
10268
|
Metadata: ContainerType<{
|
|
10271
10269
|
custodyGroupCount: import("@chainsafe/ssz").UintNumberType;
|
|
10272
10270
|
seqNumber: import("@chainsafe/ssz").UintBigintType;
|
|
10273
10271
|
attnets: import("@chainsafe/ssz").BitVectorType;
|
|
10274
10272
|
syncnets: import("@chainsafe/ssz").BitVectorType;
|
|
10275
10273
|
}>;
|
|
10276
|
-
Status: ContainerType<{
|
|
10277
|
-
earliestAvailableSlot: import("@chainsafe/ssz").UintNumberType;
|
|
10278
|
-
forkDigest: import("@chainsafe/ssz").ByteVectorType;
|
|
10279
|
-
finalizedRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10280
|
-
finalizedEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
10281
|
-
headRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10282
|
-
headSlot: import("@chainsafe/ssz").UintNumberType;
|
|
10283
|
-
}>;
|
|
10284
10274
|
Cell: import("@chainsafe/ssz").ByteVectorType;
|
|
10285
10275
|
DataColumn: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
10286
10276
|
ExtendedMatrix: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
10287
10277
|
KzgCommitmentsInclusionProof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
10288
|
-
KZGProofs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
10289
10278
|
ProposerLookahead: import("@chainsafe/ssz").VectorBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
10290
10279
|
DataColumnSidecar: ContainerType<{
|
|
10291
10280
|
index: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -10327,176 +10316,83 @@ declare const typesByFork: {
|
|
|
10327
10316
|
columnIndex: import("@chainsafe/ssz").UintNumberType;
|
|
10328
10317
|
rowIndex: import("@chainsafe/ssz").UintNumberType;
|
|
10329
10318
|
}>;
|
|
10330
|
-
|
|
10319
|
+
DataColumnIdentifier: ContainerType<{
|
|
10331
10320
|
blockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10332
|
-
|
|
10321
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
10333
10322
|
}>;
|
|
10334
10323
|
DataColumnSidecarsByRootRequest: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
10335
10324
|
blockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10336
|
-
|
|
10325
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
10337
10326
|
}>>;
|
|
10338
10327
|
DataColumnSidecarsByRangeRequest: ContainerType<{
|
|
10339
10328
|
startSlot: import("@chainsafe/ssz").UintNumberType;
|
|
10340
10329
|
count: import("@chainsafe/ssz").UintNumberType;
|
|
10341
10330
|
columns: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
10342
10331
|
}>;
|
|
10343
|
-
|
|
10344
|
-
|
|
10345
|
-
|
|
10346
|
-
|
|
10347
|
-
|
|
10348
|
-
|
|
10349
|
-
|
|
10350
|
-
|
|
10351
|
-
|
|
10352
|
-
|
|
10353
|
-
|
|
10354
|
-
|
|
10355
|
-
|
|
10356
|
-
|
|
10357
|
-
|
|
10358
|
-
|
|
10359
|
-
|
|
10360
|
-
|
|
10361
|
-
|
|
10362
|
-
|
|
10363
|
-
extraData: import("@chainsafe/ssz").ByteListType;
|
|
10364
|
-
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
10365
|
-
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
10366
|
-
}>;
|
|
10367
|
-
ExecutionPayloadHeader: ContainerType<{
|
|
10368
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
10369
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
10370
|
-
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10371
|
-
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10372
|
-
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
10373
|
-
feeRecipient: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
10374
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10375
|
-
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10376
|
-
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
10377
|
-
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
10378
|
-
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
10379
|
-
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
10380
|
-
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
10381
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
10382
|
-
extraData: import("@chainsafe/ssz").ByteListType;
|
|
10383
|
-
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
10384
|
-
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
10385
|
-
}>;
|
|
10386
|
-
BeaconBlockBody: ContainerType<{
|
|
10387
|
-
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
10332
|
+
BeaconState: ContainerType<{
|
|
10333
|
+
proposerLookahead: import("@chainsafe/ssz").VectorBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
10334
|
+
genesisTime: import("@chainsafe/ssz").UintNumberType;
|
|
10335
|
+
genesisValidatorsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10336
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
10337
|
+
fork: ContainerType<{
|
|
10338
|
+
previousVersion: import("@chainsafe/ssz").ByteVectorType;
|
|
10339
|
+
currentVersion: import("@chainsafe/ssz").ByteVectorType;
|
|
10340
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
10341
|
+
}>;
|
|
10342
|
+
latestBlockHeader: ContainerType<{
|
|
10343
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
10344
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
10345
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10346
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10347
|
+
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10348
|
+
}>;
|
|
10349
|
+
blockRoots: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
10350
|
+
stateRoots: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
10351
|
+
historicalRoots: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
10388
10352
|
eth1Data: ContainerType<{
|
|
10389
10353
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10390
10354
|
depositCount: import("@chainsafe/ssz").UintNumberType;
|
|
10391
10355
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
10392
10356
|
}>;
|
|
10393
|
-
|
|
10394
|
-
|
|
10395
|
-
|
|
10396
|
-
|
|
10397
|
-
slot: import("@chainsafe/ssz").UintBigintType;
|
|
10398
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
10399
|
-
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10400
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10401
|
-
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10402
|
-
}>;
|
|
10403
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
10404
|
-
}>;
|
|
10405
|
-
signedHeader2: ContainerType<{
|
|
10406
|
-
message: ContainerType<{
|
|
10407
|
-
slot: import("@chainsafe/ssz").UintBigintType;
|
|
10408
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
10409
|
-
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10410
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10411
|
-
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10412
|
-
}>;
|
|
10413
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
10414
|
-
}>;
|
|
10415
|
-
}>>;
|
|
10416
|
-
attesterSlashings: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
10417
|
-
attestation1: ContainerType<{
|
|
10418
|
-
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
10419
|
-
data: ContainerType<{
|
|
10420
|
-
slot: import("@chainsafe/ssz").UintBigintType;
|
|
10421
|
-
index: import("@chainsafe/ssz").UintBigintType;
|
|
10422
|
-
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10423
|
-
source: ContainerType<{
|
|
10424
|
-
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
10425
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
10426
|
-
}>;
|
|
10427
|
-
target: ContainerType<{
|
|
10428
|
-
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
10429
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
10430
|
-
}>;
|
|
10431
|
-
}>;
|
|
10432
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
10433
|
-
}>;
|
|
10434
|
-
attestation2: ContainerType<{
|
|
10435
|
-
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
10436
|
-
data: ContainerType<{
|
|
10437
|
-
slot: import("@chainsafe/ssz").UintBigintType;
|
|
10438
|
-
index: import("@chainsafe/ssz").UintBigintType;
|
|
10439
|
-
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10440
|
-
source: ContainerType<{
|
|
10441
|
-
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
10442
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
10443
|
-
}>;
|
|
10444
|
-
target: ContainerType<{
|
|
10445
|
-
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
10446
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
10447
|
-
}>;
|
|
10448
|
-
}>;
|
|
10449
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
10450
|
-
}>;
|
|
10451
|
-
}>>;
|
|
10452
|
-
attestations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
10453
|
-
aggregationBits: import("@chainsafe/ssz").BitListType;
|
|
10454
|
-
data: ContainerType<{
|
|
10455
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
10456
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
10457
|
-
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10458
|
-
source: ContainerType<{
|
|
10459
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
10460
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
10461
|
-
}>;
|
|
10462
|
-
target: ContainerType<{
|
|
10463
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
10464
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
10465
|
-
}>;
|
|
10466
|
-
}>;
|
|
10467
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
10468
|
-
committeeBits: import("@chainsafe/ssz").BitVectorType;
|
|
10469
|
-
}>>;
|
|
10470
|
-
deposits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
10471
|
-
proof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
10472
|
-
data: ContainerType<{
|
|
10473
|
-
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
10474
|
-
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
10475
|
-
amount: import("@chainsafe/ssz").UintNumberType;
|
|
10476
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
10477
|
-
}>;
|
|
10478
|
-
}>>;
|
|
10479
|
-
voluntaryExits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
10480
|
-
message: ContainerType<{
|
|
10481
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
10482
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
10483
|
-
}>;
|
|
10484
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
10357
|
+
eth1DataVotes: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
10358
|
+
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10359
|
+
depositCount: import("@chainsafe/ssz").UintNumberType;
|
|
10360
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
10485
10361
|
}>>;
|
|
10486
|
-
|
|
10487
|
-
|
|
10488
|
-
|
|
10362
|
+
eth1DepositIndex: import("@chainsafe/ssz").UintNumberType;
|
|
10363
|
+
validators: import("@chainsafe/ssz").ListCompositeType<import("./phase0/validator.js").ValidatorNodeStructType>;
|
|
10364
|
+
balances: import("@chainsafe/ssz").ListUintNum64Type;
|
|
10365
|
+
randaoMixes: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
10366
|
+
slashings: import("@chainsafe/ssz").VectorBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
10367
|
+
previousEpochParticipation: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
10368
|
+
currentEpochParticipation: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
10369
|
+
justificationBits: import("@chainsafe/ssz").BitVectorType;
|
|
10370
|
+
previousJustifiedCheckpoint: ContainerType<{
|
|
10371
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
10372
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
10489
10373
|
}>;
|
|
10490
|
-
|
|
10374
|
+
currentJustifiedCheckpoint: ContainerType<{
|
|
10375
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
10376
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
10377
|
+
}>;
|
|
10378
|
+
finalizedCheckpoint: ContainerType<{
|
|
10379
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
10380
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
10381
|
+
}>;
|
|
10382
|
+
inactivityScores: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
10383
|
+
currentSyncCommittee: ContainerType<{
|
|
10384
|
+
pubkeys: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
10385
|
+
aggregatePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
10386
|
+
}>;
|
|
10387
|
+
nextSyncCommittee: ContainerType<{
|
|
10388
|
+
pubkeys: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
10389
|
+
aggregatePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
10390
|
+
}>;
|
|
10391
|
+
latestExecutionPayloadHeader: ContainerType<{
|
|
10491
10392
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
10492
10393
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
10493
|
-
|
|
10494
|
-
|
|
10495
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
10496
|
-
address: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
10497
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
10498
|
-
}>>;
|
|
10499
|
-
transactions: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
10394
|
+
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10395
|
+
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10500
10396
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
10501
10397
|
feeRecipient: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
10502
10398
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -10511,103 +10407,173 @@ declare const typesByFork: {
|
|
|
10511
10407
|
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
10512
10408
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
10513
10409
|
}>;
|
|
10514
|
-
|
|
10515
|
-
|
|
10516
|
-
|
|
10517
|
-
|
|
10518
|
-
|
|
10519
|
-
|
|
10410
|
+
nextWithdrawalIndex: import("@chainsafe/ssz").UintNumberType;
|
|
10411
|
+
nextWithdrawalValidatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
10412
|
+
historicalSummaries: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
10413
|
+
blockSummaryRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10414
|
+
stateSummaryRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10415
|
+
}>>;
|
|
10416
|
+
depositRequestsStartIndex: import("@chainsafe/ssz").UintBigintType;
|
|
10417
|
+
depositBalanceToConsume: import("@chainsafe/ssz").UintBigintType;
|
|
10418
|
+
exitBalanceToConsume: import("@chainsafe/ssz").UintBigintType;
|
|
10419
|
+
earliestExitEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
10420
|
+
consolidationBalanceToConsume: import("@chainsafe/ssz").UintBigintType;
|
|
10421
|
+
earliestConsolidationEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
10422
|
+
pendingDeposits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
10423
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
10424
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
10425
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
10520
10426
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
10427
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
10521
10428
|
}>>;
|
|
10522
|
-
|
|
10523
|
-
|
|
10524
|
-
|
|
10525
|
-
|
|
10526
|
-
|
|
10527
|
-
|
|
10528
|
-
|
|
10529
|
-
|
|
10530
|
-
|
|
10531
|
-
|
|
10532
|
-
|
|
10533
|
-
|
|
10534
|
-
|
|
10535
|
-
|
|
10536
|
-
|
|
10537
|
-
|
|
10538
|
-
|
|
10539
|
-
|
|
10540
|
-
|
|
10429
|
+
pendingPartialWithdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
10430
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
10431
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
10432
|
+
withdrawableEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
10433
|
+
}>>;
|
|
10434
|
+
pendingConsolidations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
10435
|
+
sourceIndex: import("@chainsafe/ssz").UintNumberType;
|
|
10436
|
+
targetIndex: import("@chainsafe/ssz").UintNumberType;
|
|
10437
|
+
}>>;
|
|
10438
|
+
}>;
|
|
10439
|
+
CurrentSyncCommitteeBranch: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
10440
|
+
FinalityBranch: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
10441
|
+
NextSyncCommitteeBranch: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
10442
|
+
AggregationBits: import("@chainsafe/ssz").BitListType;
|
|
10443
|
+
CommitteeBits: import("@chainsafe/ssz").BitVectorType;
|
|
10444
|
+
AttestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
10445
|
+
Attestation: ContainerType<{
|
|
10446
|
+
aggregationBits: import("@chainsafe/ssz").BitListType;
|
|
10447
|
+
data: ContainerType<{
|
|
10448
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
10449
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
10450
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10451
|
+
source: ContainerType<{
|
|
10452
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
10453
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
10454
|
+
}>;
|
|
10455
|
+
target: ContainerType<{
|
|
10456
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
10457
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
10458
|
+
}>;
|
|
10541
10459
|
}>;
|
|
10460
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
10461
|
+
committeeBits: import("@chainsafe/ssz").BitVectorType;
|
|
10542
10462
|
}>;
|
|
10543
|
-
|
|
10544
|
-
|
|
10545
|
-
|
|
10546
|
-
|
|
10547
|
-
|
|
10548
|
-
|
|
10549
|
-
|
|
10463
|
+
SingleAttestation: ContainerType<{
|
|
10464
|
+
committeeIndex: import("@chainsafe/ssz").UintNumberType;
|
|
10465
|
+
attesterIndex: import("@chainsafe/ssz").UintNumberType;
|
|
10466
|
+
data: ContainerType<{
|
|
10467
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
10468
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
10469
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10470
|
+
source: ContainerType<{
|
|
10471
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
10472
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
10550
10473
|
}>;
|
|
10551
|
-
|
|
10552
|
-
|
|
10553
|
-
|
|
10554
|
-
|
|
10555
|
-
|
|
10556
|
-
|
|
10557
|
-
|
|
10558
|
-
|
|
10559
|
-
|
|
10560
|
-
|
|
10561
|
-
|
|
10474
|
+
target: ContainerType<{
|
|
10475
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
10476
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
10477
|
+
}>;
|
|
10478
|
+
}>;
|
|
10479
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
10480
|
+
}>;
|
|
10481
|
+
IndexedAttestation: ContainerType<{
|
|
10482
|
+
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
10483
|
+
data: ContainerType<{
|
|
10484
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
10485
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
10486
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10487
|
+
source: ContainerType<{
|
|
10488
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
10489
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
10490
|
+
}>;
|
|
10491
|
+
target: ContainerType<{
|
|
10492
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
10493
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
10494
|
+
}>;
|
|
10495
|
+
}>;
|
|
10496
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
10497
|
+
}>;
|
|
10498
|
+
IndexedAttestationBigint: ContainerType<{
|
|
10499
|
+
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
10500
|
+
data: ContainerType<{
|
|
10501
|
+
slot: import("@chainsafe/ssz").UintBigintType;
|
|
10502
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
10503
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10504
|
+
source: ContainerType<{
|
|
10505
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
10506
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
10507
|
+
}>;
|
|
10508
|
+
target: ContainerType<{
|
|
10509
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
10510
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
10511
|
+
}>;
|
|
10512
|
+
}>;
|
|
10513
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
10514
|
+
}>;
|
|
10515
|
+
AttesterSlashing: ContainerType<{
|
|
10516
|
+
attestation1: ContainerType<{
|
|
10517
|
+
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
10518
|
+
data: ContainerType<{
|
|
10519
|
+
slot: import("@chainsafe/ssz").UintBigintType;
|
|
10520
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
10521
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10522
|
+
source: ContainerType<{
|
|
10523
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
10524
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
10562
10525
|
}>;
|
|
10563
|
-
|
|
10564
|
-
|
|
10565
|
-
|
|
10566
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
10567
|
-
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10568
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10569
|
-
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10570
|
-
}>;
|
|
10571
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
10526
|
+
target: ContainerType<{
|
|
10527
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
10528
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
10572
10529
|
}>;
|
|
10573
|
-
}
|
|
10574
|
-
|
|
10575
|
-
|
|
10576
|
-
|
|
10577
|
-
|
|
10578
|
-
|
|
10579
|
-
|
|
10580
|
-
|
|
10581
|
-
|
|
10582
|
-
|
|
10583
|
-
|
|
10584
|
-
|
|
10585
|
-
target: ContainerType<{
|
|
10586
|
-
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
10587
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
10588
|
-
}>;
|
|
10589
|
-
}>;
|
|
10590
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
10530
|
+
}>;
|
|
10531
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
10532
|
+
}>;
|
|
10533
|
+
attestation2: ContainerType<{
|
|
10534
|
+
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
10535
|
+
data: ContainerType<{
|
|
10536
|
+
slot: import("@chainsafe/ssz").UintBigintType;
|
|
10537
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
10538
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10539
|
+
source: ContainerType<{
|
|
10540
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
10541
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
10591
10542
|
}>;
|
|
10592
|
-
|
|
10593
|
-
|
|
10594
|
-
|
|
10595
|
-
slot: import("@chainsafe/ssz").UintBigintType;
|
|
10596
|
-
index: import("@chainsafe/ssz").UintBigintType;
|
|
10597
|
-
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10598
|
-
source: ContainerType<{
|
|
10599
|
-
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
10600
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
10601
|
-
}>;
|
|
10602
|
-
target: ContainerType<{
|
|
10603
|
-
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
10604
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
10605
|
-
}>;
|
|
10606
|
-
}>;
|
|
10607
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
10543
|
+
target: ContainerType<{
|
|
10544
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
10545
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
10608
10546
|
}>;
|
|
10609
|
-
}
|
|
10610
|
-
|
|
10547
|
+
}>;
|
|
10548
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
10549
|
+
}>;
|
|
10550
|
+
}>;
|
|
10551
|
+
AggregateAndProof: ContainerType<{
|
|
10552
|
+
aggregatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
10553
|
+
aggregate: ContainerType<{
|
|
10554
|
+
aggregationBits: import("@chainsafe/ssz").BitListType;
|
|
10555
|
+
data: ContainerType<{
|
|
10556
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
10557
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
10558
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10559
|
+
source: ContainerType<{
|
|
10560
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
10561
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
10562
|
+
}>;
|
|
10563
|
+
target: ContainerType<{
|
|
10564
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
10565
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
10566
|
+
}>;
|
|
10567
|
+
}>;
|
|
10568
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
10569
|
+
committeeBits: import("@chainsafe/ssz").BitVectorType;
|
|
10570
|
+
}>;
|
|
10571
|
+
selectionProof: import("@chainsafe/ssz").ByteVectorType;
|
|
10572
|
+
}>;
|
|
10573
|
+
SignedAggregateAndProof: ContainerType<{
|
|
10574
|
+
message: ContainerType<{
|
|
10575
|
+
aggregatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
10576
|
+
aggregate: ContainerType<{
|
|
10611
10577
|
aggregationBits: import("@chainsafe/ssz").BitListType;
|
|
10612
10578
|
data: ContainerType<{
|
|
10613
10579
|
slot: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -10624,56 +10590,398 @@ declare const typesByFork: {
|
|
|
10624
10590
|
}>;
|
|
10625
10591
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
10626
10592
|
committeeBits: import("@chainsafe/ssz").BitVectorType;
|
|
10627
|
-
}>>;
|
|
10628
|
-
deposits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
10629
|
-
proof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
10630
|
-
data: ContainerType<{
|
|
10631
|
-
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
10632
|
-
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
10633
|
-
amount: import("@chainsafe/ssz").UintNumberType;
|
|
10634
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
10635
|
-
}>;
|
|
10636
|
-
}>>;
|
|
10637
|
-
voluntaryExits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
10638
|
-
message: ContainerType<{
|
|
10639
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
10640
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
10641
|
-
}>;
|
|
10642
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
10643
|
-
}>>;
|
|
10644
|
-
syncAggregate: ContainerType<{
|
|
10645
|
-
syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
|
|
10646
|
-
syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
|
|
10647
|
-
}>;
|
|
10648
|
-
executionPayload: ContainerType<{
|
|
10649
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
10650
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
10651
|
-
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
10652
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
10653
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
10654
|
-
address: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
10655
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
10656
|
-
}>>;
|
|
10657
|
-
transactions: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
10658
|
-
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
10659
|
-
feeRecipient: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
10660
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10661
|
-
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10662
|
-
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
10663
|
-
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
10664
|
-
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
10665
|
-
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
10666
|
-
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
10667
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
10668
|
-
extraData: import("@chainsafe/ssz").ByteListType;
|
|
10669
|
-
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
10670
|
-
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
10671
10593
|
}>;
|
|
10672
|
-
|
|
10673
|
-
|
|
10674
|
-
|
|
10675
|
-
|
|
10676
|
-
|
|
10594
|
+
selectionProof: import("@chainsafe/ssz").ByteVectorType;
|
|
10595
|
+
}>;
|
|
10596
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
10597
|
+
}>;
|
|
10598
|
+
DepositRequest: ContainerType<{
|
|
10599
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
10600
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
10601
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
10602
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
10603
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
10604
|
+
}>;
|
|
10605
|
+
DepositRequests: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
10606
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
10607
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
10608
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
10609
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
10610
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
10611
|
+
}>>;
|
|
10612
|
+
WithdrawalRequest: ContainerType<{
|
|
10613
|
+
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
10614
|
+
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
10615
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
10616
|
+
}>;
|
|
10617
|
+
WithdrawalRequests: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
10618
|
+
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
10619
|
+
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
10620
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
10621
|
+
}>>;
|
|
10622
|
+
ConsolidationRequest: ContainerType<{
|
|
10623
|
+
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
10624
|
+
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
10625
|
+
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
10626
|
+
}>;
|
|
10627
|
+
ConsolidationRequests: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
10628
|
+
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
10629
|
+
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
10630
|
+
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
10631
|
+
}>>;
|
|
10632
|
+
ExecutionRequests: ContainerType<{
|
|
10633
|
+
deposits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
10634
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
10635
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
10636
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
10637
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
10638
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
10639
|
+
}>>;
|
|
10640
|
+
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
10641
|
+
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
10642
|
+
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
10643
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
10644
|
+
}>>;
|
|
10645
|
+
consolidations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
10646
|
+
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
10647
|
+
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
10648
|
+
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
10649
|
+
}>>;
|
|
10650
|
+
}>;
|
|
10651
|
+
ExecutionPayloadHeader: ContainerType<{
|
|
10652
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
10653
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
10654
|
+
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10655
|
+
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10656
|
+
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
10657
|
+
feeRecipient: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
10658
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10659
|
+
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10660
|
+
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
10661
|
+
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
10662
|
+
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
10663
|
+
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
10664
|
+
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
10665
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
10666
|
+
extraData: import("@chainsafe/ssz").ByteListType;
|
|
10667
|
+
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
10668
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
10669
|
+
}>;
|
|
10670
|
+
ExecutionPayload: ContainerType<{
|
|
10671
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
10672
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
10673
|
+
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
10674
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
10675
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
10676
|
+
address: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
10677
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
10678
|
+
}>>;
|
|
10679
|
+
transactions: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
10680
|
+
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
10681
|
+
feeRecipient: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
10682
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10683
|
+
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10684
|
+
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
10685
|
+
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
10686
|
+
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
10687
|
+
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
10688
|
+
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
10689
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
10690
|
+
extraData: import("@chainsafe/ssz").ByteListType;
|
|
10691
|
+
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
10692
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
10693
|
+
}>;
|
|
10694
|
+
BeaconBlockBody: ContainerType<{
|
|
10695
|
+
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
10696
|
+
eth1Data: ContainerType<{
|
|
10697
|
+
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10698
|
+
depositCount: import("@chainsafe/ssz").UintNumberType;
|
|
10699
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
10700
|
+
}>;
|
|
10701
|
+
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
10702
|
+
proposerSlashings: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
10703
|
+
signedHeader1: ContainerType<{
|
|
10704
|
+
message: ContainerType<{
|
|
10705
|
+
slot: import("@chainsafe/ssz").UintBigintType;
|
|
10706
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
10707
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10708
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10709
|
+
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10710
|
+
}>;
|
|
10711
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
10712
|
+
}>;
|
|
10713
|
+
signedHeader2: ContainerType<{
|
|
10714
|
+
message: ContainerType<{
|
|
10715
|
+
slot: import("@chainsafe/ssz").UintBigintType;
|
|
10716
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
10717
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10718
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10719
|
+
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10720
|
+
}>;
|
|
10721
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
10722
|
+
}>;
|
|
10723
|
+
}>>;
|
|
10724
|
+
attesterSlashings: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
10725
|
+
attestation1: ContainerType<{
|
|
10726
|
+
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
10727
|
+
data: ContainerType<{
|
|
10728
|
+
slot: import("@chainsafe/ssz").UintBigintType;
|
|
10729
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
10730
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10731
|
+
source: ContainerType<{
|
|
10732
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
10733
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
10734
|
+
}>;
|
|
10735
|
+
target: ContainerType<{
|
|
10736
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
10737
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
10738
|
+
}>;
|
|
10739
|
+
}>;
|
|
10740
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
10741
|
+
}>;
|
|
10742
|
+
attestation2: ContainerType<{
|
|
10743
|
+
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
10744
|
+
data: ContainerType<{
|
|
10745
|
+
slot: import("@chainsafe/ssz").UintBigintType;
|
|
10746
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
10747
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10748
|
+
source: ContainerType<{
|
|
10749
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
10750
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
10751
|
+
}>;
|
|
10752
|
+
target: ContainerType<{
|
|
10753
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
10754
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
10755
|
+
}>;
|
|
10756
|
+
}>;
|
|
10757
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
10758
|
+
}>;
|
|
10759
|
+
}>>;
|
|
10760
|
+
attestations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
10761
|
+
aggregationBits: import("@chainsafe/ssz").BitListType;
|
|
10762
|
+
data: ContainerType<{
|
|
10763
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
10764
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
10765
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10766
|
+
source: ContainerType<{
|
|
10767
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
10768
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
10769
|
+
}>;
|
|
10770
|
+
target: ContainerType<{
|
|
10771
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
10772
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
10773
|
+
}>;
|
|
10774
|
+
}>;
|
|
10775
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
10776
|
+
committeeBits: import("@chainsafe/ssz").BitVectorType;
|
|
10777
|
+
}>>;
|
|
10778
|
+
deposits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
10779
|
+
proof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
10780
|
+
data: ContainerType<{
|
|
10781
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
10782
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
10783
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
10784
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
10785
|
+
}>;
|
|
10786
|
+
}>>;
|
|
10787
|
+
voluntaryExits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
10788
|
+
message: ContainerType<{
|
|
10789
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
10790
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
10791
|
+
}>;
|
|
10792
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
10793
|
+
}>>;
|
|
10794
|
+
syncAggregate: ContainerType<{
|
|
10795
|
+
syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
|
|
10796
|
+
syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
|
|
10797
|
+
}>;
|
|
10798
|
+
executionPayload: ContainerType<{
|
|
10799
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
10800
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
10801
|
+
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
10802
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
10803
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
10804
|
+
address: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
10805
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
10806
|
+
}>>;
|
|
10807
|
+
transactions: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
10808
|
+
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
10809
|
+
feeRecipient: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
10810
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10811
|
+
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10812
|
+
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
10813
|
+
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
10814
|
+
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
10815
|
+
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
10816
|
+
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
10817
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
10818
|
+
extraData: import("@chainsafe/ssz").ByteListType;
|
|
10819
|
+
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
10820
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
10821
|
+
}>;
|
|
10822
|
+
blsToExecutionChanges: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
10823
|
+
message: ContainerType<{
|
|
10824
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
10825
|
+
fromBlsPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
10826
|
+
toExecutionAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
10827
|
+
}>;
|
|
10828
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
10829
|
+
}>>;
|
|
10830
|
+
blobKzgCommitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
10831
|
+
executionRequests: ContainerType<{
|
|
10832
|
+
deposits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
10833
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
10834
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
10835
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
10836
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
10837
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
10838
|
+
}>>;
|
|
10839
|
+
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
10840
|
+
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
10841
|
+
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
10842
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
10843
|
+
}>>;
|
|
10844
|
+
consolidations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
10845
|
+
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
10846
|
+
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
10847
|
+
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
10848
|
+
}>>;
|
|
10849
|
+
}>;
|
|
10850
|
+
}>;
|
|
10851
|
+
BeaconBlock: ContainerType<{
|
|
10852
|
+
body: ContainerType<{
|
|
10853
|
+
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
10854
|
+
eth1Data: ContainerType<{
|
|
10855
|
+
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10856
|
+
depositCount: import("@chainsafe/ssz").UintNumberType;
|
|
10857
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
10858
|
+
}>;
|
|
10859
|
+
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
10860
|
+
proposerSlashings: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
10861
|
+
signedHeader1: ContainerType<{
|
|
10862
|
+
message: ContainerType<{
|
|
10863
|
+
slot: import("@chainsafe/ssz").UintBigintType;
|
|
10864
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
10865
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10866
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10867
|
+
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10868
|
+
}>;
|
|
10869
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
10870
|
+
}>;
|
|
10871
|
+
signedHeader2: ContainerType<{
|
|
10872
|
+
message: ContainerType<{
|
|
10873
|
+
slot: import("@chainsafe/ssz").UintBigintType;
|
|
10874
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
10875
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10876
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10877
|
+
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10878
|
+
}>;
|
|
10879
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
10880
|
+
}>;
|
|
10881
|
+
}>>;
|
|
10882
|
+
attesterSlashings: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
10883
|
+
attestation1: ContainerType<{
|
|
10884
|
+
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
10885
|
+
data: ContainerType<{
|
|
10886
|
+
slot: import("@chainsafe/ssz").UintBigintType;
|
|
10887
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
10888
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10889
|
+
source: ContainerType<{
|
|
10890
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
10891
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
10892
|
+
}>;
|
|
10893
|
+
target: ContainerType<{
|
|
10894
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
10895
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
10896
|
+
}>;
|
|
10897
|
+
}>;
|
|
10898
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
10899
|
+
}>;
|
|
10900
|
+
attestation2: ContainerType<{
|
|
10901
|
+
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
10902
|
+
data: ContainerType<{
|
|
10903
|
+
slot: import("@chainsafe/ssz").UintBigintType;
|
|
10904
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
10905
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10906
|
+
source: ContainerType<{
|
|
10907
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
10908
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
10909
|
+
}>;
|
|
10910
|
+
target: ContainerType<{
|
|
10911
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
10912
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
10913
|
+
}>;
|
|
10914
|
+
}>;
|
|
10915
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
10916
|
+
}>;
|
|
10917
|
+
}>>;
|
|
10918
|
+
attestations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
10919
|
+
aggregationBits: import("@chainsafe/ssz").BitListType;
|
|
10920
|
+
data: ContainerType<{
|
|
10921
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
10922
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
10923
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10924
|
+
source: ContainerType<{
|
|
10925
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
10926
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
10927
|
+
}>;
|
|
10928
|
+
target: ContainerType<{
|
|
10929
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
10930
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
10931
|
+
}>;
|
|
10932
|
+
}>;
|
|
10933
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
10934
|
+
committeeBits: import("@chainsafe/ssz").BitVectorType;
|
|
10935
|
+
}>>;
|
|
10936
|
+
deposits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
10937
|
+
proof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
10938
|
+
data: ContainerType<{
|
|
10939
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
10940
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
10941
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
10942
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
10943
|
+
}>;
|
|
10944
|
+
}>>;
|
|
10945
|
+
voluntaryExits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
10946
|
+
message: ContainerType<{
|
|
10947
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
10948
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
10949
|
+
}>;
|
|
10950
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
10951
|
+
}>>;
|
|
10952
|
+
syncAggregate: ContainerType<{
|
|
10953
|
+
syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
|
|
10954
|
+
syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
|
|
10955
|
+
}>;
|
|
10956
|
+
executionPayload: ContainerType<{
|
|
10957
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
10958
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
10959
|
+
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
10960
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
10961
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
10962
|
+
address: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
10963
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
10964
|
+
}>>;
|
|
10965
|
+
transactions: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
10966
|
+
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
10967
|
+
feeRecipient: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
10968
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10969
|
+
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10970
|
+
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
10971
|
+
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
10972
|
+
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
10973
|
+
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
10974
|
+
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
10975
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
10976
|
+
extraData: import("@chainsafe/ssz").ByteListType;
|
|
10977
|
+
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
10978
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
10979
|
+
}>;
|
|
10980
|
+
blsToExecutionChanges: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
10981
|
+
message: ContainerType<{
|
|
10982
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
10983
|
+
fromBlsPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
10984
|
+
toExecutionAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
10677
10985
|
}>;
|
|
10678
10986
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
10679
10987
|
}>>;
|
|
@@ -10869,28 +11177,6 @@ declare const typesByFork: {
|
|
|
10869
11177
|
}>;
|
|
10870
11178
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
10871
11179
|
}>;
|
|
10872
|
-
BlobSidecar: ContainerType<{
|
|
10873
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
10874
|
-
blob: import("@chainsafe/ssz").ByteVectorType;
|
|
10875
|
-
kzgCommitment: import("@chainsafe/ssz").ByteVectorType;
|
|
10876
|
-
kzgProof: import("@chainsafe/ssz").ByteVectorType;
|
|
10877
|
-
signedBlockHeader: ContainerType<{
|
|
10878
|
-
message: ContainerType<{
|
|
10879
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
10880
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
10881
|
-
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10882
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10883
|
-
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10884
|
-
}>;
|
|
10885
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
10886
|
-
}>;
|
|
10887
|
-
kzgCommitmentInclusionProof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
10888
|
-
}>;
|
|
10889
|
-
BlobsBundle: ContainerType<{
|
|
10890
|
-
commitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
10891
|
-
proofs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
10892
|
-
blobs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
10893
|
-
}>;
|
|
10894
11180
|
BlindedBeaconBlockBody: ContainerType<{
|
|
10895
11181
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
10896
11182
|
eth1Data: ContainerType<{
|
|
@@ -11451,173 +11737,38 @@ declare const typesByFork: {
|
|
|
11451
11737
|
}>;
|
|
11452
11738
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
11453
11739
|
}>;
|
|
11454
|
-
|
|
11455
|
-
|
|
11456
|
-
|
|
11457
|
-
|
|
11458
|
-
|
|
11459
|
-
|
|
11460
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
11461
|
-
address: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
11462
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
11463
|
-
}>>;
|
|
11464
|
-
transactions: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
11465
|
-
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
11466
|
-
feeRecipient: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
11467
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
11468
|
-
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
11469
|
-
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
11470
|
-
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
11471
|
-
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
11472
|
-
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
11473
|
-
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
11474
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
11475
|
-
extraData: import("@chainsafe/ssz").ByteListType;
|
|
11476
|
-
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
11477
|
-
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
11478
|
-
}>;
|
|
11479
|
-
blobsBundle: ContainerType<{
|
|
11480
|
-
commitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
11481
|
-
proofs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
11482
|
-
blobs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
11483
|
-
}>;
|
|
11740
|
+
PendingDeposit: ContainerType<{
|
|
11741
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
11742
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
11743
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
11744
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
11745
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
11484
11746
|
}>;
|
|
11485
|
-
|
|
11486
|
-
|
|
11487
|
-
|
|
11488
|
-
|
|
11747
|
+
PendingDeposits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
11748
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
11749
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
11750
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
11751
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
11489
11752
|
slot: import("@chainsafe/ssz").UintNumberType;
|
|
11490
|
-
|
|
11491
|
-
|
|
11492
|
-
|
|
11493
|
-
|
|
11494
|
-
|
|
11495
|
-
latestBlockHeader: ContainerType<{
|
|
11496
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
11497
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
11498
|
-
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
11499
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
11500
|
-
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
11501
|
-
}>;
|
|
11502
|
-
blockRoots: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
11503
|
-
stateRoots: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
11504
|
-
historicalRoots: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
11505
|
-
eth1Data: ContainerType<{
|
|
11506
|
-
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
11507
|
-
depositCount: import("@chainsafe/ssz").UintNumberType;
|
|
11508
|
-
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
11509
|
-
}>;
|
|
11510
|
-
eth1DataVotes: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
11511
|
-
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
11512
|
-
depositCount: import("@chainsafe/ssz").UintNumberType;
|
|
11513
|
-
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
11514
|
-
}>>;
|
|
11515
|
-
eth1DepositIndex: import("@chainsafe/ssz").UintNumberType;
|
|
11516
|
-
validators: import("@chainsafe/ssz").ListCompositeType<import("./phase0/validator.js").ValidatorNodeStructType>;
|
|
11517
|
-
balances: import("@chainsafe/ssz").ListUintNum64Type;
|
|
11518
|
-
randaoMixes: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
11519
|
-
slashings: import("@chainsafe/ssz").VectorBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
11520
|
-
previousEpochParticipation: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
11521
|
-
currentEpochParticipation: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
11522
|
-
justificationBits: import("@chainsafe/ssz").BitVectorType;
|
|
11523
|
-
previousJustifiedCheckpoint: ContainerType<{
|
|
11524
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
11525
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
11526
|
-
}>;
|
|
11527
|
-
currentJustifiedCheckpoint: ContainerType<{
|
|
11528
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
11529
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
11530
|
-
}>;
|
|
11531
|
-
finalizedCheckpoint: ContainerType<{
|
|
11532
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
11533
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
11534
|
-
}>;
|
|
11535
|
-
inactivityScores: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
11536
|
-
currentSyncCommittee: ContainerType<{
|
|
11537
|
-
pubkeys: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
11538
|
-
aggregatePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
11539
|
-
}>;
|
|
11540
|
-
nextSyncCommittee: ContainerType<{
|
|
11541
|
-
pubkeys: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
11542
|
-
aggregatePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
11543
|
-
}>;
|
|
11544
|
-
latestExecutionPayloadHeader: ContainerType<{
|
|
11545
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
11546
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
11547
|
-
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
11548
|
-
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
11549
|
-
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
11550
|
-
feeRecipient: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
11551
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
11552
|
-
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
11553
|
-
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
11554
|
-
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
11555
|
-
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
11556
|
-
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
11557
|
-
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
11558
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
11559
|
-
extraData: import("@chainsafe/ssz").ByteListType;
|
|
11560
|
-
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
11561
|
-
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
11562
|
-
}>;
|
|
11563
|
-
nextWithdrawalIndex: import("@chainsafe/ssz").UintNumberType;
|
|
11564
|
-
nextWithdrawalValidatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
11565
|
-
historicalSummaries: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
11566
|
-
blockSummaryRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
11567
|
-
stateSummaryRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
11568
|
-
}>>;
|
|
11569
|
-
depositRequestsStartIndex: import("@chainsafe/ssz").UintBigintType;
|
|
11570
|
-
depositBalanceToConsume: import("@chainsafe/ssz").UintBigintType;
|
|
11571
|
-
exitBalanceToConsume: import("@chainsafe/ssz").UintBigintType;
|
|
11572
|
-
earliestExitEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
11573
|
-
consolidationBalanceToConsume: import("@chainsafe/ssz").UintBigintType;
|
|
11574
|
-
earliestConsolidationEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
11575
|
-
pendingDeposits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
11576
|
-
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
11577
|
-
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
11578
|
-
amount: import("@chainsafe/ssz").UintNumberType;
|
|
11579
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
11580
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
11581
|
-
}>>;
|
|
11582
|
-
pendingPartialWithdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
11583
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
11584
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
11585
|
-
withdrawableEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
11586
|
-
}>>;
|
|
11587
|
-
pendingConsolidations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
11588
|
-
sourceIndex: import("@chainsafe/ssz").UintNumberType;
|
|
11589
|
-
targetIndex: import("@chainsafe/ssz").UintNumberType;
|
|
11590
|
-
}>>;
|
|
11753
|
+
}>>;
|
|
11754
|
+
PendingPartialWithdrawal: ContainerType<{
|
|
11755
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
11756
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
11757
|
+
withdrawableEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
11591
11758
|
}>;
|
|
11592
|
-
|
|
11593
|
-
|
|
11594
|
-
|
|
11595
|
-
|
|
11596
|
-
|
|
11597
|
-
|
|
11598
|
-
|
|
11599
|
-
|
|
11600
|
-
execution: ContainerType<{
|
|
11601
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
11602
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
11603
|
-
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
11604
|
-
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
11605
|
-
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
11606
|
-
feeRecipient: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
11607
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
11608
|
-
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
11609
|
-
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
11610
|
-
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
11611
|
-
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
11612
|
-
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
11613
|
-
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
11614
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
11615
|
-
extraData: import("@chainsafe/ssz").ByteListType;
|
|
11616
|
-
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
11617
|
-
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
11618
|
-
}>;
|
|
11619
|
-
executionBranch: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
11759
|
+
PendingPartialWithdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
11760
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
11761
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
11762
|
+
withdrawableEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
11763
|
+
}>>;
|
|
11764
|
+
PendingConsolidation: ContainerType<{
|
|
11765
|
+
sourceIndex: import("@chainsafe/ssz").UintNumberType;
|
|
11766
|
+
targetIndex: import("@chainsafe/ssz").UintNumberType;
|
|
11620
11767
|
}>;
|
|
11768
|
+
PendingConsolidations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
11769
|
+
sourceIndex: import("@chainsafe/ssz").UintNumberType;
|
|
11770
|
+
targetIndex: import("@chainsafe/ssz").UintNumberType;
|
|
11771
|
+
}>>;
|
|
11621
11772
|
LightClientBootstrap: ContainerType<{
|
|
11622
11773
|
header: ContainerType<{
|
|
11623
11774
|
beacon: ContainerType<{
|
|
@@ -11936,6 +12087,18 @@ declare const typesByFork: {
|
|
|
11936
12087
|
signatureSlot: import("@chainsafe/ssz").UintNumberType;
|
|
11937
12088
|
}>>;
|
|
11938
12089
|
}>;
|
|
12090
|
+
PayloadAttributes: ContainerType<{
|
|
12091
|
+
parentBeaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12092
|
+
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
12093
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
12094
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
12095
|
+
address: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
12096
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
12097
|
+
}>>;
|
|
12098
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
12099
|
+
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
12100
|
+
suggestedFeeRecipient: import("./index.js").StringType<string>;
|
|
12101
|
+
}>;
|
|
11939
12102
|
SSEPayloadAttributes: ContainerType<{
|
|
11940
12103
|
payloadAttributes: ContainerType<{
|
|
11941
12104
|
parentBeaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -12192,371 +12355,118 @@ declare const typesByFork: {
|
|
|
12192
12355
|
}>;
|
|
12193
12356
|
}>>;
|
|
12194
12357
|
attestations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
12195
|
-
aggregationBits: import("@chainsafe/ssz").BitListType;
|
|
12196
|
-
data: ContainerType<{
|
|
12197
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
12198
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
12199
|
-
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12200
|
-
source: ContainerType<{
|
|
12201
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
12202
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
12203
|
-
}>;
|
|
12204
|
-
target: ContainerType<{
|
|
12205
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
12206
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
12207
|
-
}>;
|
|
12208
|
-
}>;
|
|
12209
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
12210
|
-
committeeBits: import("@chainsafe/ssz").BitVectorType;
|
|
12211
|
-
}>>;
|
|
12212
|
-
deposits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
12213
|
-
proof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
12214
|
-
data: ContainerType<{
|
|
12215
|
-
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
12216
|
-
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
12217
|
-
amount: import("@chainsafe/ssz").UintNumberType;
|
|
12218
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
12219
|
-
}>;
|
|
12220
|
-
}>>;
|
|
12221
|
-
voluntaryExits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
12222
|
-
message: ContainerType<{
|
|
12223
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
12224
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
12225
|
-
}>;
|
|
12226
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
12227
|
-
}>>;
|
|
12228
|
-
syncAggregate: ContainerType<{
|
|
12229
|
-
syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
|
|
12230
|
-
syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
|
|
12231
|
-
}>;
|
|
12232
|
-
executionPayload: ContainerType<{
|
|
12233
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
12234
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
12235
|
-
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
12236
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
12237
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
12238
|
-
address: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
12239
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
12240
|
-
}>>;
|
|
12241
|
-
transactions: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
12242
|
-
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
12243
|
-
feeRecipient: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
12244
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12245
|
-
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12246
|
-
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
12247
|
-
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
12248
|
-
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
12249
|
-
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
12250
|
-
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
12251
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
12252
|
-
extraData: import("@chainsafe/ssz").ByteListType;
|
|
12253
|
-
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
12254
|
-
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
12255
|
-
}>;
|
|
12256
|
-
blsToExecutionChanges: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
12257
|
-
message: ContainerType<{
|
|
12258
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
12259
|
-
fromBlsPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
12260
|
-
toExecutionAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
12261
|
-
}>;
|
|
12262
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
12263
|
-
}>>;
|
|
12264
|
-
blobKzgCommitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
12265
|
-
executionRequests: ContainerType<{
|
|
12266
|
-
deposits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
12267
|
-
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
12268
|
-
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
12269
|
-
amount: import("@chainsafe/ssz").UintNumberType;
|
|
12270
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
12271
|
-
index: import("@chainsafe/ssz").UintBigintType;
|
|
12272
|
-
}>>;
|
|
12273
|
-
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
12274
|
-
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
12275
|
-
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
12276
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
12277
|
-
}>>;
|
|
12278
|
-
consolidations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
12279
|
-
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
12280
|
-
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
12281
|
-
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
12282
|
-
}>>;
|
|
12283
|
-
}>;
|
|
12284
|
-
}>;
|
|
12285
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
12286
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
12287
|
-
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12288
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12289
|
-
}>;
|
|
12290
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
12291
|
-
}>;
|
|
12292
|
-
kzgProofs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
12293
|
-
blobs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
12294
|
-
}>;
|
|
12295
|
-
CurrentSyncCommitteeBranch: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
12296
|
-
FinalityBranch: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
12297
|
-
NextSyncCommitteeBranch: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
12298
|
-
AggregationBits: import("@chainsafe/ssz").BitListType;
|
|
12299
|
-
CommitteeBits: import("@chainsafe/ssz").BitVectorType;
|
|
12300
|
-
AttestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
12301
|
-
Attestation: ContainerType<{
|
|
12302
|
-
aggregationBits: import("@chainsafe/ssz").BitListType;
|
|
12303
|
-
data: ContainerType<{
|
|
12304
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
12305
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
12306
|
-
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12307
|
-
source: ContainerType<{
|
|
12308
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
12309
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
12310
|
-
}>;
|
|
12311
|
-
target: ContainerType<{
|
|
12312
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
12313
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
12314
|
-
}>;
|
|
12315
|
-
}>;
|
|
12316
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
12317
|
-
committeeBits: import("@chainsafe/ssz").BitVectorType;
|
|
12318
|
-
}>;
|
|
12319
|
-
SingleAttestation: ContainerType<{
|
|
12320
|
-
committeeIndex: import("@chainsafe/ssz").UintNumberType;
|
|
12321
|
-
attesterIndex: import("@chainsafe/ssz").UintNumberType;
|
|
12322
|
-
data: ContainerType<{
|
|
12323
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
12324
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
12325
|
-
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12326
|
-
source: ContainerType<{
|
|
12327
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
12328
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
12329
|
-
}>;
|
|
12330
|
-
target: ContainerType<{
|
|
12331
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
12332
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
12333
|
-
}>;
|
|
12334
|
-
}>;
|
|
12335
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
12336
|
-
}>;
|
|
12337
|
-
IndexedAttestation: ContainerType<{
|
|
12338
|
-
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
12339
|
-
data: ContainerType<{
|
|
12340
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
12341
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
12342
|
-
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12343
|
-
source: ContainerType<{
|
|
12344
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
12345
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
12346
|
-
}>;
|
|
12347
|
-
target: ContainerType<{
|
|
12348
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
12349
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
12350
|
-
}>;
|
|
12351
|
-
}>;
|
|
12352
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
12353
|
-
}>;
|
|
12354
|
-
IndexedAttestationBigint: ContainerType<{
|
|
12355
|
-
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
12356
|
-
data: ContainerType<{
|
|
12357
|
-
slot: import("@chainsafe/ssz").UintBigintType;
|
|
12358
|
-
index: import("@chainsafe/ssz").UintBigintType;
|
|
12359
|
-
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12360
|
-
source: ContainerType<{
|
|
12361
|
-
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
12362
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
12363
|
-
}>;
|
|
12364
|
-
target: ContainerType<{
|
|
12365
|
-
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
12366
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
12367
|
-
}>;
|
|
12368
|
-
}>;
|
|
12369
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
12370
|
-
}>;
|
|
12371
|
-
AttesterSlashing: ContainerType<{
|
|
12372
|
-
attestation1: ContainerType<{
|
|
12373
|
-
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
12374
|
-
data: ContainerType<{
|
|
12375
|
-
slot: import("@chainsafe/ssz").UintBigintType;
|
|
12376
|
-
index: import("@chainsafe/ssz").UintBigintType;
|
|
12377
|
-
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12378
|
-
source: ContainerType<{
|
|
12379
|
-
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
12380
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
12381
|
-
}>;
|
|
12382
|
-
target: ContainerType<{
|
|
12383
|
-
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
12384
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
12385
|
-
}>;
|
|
12386
|
-
}>;
|
|
12387
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
12388
|
-
}>;
|
|
12389
|
-
attestation2: ContainerType<{
|
|
12390
|
-
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
12391
|
-
data: ContainerType<{
|
|
12392
|
-
slot: import("@chainsafe/ssz").UintBigintType;
|
|
12393
|
-
index: import("@chainsafe/ssz").UintBigintType;
|
|
12394
|
-
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12395
|
-
source: ContainerType<{
|
|
12396
|
-
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
12397
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
12398
|
-
}>;
|
|
12399
|
-
target: ContainerType<{
|
|
12400
|
-
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
12401
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
12402
|
-
}>;
|
|
12403
|
-
}>;
|
|
12404
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
12405
|
-
}>;
|
|
12406
|
-
}>;
|
|
12407
|
-
AggregateAndProof: ContainerType<{
|
|
12408
|
-
aggregatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
12409
|
-
aggregate: ContainerType<{
|
|
12410
|
-
aggregationBits: import("@chainsafe/ssz").BitListType;
|
|
12411
|
-
data: ContainerType<{
|
|
12412
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
12413
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
12414
|
-
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12415
|
-
source: ContainerType<{
|
|
12416
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
12417
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
12418
|
-
}>;
|
|
12419
|
-
target: ContainerType<{
|
|
12420
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
12421
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
12422
|
-
}>;
|
|
12423
|
-
}>;
|
|
12424
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
12425
|
-
committeeBits: import("@chainsafe/ssz").BitVectorType;
|
|
12426
|
-
}>;
|
|
12427
|
-
selectionProof: import("@chainsafe/ssz").ByteVectorType;
|
|
12428
|
-
}>;
|
|
12429
|
-
SignedAggregateAndProof: ContainerType<{
|
|
12430
|
-
message: ContainerType<{
|
|
12431
|
-
aggregatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
12432
|
-
aggregate: ContainerType<{
|
|
12433
|
-
aggregationBits: import("@chainsafe/ssz").BitListType;
|
|
12434
|
-
data: ContainerType<{
|
|
12435
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
12436
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
12437
|
-
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12438
|
-
source: ContainerType<{
|
|
12439
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
12440
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
12358
|
+
aggregationBits: import("@chainsafe/ssz").BitListType;
|
|
12359
|
+
data: ContainerType<{
|
|
12360
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
12361
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
12362
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12363
|
+
source: ContainerType<{
|
|
12364
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
12365
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
12366
|
+
}>;
|
|
12367
|
+
target: ContainerType<{
|
|
12368
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
12369
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
12370
|
+
}>;
|
|
12371
|
+
}>;
|
|
12372
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
12373
|
+
committeeBits: import("@chainsafe/ssz").BitVectorType;
|
|
12374
|
+
}>>;
|
|
12375
|
+
deposits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
12376
|
+
proof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
12377
|
+
data: ContainerType<{
|
|
12378
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
12379
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
12380
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
12381
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
12382
|
+
}>;
|
|
12383
|
+
}>>;
|
|
12384
|
+
voluntaryExits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
12385
|
+
message: ContainerType<{
|
|
12386
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
12387
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
12388
|
+
}>;
|
|
12389
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
12390
|
+
}>>;
|
|
12391
|
+
syncAggregate: ContainerType<{
|
|
12392
|
+
syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
|
|
12393
|
+
syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
|
|
12441
12394
|
}>;
|
|
12442
|
-
|
|
12443
|
-
|
|
12444
|
-
|
|
12395
|
+
executionPayload: ContainerType<{
|
|
12396
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
12397
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
12398
|
+
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
12399
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
12400
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
12401
|
+
address: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
12402
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
12403
|
+
}>>;
|
|
12404
|
+
transactions: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
12405
|
+
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
12406
|
+
feeRecipient: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
12407
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12408
|
+
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12409
|
+
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
12410
|
+
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
12411
|
+
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
12412
|
+
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
12413
|
+
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
12414
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
12415
|
+
extraData: import("@chainsafe/ssz").ByteListType;
|
|
12416
|
+
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
12417
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
12418
|
+
}>;
|
|
12419
|
+
blsToExecutionChanges: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
12420
|
+
message: ContainerType<{
|
|
12421
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
12422
|
+
fromBlsPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
12423
|
+
toExecutionAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
12424
|
+
}>;
|
|
12425
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
12426
|
+
}>>;
|
|
12427
|
+
blobKzgCommitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
12428
|
+
executionRequests: ContainerType<{
|
|
12429
|
+
deposits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
12430
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
12431
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
12432
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
12433
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
12434
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
12435
|
+
}>>;
|
|
12436
|
+
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
12437
|
+
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
12438
|
+
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
12439
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
12440
|
+
}>>;
|
|
12441
|
+
consolidations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
12442
|
+
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
12443
|
+
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
12444
|
+
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
12445
|
+
}>>;
|
|
12445
12446
|
}>;
|
|
12446
12447
|
}>;
|
|
12447
|
-
|
|
12448
|
-
|
|
12448
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
12449
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
12450
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12451
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12449
12452
|
}>;
|
|
12450
|
-
selectionProof: import("@chainsafe/ssz").ByteVectorType;
|
|
12451
|
-
}>;
|
|
12452
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
12453
|
-
}>;
|
|
12454
|
-
DepositRequest: ContainerType<{
|
|
12455
|
-
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
12456
|
-
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
12457
|
-
amount: import("@chainsafe/ssz").UintNumberType;
|
|
12458
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
12459
|
-
index: import("@chainsafe/ssz").UintBigintType;
|
|
12460
|
-
}>;
|
|
12461
|
-
DepositRequests: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
12462
|
-
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
12463
|
-
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
12464
|
-
amount: import("@chainsafe/ssz").UintNumberType;
|
|
12465
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
12466
|
-
index: import("@chainsafe/ssz").UintBigintType;
|
|
12467
|
-
}>>;
|
|
12468
|
-
WithdrawalRequest: ContainerType<{
|
|
12469
|
-
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
12470
|
-
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
12471
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
12472
|
-
}>;
|
|
12473
|
-
WithdrawalRequests: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
12474
|
-
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
12475
|
-
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
12476
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
12477
|
-
}>>;
|
|
12478
|
-
ConsolidationRequest: ContainerType<{
|
|
12479
|
-
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
12480
|
-
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
12481
|
-
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
12482
|
-
}>;
|
|
12483
|
-
ConsolidationRequests: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
12484
|
-
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
12485
|
-
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
12486
|
-
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
12487
|
-
}>>;
|
|
12488
|
-
ExecutionRequests: ContainerType<{
|
|
12489
|
-
deposits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
12490
|
-
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
12491
|
-
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
12492
|
-
amount: import("@chainsafe/ssz").UintNumberType;
|
|
12493
12453
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
12494
|
-
|
|
12495
|
-
|
|
12496
|
-
|
|
12497
|
-
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
12498
|
-
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
12499
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
12500
|
-
}>>;
|
|
12501
|
-
consolidations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
12502
|
-
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
12503
|
-
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
12504
|
-
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
12505
|
-
}>>;
|
|
12506
|
-
}>;
|
|
12507
|
-
PendingDeposit: ContainerType<{
|
|
12508
|
-
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
12509
|
-
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
12510
|
-
amount: import("@chainsafe/ssz").UintNumberType;
|
|
12511
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
12512
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
12513
|
-
}>;
|
|
12514
|
-
PendingDeposits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
12515
|
-
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
12516
|
-
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
12517
|
-
amount: import("@chainsafe/ssz").UintNumberType;
|
|
12518
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
12519
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
12520
|
-
}>>;
|
|
12521
|
-
PendingPartialWithdrawal: ContainerType<{
|
|
12522
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
12523
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
12524
|
-
withdrawableEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
12525
|
-
}>;
|
|
12526
|
-
PendingPartialWithdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
12527
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
12528
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
12529
|
-
withdrawableEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
12530
|
-
}>>;
|
|
12531
|
-
PendingConsolidation: ContainerType<{
|
|
12532
|
-
sourceIndex: import("@chainsafe/ssz").UintNumberType;
|
|
12533
|
-
targetIndex: import("@chainsafe/ssz").UintNumberType;
|
|
12534
|
-
}>;
|
|
12535
|
-
PendingConsolidations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
12536
|
-
sourceIndex: import("@chainsafe/ssz").UintNumberType;
|
|
12537
|
-
targetIndex: import("@chainsafe/ssz").UintNumberType;
|
|
12538
|
-
}>>;
|
|
12539
|
-
PayloadAttributes: ContainerType<{
|
|
12540
|
-
parentBeaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12541
|
-
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
12542
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
12543
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
12544
|
-
address: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
12545
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
12546
|
-
}>>;
|
|
12547
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
12548
|
-
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
12549
|
-
suggestedFeeRecipient: import("./index.js").StringType<string>;
|
|
12454
|
+
}>;
|
|
12455
|
+
kzgProofs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
12456
|
+
blobs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
12550
12457
|
}>;
|
|
12551
12458
|
G1Point: import("@chainsafe/ssz").ByteVectorType;
|
|
12552
12459
|
G2Point: import("@chainsafe/ssz").ByteVectorType;
|
|
12553
12460
|
BLSFieldElement: import("@chainsafe/ssz").ByteVectorType;
|
|
12554
12461
|
KZGCommitment: import("@chainsafe/ssz").ByteVectorType;
|
|
12462
|
+
KZGProof: import("@chainsafe/ssz").ByteVectorType;
|
|
12463
|
+
Blob: import("@chainsafe/ssz").ByteVectorType;
|
|
12555
12464
|
Blobs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
12556
12465
|
BlindedBlob: import("@chainsafe/ssz").ByteVectorType;
|
|
12557
12466
|
BlindedBlobs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
12558
12467
|
VersionedHash: import("@chainsafe/ssz").ByteVectorType;
|
|
12559
12468
|
BlobKzgCommitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
12469
|
+
KZGProofs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
12560
12470
|
BlobSidecarsByRangeRequest: ContainerType<{
|
|
12561
12471
|
startSlot: import("@chainsafe/ssz").UintNumberType;
|
|
12562
12472
|
count: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -12565,24 +12475,106 @@ declare const typesByFork: {
|
|
|
12565
12475
|
blockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12566
12476
|
index: import("@chainsafe/ssz").UintNumberType;
|
|
12567
12477
|
}>;
|
|
12568
|
-
KzgCommitmentInclusionProof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
12569
|
-
|
|
12570
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
12571
|
-
blob: import("@chainsafe/ssz").ByteVectorType;
|
|
12572
|
-
kzgCommitment: import("@chainsafe/ssz").ByteVectorType;
|
|
12573
|
-
kzgProof: import("@chainsafe/ssz").ByteVectorType;
|
|
12574
|
-
signedBlockHeader: ContainerType<{
|
|
12575
|
-
message: ContainerType<{
|
|
12576
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
12577
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
12578
|
-
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12579
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12580
|
-
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12581
|
-
}>;
|
|
12582
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
12478
|
+
KzgCommitmentInclusionProof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
12479
|
+
BlobSidecar: ContainerType<{
|
|
12480
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
12481
|
+
blob: import("@chainsafe/ssz").ByteVectorType;
|
|
12482
|
+
kzgCommitment: import("@chainsafe/ssz").ByteVectorType;
|
|
12483
|
+
kzgProof: import("@chainsafe/ssz").ByteVectorType;
|
|
12484
|
+
signedBlockHeader: ContainerType<{
|
|
12485
|
+
message: ContainerType<{
|
|
12486
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
12487
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
12488
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12489
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12490
|
+
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12491
|
+
}>;
|
|
12492
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
12493
|
+
}>;
|
|
12494
|
+
kzgCommitmentInclusionProof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
12495
|
+
}>;
|
|
12496
|
+
BlobSidecars: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
12497
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
12498
|
+
blob: import("@chainsafe/ssz").ByteVectorType;
|
|
12499
|
+
kzgCommitment: import("@chainsafe/ssz").ByteVectorType;
|
|
12500
|
+
kzgProof: import("@chainsafe/ssz").ByteVectorType;
|
|
12501
|
+
signedBlockHeader: ContainerType<{
|
|
12502
|
+
message: ContainerType<{
|
|
12503
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
12504
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
12505
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12506
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12507
|
+
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12508
|
+
}>;
|
|
12509
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
12510
|
+
}>;
|
|
12511
|
+
kzgCommitmentInclusionProof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
12512
|
+
}>>;
|
|
12513
|
+
BlobsBundle: ContainerType<{
|
|
12514
|
+
commitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
12515
|
+
proofs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
12516
|
+
blobs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
12517
|
+
}>;
|
|
12518
|
+
ExecutionPayloadAndBlobsBundle: ContainerType<{
|
|
12519
|
+
executionPayload: ContainerType<{
|
|
12520
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
12521
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
12522
|
+
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
12523
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
12524
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
12525
|
+
address: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
12526
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
12527
|
+
}>>;
|
|
12528
|
+
transactions: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
12529
|
+
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
12530
|
+
feeRecipient: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
12531
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12532
|
+
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12533
|
+
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
12534
|
+
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
12535
|
+
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
12536
|
+
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
12537
|
+
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
12538
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
12539
|
+
extraData: import("@chainsafe/ssz").ByteListType;
|
|
12540
|
+
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
12541
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
12542
|
+
}>;
|
|
12543
|
+
blobsBundle: ContainerType<{
|
|
12544
|
+
commitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
12545
|
+
proofs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
12546
|
+
blobs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
12547
|
+
}>;
|
|
12548
|
+
}>;
|
|
12549
|
+
LightClientHeader: ContainerType<{
|
|
12550
|
+
beacon: ContainerType<{
|
|
12551
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
12552
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
12553
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12554
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12555
|
+
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12583
12556
|
}>;
|
|
12584
|
-
|
|
12585
|
-
|
|
12557
|
+
execution: ContainerType<{
|
|
12558
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
12559
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
12560
|
+
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12561
|
+
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12562
|
+
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
12563
|
+
feeRecipient: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
12564
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12565
|
+
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12566
|
+
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
12567
|
+
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
12568
|
+
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
12569
|
+
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
12570
|
+
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
12571
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
12572
|
+
extraData: import("@chainsafe/ssz").ByteListType;
|
|
12573
|
+
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
12574
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
12575
|
+
}>;
|
|
12576
|
+
executionBranch: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
12577
|
+
}>;
|
|
12586
12578
|
ExecutionBranch: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
12587
12579
|
Withdrawal: ContainerType<{
|
|
12588
12580
|
index: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -12957,6 +12949,13 @@ declare const typesByFork: {
|
|
|
12957
12949
|
committeeIndex: import("@chainsafe/ssz").UintNumberType;
|
|
12958
12950
|
slot: import("@chainsafe/ssz").UintNumberType;
|
|
12959
12951
|
}>;
|
|
12952
|
+
Status: ContainerType<{
|
|
12953
|
+
forkDigest: import("@chainsafe/ssz").ByteVectorType;
|
|
12954
|
+
finalizedRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12955
|
+
finalizedEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
12956
|
+
headRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12957
|
+
headSlot: import("@chainsafe/ssz").UintNumberType;
|
|
12958
|
+
}>;
|
|
12960
12959
|
Goodbye: import("@chainsafe/ssz").UintBigintType;
|
|
12961
12960
|
Ping: import("@chainsafe/ssz").UintBigintType;
|
|
12962
12961
|
BeaconBlocksByRangeRequest: ContainerType<{
|
|
@@ -23012,117 +23011,403 @@ export declare const electra: {
|
|
|
23012
23011
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23013
23012
|
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23014
23013
|
}>;
|
|
23015
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
23014
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
23015
|
+
}>;
|
|
23016
|
+
Checkpoint: ContainerType<{
|
|
23017
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
23018
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
23019
|
+
}>;
|
|
23020
|
+
CheckpointBigint: ContainerType<{
|
|
23021
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
23022
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
23023
|
+
}>;
|
|
23024
|
+
CommitteeIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
23025
|
+
DepositMessage: ContainerType<{
|
|
23026
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
23027
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
23028
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
23029
|
+
}>;
|
|
23030
|
+
DepositData: ContainerType<{
|
|
23031
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
23032
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
23033
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
23034
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
23035
|
+
}>;
|
|
23036
|
+
DepositDataRootList: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
23037
|
+
DepositEvent: ContainerType<{
|
|
23038
|
+
depositData: ContainerType<{
|
|
23039
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
23040
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
23041
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
23042
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
23043
|
+
}>;
|
|
23044
|
+
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
23045
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
23046
|
+
}>;
|
|
23047
|
+
Eth1Data: ContainerType<{
|
|
23048
|
+
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23049
|
+
depositCount: import("@chainsafe/ssz").UintNumberType;
|
|
23050
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
23051
|
+
}>;
|
|
23052
|
+
Eth1DataVotes: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
23053
|
+
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23054
|
+
depositCount: import("@chainsafe/ssz").UintNumberType;
|
|
23055
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
23056
|
+
}>>;
|
|
23057
|
+
Eth1DataOrdered: ContainerType<{
|
|
23058
|
+
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23059
|
+
depositCount: import("@chainsafe/ssz").UintNumberType;
|
|
23060
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
23061
|
+
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
23062
|
+
}>;
|
|
23063
|
+
Eth1Block: ContainerType<{
|
|
23064
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
23065
|
+
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23066
|
+
depositCount: import("@chainsafe/ssz").UintNumberType;
|
|
23067
|
+
}>;
|
|
23068
|
+
Fork: ContainerType<{
|
|
23069
|
+
previousVersion: import("@chainsafe/ssz").ByteVectorType;
|
|
23070
|
+
currentVersion: import("@chainsafe/ssz").ByteVectorType;
|
|
23071
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
23072
|
+
}>;
|
|
23073
|
+
ForkData: ContainerType<{
|
|
23074
|
+
currentVersion: import("@chainsafe/ssz").ByteVectorType;
|
|
23075
|
+
genesisValidatorsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23076
|
+
}>;
|
|
23077
|
+
ENRForkID: ContainerType<{
|
|
23078
|
+
forkDigest: import("@chainsafe/ssz").ByteVectorType;
|
|
23079
|
+
nextForkVersion: import("@chainsafe/ssz").ByteVectorType;
|
|
23080
|
+
nextForkEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
23081
|
+
}>;
|
|
23082
|
+
HistoricalBlockRoots: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
23083
|
+
HistoricalStateRoots: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
23084
|
+
HistoricalBatch: ContainerType<{
|
|
23085
|
+
blockRoots: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
23086
|
+
stateRoots: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
23087
|
+
}>;
|
|
23088
|
+
HistoricalBatchRoots: ContainerType<{
|
|
23089
|
+
blockRoots: import("@chainsafe/ssz").ByteVectorType;
|
|
23090
|
+
stateRoots: import("@chainsafe/ssz").ByteVectorType;
|
|
23091
|
+
}>;
|
|
23092
|
+
Validator: import("./phase0/validator.js").ValidatorNodeStructType;
|
|
23093
|
+
Validators: import("@chainsafe/ssz").ListCompositeType<import("./phase0/validator.js").ValidatorNodeStructType>;
|
|
23094
|
+
Balances: import("@chainsafe/ssz").ListUintNum64Type;
|
|
23095
|
+
RandaoMixes: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
23096
|
+
Slashings: import("@chainsafe/ssz").VectorBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
23097
|
+
JustificationBits: import("@chainsafe/ssz").BitVectorType;
|
|
23098
|
+
AttestationData: ContainerType<{
|
|
23099
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
23100
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
23101
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23102
|
+
source: ContainerType<{
|
|
23103
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
23104
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
23105
|
+
}>;
|
|
23106
|
+
target: ContainerType<{
|
|
23107
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
23108
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
23109
|
+
}>;
|
|
23110
|
+
}>;
|
|
23111
|
+
AttestationDataBigint: ContainerType<{
|
|
23112
|
+
slot: import("@chainsafe/ssz").UintBigintType;
|
|
23113
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
23114
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23115
|
+
source: ContainerType<{
|
|
23116
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
23117
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
23118
|
+
}>;
|
|
23119
|
+
target: ContainerType<{
|
|
23120
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
23121
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
23122
|
+
}>;
|
|
23123
|
+
}>;
|
|
23124
|
+
PendingAttestation: ContainerType<{
|
|
23125
|
+
aggregationBits: import("@chainsafe/ssz").BitListType;
|
|
23126
|
+
data: ContainerType<{
|
|
23127
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
23128
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
23129
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23130
|
+
source: ContainerType<{
|
|
23131
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
23132
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
23133
|
+
}>;
|
|
23134
|
+
target: ContainerType<{
|
|
23135
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
23136
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
23137
|
+
}>;
|
|
23138
|
+
}>;
|
|
23139
|
+
inclusionDelay: import("@chainsafe/ssz").UintNumberType;
|
|
23140
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
23141
|
+
}>;
|
|
23142
|
+
SigningData: ContainerType<{
|
|
23143
|
+
objectRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23144
|
+
domain: import("@chainsafe/ssz").ByteVectorType;
|
|
23145
|
+
}>;
|
|
23146
|
+
Deposit: ContainerType<{
|
|
23147
|
+
proof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
23148
|
+
data: ContainerType<{
|
|
23149
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
23150
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
23151
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
23152
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
23153
|
+
}>;
|
|
23154
|
+
}>;
|
|
23155
|
+
ProposerSlashing: ContainerType<{
|
|
23156
|
+
signedHeader1: ContainerType<{
|
|
23157
|
+
message: ContainerType<{
|
|
23158
|
+
slot: import("@chainsafe/ssz").UintBigintType;
|
|
23159
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
23160
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23161
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23162
|
+
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23163
|
+
}>;
|
|
23164
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
23165
|
+
}>;
|
|
23166
|
+
signedHeader2: ContainerType<{
|
|
23167
|
+
message: ContainerType<{
|
|
23168
|
+
slot: import("@chainsafe/ssz").UintBigintType;
|
|
23169
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
23170
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23171
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23172
|
+
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23173
|
+
}>;
|
|
23174
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
23175
|
+
}>;
|
|
23176
|
+
}>;
|
|
23177
|
+
VoluntaryExit: ContainerType<{
|
|
23178
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
23179
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
23180
|
+
}>;
|
|
23181
|
+
SignedVoluntaryExit: ContainerType<{
|
|
23182
|
+
message: ContainerType<{
|
|
23183
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
23184
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
23185
|
+
}>;
|
|
23186
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
23187
|
+
}>;
|
|
23188
|
+
EpochAttestations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
23189
|
+
aggregationBits: import("@chainsafe/ssz").BitListType;
|
|
23190
|
+
data: ContainerType<{
|
|
23191
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
23192
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
23193
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23194
|
+
source: ContainerType<{
|
|
23195
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
23196
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
23197
|
+
}>;
|
|
23198
|
+
target: ContainerType<{
|
|
23199
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
23200
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
23201
|
+
}>;
|
|
23202
|
+
}>;
|
|
23203
|
+
inclusionDelay: import("@chainsafe/ssz").UintNumberType;
|
|
23204
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
23205
|
+
}>>;
|
|
23206
|
+
CommitteeAssignment: ContainerType<{
|
|
23207
|
+
validators: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
23208
|
+
committeeIndex: import("@chainsafe/ssz").UintNumberType;
|
|
23209
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
23016
23210
|
}>;
|
|
23017
|
-
|
|
23018
|
-
|
|
23019
|
-
|
|
23211
|
+
Status: ContainerType<{
|
|
23212
|
+
forkDigest: import("@chainsafe/ssz").ByteVectorType;
|
|
23213
|
+
finalizedRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23214
|
+
finalizedEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
23215
|
+
headRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23216
|
+
headSlot: import("@chainsafe/ssz").UintNumberType;
|
|
23020
23217
|
}>;
|
|
23021
|
-
|
|
23022
|
-
|
|
23023
|
-
|
|
23218
|
+
Goodbye: import("@chainsafe/ssz").UintBigintType;
|
|
23219
|
+
Ping: import("@chainsafe/ssz").UintBigintType;
|
|
23220
|
+
BeaconBlocksByRangeRequest: ContainerType<{
|
|
23221
|
+
startSlot: import("@chainsafe/ssz").UintNumberType;
|
|
23222
|
+
count: import("@chainsafe/ssz").UintNumberType;
|
|
23223
|
+
step: import("@chainsafe/ssz").UintNumberType;
|
|
23024
23224
|
}>;
|
|
23025
|
-
|
|
23026
|
-
|
|
23027
|
-
|
|
23028
|
-
|
|
23029
|
-
|
|
23225
|
+
BeaconBlocksByRootRequest: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
23226
|
+
Genesis: ContainerType<{
|
|
23227
|
+
genesisValidatorsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23228
|
+
genesisTime: import("@chainsafe/ssz").UintNumberType;
|
|
23229
|
+
genesisForkVersion: import("@chainsafe/ssz").ByteVectorType;
|
|
23030
23230
|
}>;
|
|
23031
|
-
|
|
23032
|
-
|
|
23033
|
-
|
|
23034
|
-
|
|
23035
|
-
|
|
23231
|
+
};
|
|
23232
|
+
export declare const fulu: {
|
|
23233
|
+
Metadata: ContainerType<{
|
|
23234
|
+
custodyGroupCount: import("@chainsafe/ssz").UintNumberType;
|
|
23235
|
+
seqNumber: import("@chainsafe/ssz").UintBigintType;
|
|
23236
|
+
attnets: import("@chainsafe/ssz").BitVectorType;
|
|
23237
|
+
syncnets: import("@chainsafe/ssz").BitVectorType;
|
|
23036
23238
|
}>;
|
|
23037
|
-
|
|
23038
|
-
|
|
23039
|
-
|
|
23040
|
-
|
|
23041
|
-
|
|
23042
|
-
|
|
23239
|
+
Cell: import("@chainsafe/ssz").ByteVectorType;
|
|
23240
|
+
DataColumn: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
23241
|
+
ExtendedMatrix: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
23242
|
+
KzgCommitmentsInclusionProof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
23243
|
+
ProposerLookahead: import("@chainsafe/ssz").VectorBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
23244
|
+
DataColumnSidecar: ContainerType<{
|
|
23245
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
23246
|
+
column: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
23247
|
+
kzgCommitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
23248
|
+
kzgProofs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
23249
|
+
signedBlockHeader: ContainerType<{
|
|
23250
|
+
message: ContainerType<{
|
|
23251
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
23252
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
23253
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23254
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23255
|
+
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23256
|
+
}>;
|
|
23043
23257
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
23044
23258
|
}>;
|
|
23045
|
-
|
|
23046
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
23047
|
-
}>;
|
|
23048
|
-
Eth1Data: ContainerType<{
|
|
23049
|
-
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23050
|
-
depositCount: import("@chainsafe/ssz").UintNumberType;
|
|
23051
|
-
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
23259
|
+
kzgCommitmentsInclusionProof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
23052
23260
|
}>;
|
|
23053
|
-
|
|
23054
|
-
|
|
23055
|
-
|
|
23056
|
-
|
|
23261
|
+
DataColumnSidecars: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
23262
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
23263
|
+
column: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
23264
|
+
kzgCommitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
23265
|
+
kzgProofs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
23266
|
+
signedBlockHeader: ContainerType<{
|
|
23267
|
+
message: ContainerType<{
|
|
23268
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
23269
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
23270
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23271
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23272
|
+
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23273
|
+
}>;
|
|
23274
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
23275
|
+
}>;
|
|
23276
|
+
kzgCommitmentsInclusionProof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
23057
23277
|
}>>;
|
|
23058
|
-
|
|
23059
|
-
|
|
23060
|
-
|
|
23061
|
-
|
|
23062
|
-
|
|
23278
|
+
MatrixEntry: ContainerType<{
|
|
23279
|
+
cell: import("@chainsafe/ssz").ByteVectorType;
|
|
23280
|
+
kzgProof: import("@chainsafe/ssz").ByteVectorType;
|
|
23281
|
+
columnIndex: import("@chainsafe/ssz").UintNumberType;
|
|
23282
|
+
rowIndex: import("@chainsafe/ssz").UintNumberType;
|
|
23063
23283
|
}>;
|
|
23064
|
-
|
|
23065
|
-
|
|
23066
|
-
|
|
23067
|
-
depositCount: import("@chainsafe/ssz").UintNumberType;
|
|
23284
|
+
DataColumnIdentifier: ContainerType<{
|
|
23285
|
+
blockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23286
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
23068
23287
|
}>;
|
|
23069
|
-
|
|
23070
|
-
|
|
23071
|
-
|
|
23072
|
-
|
|
23288
|
+
DataColumnSidecarsByRootRequest: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
23289
|
+
blockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23290
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
23291
|
+
}>>;
|
|
23292
|
+
DataColumnSidecarsByRangeRequest: ContainerType<{
|
|
23293
|
+
startSlot: import("@chainsafe/ssz").UintNumberType;
|
|
23294
|
+
count: import("@chainsafe/ssz").UintNumberType;
|
|
23295
|
+
columns: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
23073
23296
|
}>;
|
|
23074
|
-
|
|
23075
|
-
|
|
23297
|
+
BeaconState: ContainerType<{
|
|
23298
|
+
proposerLookahead: import("@chainsafe/ssz").VectorBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
23299
|
+
genesisTime: import("@chainsafe/ssz").UintNumberType;
|
|
23076
23300
|
genesisValidatorsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23077
|
-
|
|
23078
|
-
|
|
23079
|
-
|
|
23080
|
-
|
|
23081
|
-
|
|
23082
|
-
|
|
23083
|
-
|
|
23084
|
-
|
|
23085
|
-
|
|
23301
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
23302
|
+
fork: ContainerType<{
|
|
23303
|
+
previousVersion: import("@chainsafe/ssz").ByteVectorType;
|
|
23304
|
+
currentVersion: import("@chainsafe/ssz").ByteVectorType;
|
|
23305
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
23306
|
+
}>;
|
|
23307
|
+
latestBlockHeader: ContainerType<{
|
|
23308
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
23309
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
23310
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23311
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23312
|
+
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23313
|
+
}>;
|
|
23086
23314
|
blockRoots: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
23087
23315
|
stateRoots: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
23088
|
-
|
|
23089
|
-
|
|
23090
|
-
|
|
23091
|
-
|
|
23092
|
-
|
|
23093
|
-
|
|
23094
|
-
|
|
23095
|
-
|
|
23096
|
-
|
|
23097
|
-
|
|
23098
|
-
|
|
23099
|
-
|
|
23100
|
-
|
|
23101
|
-
|
|
23102
|
-
|
|
23103
|
-
|
|
23316
|
+
historicalRoots: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
23317
|
+
eth1Data: ContainerType<{
|
|
23318
|
+
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23319
|
+
depositCount: import("@chainsafe/ssz").UintNumberType;
|
|
23320
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
23321
|
+
}>;
|
|
23322
|
+
eth1DataVotes: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
23323
|
+
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23324
|
+
depositCount: import("@chainsafe/ssz").UintNumberType;
|
|
23325
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
23326
|
+
}>>;
|
|
23327
|
+
eth1DepositIndex: import("@chainsafe/ssz").UintNumberType;
|
|
23328
|
+
validators: import("@chainsafe/ssz").ListCompositeType<import("./phase0/validator.js").ValidatorNodeStructType>;
|
|
23329
|
+
balances: import("@chainsafe/ssz").ListUintNum64Type;
|
|
23330
|
+
randaoMixes: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
23331
|
+
slashings: import("@chainsafe/ssz").VectorBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
23332
|
+
previousEpochParticipation: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
23333
|
+
currentEpochParticipation: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
23334
|
+
justificationBits: import("@chainsafe/ssz").BitVectorType;
|
|
23335
|
+
previousJustifiedCheckpoint: ContainerType<{
|
|
23104
23336
|
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
23105
23337
|
root: import("@chainsafe/ssz").ByteVectorType;
|
|
23106
23338
|
}>;
|
|
23107
|
-
|
|
23339
|
+
currentJustifiedCheckpoint: ContainerType<{
|
|
23108
23340
|
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
23109
23341
|
root: import("@chainsafe/ssz").ByteVectorType;
|
|
23110
23342
|
}>;
|
|
23111
|
-
|
|
23112
|
-
|
|
23113
|
-
slot: import("@chainsafe/ssz").UintBigintType;
|
|
23114
|
-
index: import("@chainsafe/ssz").UintBigintType;
|
|
23115
|
-
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23116
|
-
source: ContainerType<{
|
|
23117
|
-
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
23343
|
+
finalizedCheckpoint: ContainerType<{
|
|
23344
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
23118
23345
|
root: import("@chainsafe/ssz").ByteVectorType;
|
|
23119
23346
|
}>;
|
|
23120
|
-
|
|
23121
|
-
|
|
23122
|
-
|
|
23347
|
+
inactivityScores: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
23348
|
+
currentSyncCommittee: ContainerType<{
|
|
23349
|
+
pubkeys: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
23350
|
+
aggregatePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
23351
|
+
}>;
|
|
23352
|
+
nextSyncCommittee: ContainerType<{
|
|
23353
|
+
pubkeys: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
23354
|
+
aggregatePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
23355
|
+
}>;
|
|
23356
|
+
latestExecutionPayloadHeader: ContainerType<{
|
|
23357
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
23358
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
23359
|
+
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23360
|
+
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23361
|
+
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
23362
|
+
feeRecipient: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
23363
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23364
|
+
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23365
|
+
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
23366
|
+
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
23367
|
+
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
23368
|
+
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
23369
|
+
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
23370
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
23371
|
+
extraData: import("@chainsafe/ssz").ByteListType;
|
|
23372
|
+
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
23373
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
23123
23374
|
}>;
|
|
23375
|
+
nextWithdrawalIndex: import("@chainsafe/ssz").UintNumberType;
|
|
23376
|
+
nextWithdrawalValidatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
23377
|
+
historicalSummaries: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
23378
|
+
blockSummaryRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23379
|
+
stateSummaryRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23380
|
+
}>>;
|
|
23381
|
+
depositRequestsStartIndex: import("@chainsafe/ssz").UintBigintType;
|
|
23382
|
+
depositBalanceToConsume: import("@chainsafe/ssz").UintBigintType;
|
|
23383
|
+
exitBalanceToConsume: import("@chainsafe/ssz").UintBigintType;
|
|
23384
|
+
earliestExitEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
23385
|
+
consolidationBalanceToConsume: import("@chainsafe/ssz").UintBigintType;
|
|
23386
|
+
earliestConsolidationEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
23387
|
+
pendingDeposits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
23388
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
23389
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
23390
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
23391
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
23392
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
23393
|
+
}>>;
|
|
23394
|
+
pendingPartialWithdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
23395
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
23396
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
23397
|
+
withdrawableEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
23398
|
+
}>>;
|
|
23399
|
+
pendingConsolidations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
23400
|
+
sourceIndex: import("@chainsafe/ssz").UintNumberType;
|
|
23401
|
+
targetIndex: import("@chainsafe/ssz").UintNumberType;
|
|
23402
|
+
}>>;
|
|
23124
23403
|
}>;
|
|
23125
|
-
|
|
23404
|
+
CurrentSyncCommitteeBranch: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
23405
|
+
FinalityBranch: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
23406
|
+
NextSyncCommitteeBranch: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
23407
|
+
AggregationBits: import("@chainsafe/ssz").BitListType;
|
|
23408
|
+
CommitteeBits: import("@chainsafe/ssz").BitVectorType;
|
|
23409
|
+
AttestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
23410
|
+
Attestation: ContainerType<{
|
|
23126
23411
|
aggregationBits: import("@chainsafe/ssz").BitListType;
|
|
23127
23412
|
data: ContainerType<{
|
|
23128
23413
|
slot: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -23137,57 +23422,29 @@ export declare const electra: {
|
|
|
23137
23422
|
root: import("@chainsafe/ssz").ByteVectorType;
|
|
23138
23423
|
}>;
|
|
23139
23424
|
}>;
|
|
23140
|
-
|
|
23141
|
-
|
|
23142
|
-
}>;
|
|
23143
|
-
SigningData: ContainerType<{
|
|
23144
|
-
objectRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23145
|
-
domain: import("@chainsafe/ssz").ByteVectorType;
|
|
23425
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
23426
|
+
committeeBits: import("@chainsafe/ssz").BitVectorType;
|
|
23146
23427
|
}>;
|
|
23147
|
-
|
|
23148
|
-
|
|
23428
|
+
SingleAttestation: ContainerType<{
|
|
23429
|
+
committeeIndex: import("@chainsafe/ssz").UintNumberType;
|
|
23430
|
+
attesterIndex: import("@chainsafe/ssz").UintNumberType;
|
|
23149
23431
|
data: ContainerType<{
|
|
23150
|
-
|
|
23151
|
-
|
|
23152
|
-
|
|
23153
|
-
|
|
23154
|
-
|
|
23155
|
-
|
|
23156
|
-
ProposerSlashing: ContainerType<{
|
|
23157
|
-
signedHeader1: ContainerType<{
|
|
23158
|
-
message: ContainerType<{
|
|
23159
|
-
slot: import("@chainsafe/ssz").UintBigintType;
|
|
23160
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
23161
|
-
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23162
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23163
|
-
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23432
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
23433
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
23434
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23435
|
+
source: ContainerType<{
|
|
23436
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
23437
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
23164
23438
|
}>;
|
|
23165
|
-
|
|
23166
|
-
|
|
23167
|
-
|
|
23168
|
-
message: ContainerType<{
|
|
23169
|
-
slot: import("@chainsafe/ssz").UintBigintType;
|
|
23170
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
23171
|
-
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23172
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23173
|
-
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23439
|
+
target: ContainerType<{
|
|
23440
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
23441
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
23174
23442
|
}>;
|
|
23175
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
23176
|
-
}>;
|
|
23177
|
-
}>;
|
|
23178
|
-
VoluntaryExit: ContainerType<{
|
|
23179
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
23180
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
23181
|
-
}>;
|
|
23182
|
-
SignedVoluntaryExit: ContainerType<{
|
|
23183
|
-
message: ContainerType<{
|
|
23184
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
23185
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
23186
23443
|
}>;
|
|
23187
23444
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
23188
23445
|
}>;
|
|
23189
|
-
|
|
23190
|
-
|
|
23446
|
+
IndexedAttestation: ContainerType<{
|
|
23447
|
+
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
23191
23448
|
data: ContainerType<{
|
|
23192
23449
|
slot: import("@chainsafe/ssz").UintNumberType;
|
|
23193
23450
|
index: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -23201,121 +23458,166 @@ export declare const electra: {
|
|
|
23201
23458
|
root: import("@chainsafe/ssz").ByteVectorType;
|
|
23202
23459
|
}>;
|
|
23203
23460
|
}>;
|
|
23204
|
-
|
|
23205
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
23206
|
-
}>>;
|
|
23207
|
-
CommitteeAssignment: ContainerType<{
|
|
23208
|
-
validators: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
23209
|
-
committeeIndex: import("@chainsafe/ssz").UintNumberType;
|
|
23210
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
23211
|
-
}>;
|
|
23212
|
-
Status: ContainerType<{
|
|
23213
|
-
forkDigest: import("@chainsafe/ssz").ByteVectorType;
|
|
23214
|
-
finalizedRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23215
|
-
finalizedEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
23216
|
-
headRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23217
|
-
headSlot: import("@chainsafe/ssz").UintNumberType;
|
|
23218
|
-
}>;
|
|
23219
|
-
Goodbye: import("@chainsafe/ssz").UintBigintType;
|
|
23220
|
-
Ping: import("@chainsafe/ssz").UintBigintType;
|
|
23221
|
-
BeaconBlocksByRangeRequest: ContainerType<{
|
|
23222
|
-
startSlot: import("@chainsafe/ssz").UintNumberType;
|
|
23223
|
-
count: import("@chainsafe/ssz").UintNumberType;
|
|
23224
|
-
step: import("@chainsafe/ssz").UintNumberType;
|
|
23225
|
-
}>;
|
|
23226
|
-
BeaconBlocksByRootRequest: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
23227
|
-
Genesis: ContainerType<{
|
|
23228
|
-
genesisValidatorsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23229
|
-
genesisTime: import("@chainsafe/ssz").UintNumberType;
|
|
23230
|
-
genesisForkVersion: import("@chainsafe/ssz").ByteVectorType;
|
|
23231
|
-
}>;
|
|
23232
|
-
};
|
|
23233
|
-
export declare const fulu: {
|
|
23234
|
-
KZGProof: import("@chainsafe/ssz").ByteVectorType;
|
|
23235
|
-
Blob: import("@chainsafe/ssz").ByteVectorType;
|
|
23236
|
-
Metadata: ContainerType<{
|
|
23237
|
-
custodyGroupCount: import("@chainsafe/ssz").UintNumberType;
|
|
23238
|
-
seqNumber: import("@chainsafe/ssz").UintBigintType;
|
|
23239
|
-
attnets: import("@chainsafe/ssz").BitVectorType;
|
|
23240
|
-
syncnets: import("@chainsafe/ssz").BitVectorType;
|
|
23461
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
23241
23462
|
}>;
|
|
23242
|
-
|
|
23243
|
-
|
|
23244
|
-
|
|
23245
|
-
|
|
23246
|
-
|
|
23247
|
-
|
|
23248
|
-
|
|
23463
|
+
IndexedAttestationBigint: ContainerType<{
|
|
23464
|
+
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
23465
|
+
data: ContainerType<{
|
|
23466
|
+
slot: import("@chainsafe/ssz").UintBigintType;
|
|
23467
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
23468
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23469
|
+
source: ContainerType<{
|
|
23470
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
23471
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
23472
|
+
}>;
|
|
23473
|
+
target: ContainerType<{
|
|
23474
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
23475
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
23476
|
+
}>;
|
|
23477
|
+
}>;
|
|
23478
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
23249
23479
|
}>;
|
|
23250
|
-
|
|
23251
|
-
|
|
23252
|
-
|
|
23253
|
-
|
|
23254
|
-
|
|
23255
|
-
|
|
23256
|
-
|
|
23257
|
-
|
|
23258
|
-
|
|
23259
|
-
|
|
23260
|
-
|
|
23261
|
-
|
|
23262
|
-
|
|
23263
|
-
|
|
23264
|
-
|
|
23265
|
-
|
|
23266
|
-
|
|
23267
|
-
|
|
23480
|
+
AttesterSlashing: ContainerType<{
|
|
23481
|
+
attestation1: ContainerType<{
|
|
23482
|
+
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
23483
|
+
data: ContainerType<{
|
|
23484
|
+
slot: import("@chainsafe/ssz").UintBigintType;
|
|
23485
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
23486
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23487
|
+
source: ContainerType<{
|
|
23488
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
23489
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
23490
|
+
}>;
|
|
23491
|
+
target: ContainerType<{
|
|
23492
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
23493
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
23494
|
+
}>;
|
|
23495
|
+
}>;
|
|
23496
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
23497
|
+
}>;
|
|
23498
|
+
attestation2: ContainerType<{
|
|
23499
|
+
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
23500
|
+
data: ContainerType<{
|
|
23501
|
+
slot: import("@chainsafe/ssz").UintBigintType;
|
|
23502
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
23503
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23504
|
+
source: ContainerType<{
|
|
23505
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
23506
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
23507
|
+
}>;
|
|
23508
|
+
target: ContainerType<{
|
|
23509
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
23510
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
23511
|
+
}>;
|
|
23268
23512
|
}>;
|
|
23269
23513
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
23270
23514
|
}>;
|
|
23271
|
-
kzgCommitmentsInclusionProof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
23272
23515
|
}>;
|
|
23273
|
-
|
|
23274
|
-
|
|
23275
|
-
|
|
23276
|
-
|
|
23277
|
-
|
|
23278
|
-
signedBlockHeader: ContainerType<{
|
|
23279
|
-
message: ContainerType<{
|
|
23516
|
+
AggregateAndProof: ContainerType<{
|
|
23517
|
+
aggregatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
23518
|
+
aggregate: ContainerType<{
|
|
23519
|
+
aggregationBits: import("@chainsafe/ssz").BitListType;
|
|
23520
|
+
data: ContainerType<{
|
|
23280
23521
|
slot: import("@chainsafe/ssz").UintNumberType;
|
|
23281
|
-
|
|
23282
|
-
|
|
23283
|
-
|
|
23284
|
-
|
|
23522
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
23523
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23524
|
+
source: ContainerType<{
|
|
23525
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
23526
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
23527
|
+
}>;
|
|
23528
|
+
target: ContainerType<{
|
|
23529
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
23530
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
23531
|
+
}>;
|
|
23285
23532
|
}>;
|
|
23286
23533
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
23534
|
+
committeeBits: import("@chainsafe/ssz").BitVectorType;
|
|
23287
23535
|
}>;
|
|
23288
|
-
|
|
23289
|
-
}>>;
|
|
23290
|
-
MatrixEntry: ContainerType<{
|
|
23291
|
-
cell: import("@chainsafe/ssz").ByteVectorType;
|
|
23292
|
-
kzgProof: import("@chainsafe/ssz").ByteVectorType;
|
|
23293
|
-
columnIndex: import("@chainsafe/ssz").UintNumberType;
|
|
23294
|
-
rowIndex: import("@chainsafe/ssz").UintNumberType;
|
|
23536
|
+
selectionProof: import("@chainsafe/ssz").ByteVectorType;
|
|
23295
23537
|
}>;
|
|
23296
|
-
|
|
23297
|
-
|
|
23298
|
-
|
|
23538
|
+
SignedAggregateAndProof: ContainerType<{
|
|
23539
|
+
message: ContainerType<{
|
|
23540
|
+
aggregatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
23541
|
+
aggregate: ContainerType<{
|
|
23542
|
+
aggregationBits: import("@chainsafe/ssz").BitListType;
|
|
23543
|
+
data: ContainerType<{
|
|
23544
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
23545
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
23546
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23547
|
+
source: ContainerType<{
|
|
23548
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
23549
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
23550
|
+
}>;
|
|
23551
|
+
target: ContainerType<{
|
|
23552
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
23553
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
23554
|
+
}>;
|
|
23555
|
+
}>;
|
|
23556
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
23557
|
+
committeeBits: import("@chainsafe/ssz").BitVectorType;
|
|
23558
|
+
}>;
|
|
23559
|
+
selectionProof: import("@chainsafe/ssz").ByteVectorType;
|
|
23560
|
+
}>;
|
|
23561
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
23562
|
+
}>;
|
|
23563
|
+
DepositRequest: ContainerType<{
|
|
23564
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
23565
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
23566
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
23567
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
23568
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
23569
|
+
}>;
|
|
23570
|
+
DepositRequests: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
23571
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
23572
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
23573
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
23574
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
23575
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
23576
|
+
}>>;
|
|
23577
|
+
WithdrawalRequest: ContainerType<{
|
|
23578
|
+
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
23579
|
+
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
23580
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
23299
23581
|
}>;
|
|
23300
|
-
|
|
23301
|
-
|
|
23302
|
-
|
|
23582
|
+
WithdrawalRequests: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
23583
|
+
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
23584
|
+
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
23585
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
23303
23586
|
}>>;
|
|
23304
|
-
|
|
23305
|
-
|
|
23306
|
-
|
|
23307
|
-
|
|
23587
|
+
ConsolidationRequest: ContainerType<{
|
|
23588
|
+
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
23589
|
+
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
23590
|
+
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
23308
23591
|
}>;
|
|
23309
|
-
|
|
23310
|
-
|
|
23311
|
-
|
|
23592
|
+
ConsolidationRequests: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
23593
|
+
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
23594
|
+
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
23595
|
+
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
23596
|
+
}>>;
|
|
23597
|
+
ExecutionRequests: ContainerType<{
|
|
23598
|
+
deposits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
23599
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
23600
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
23601
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
23602
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
23603
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
23604
|
+
}>>;
|
|
23312
23605
|
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
23313
|
-
|
|
23314
|
-
|
|
23315
|
-
address: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
23606
|
+
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
23607
|
+
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
23316
23608
|
amount: import("@chainsafe/ssz").UintBigintType;
|
|
23317
23609
|
}>>;
|
|
23318
|
-
|
|
23610
|
+
consolidations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
23611
|
+
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
23612
|
+
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
23613
|
+
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
23614
|
+
}>>;
|
|
23615
|
+
}>;
|
|
23616
|
+
ExecutionPayloadHeader: ContainerType<{
|
|
23617
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
23618
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
23619
|
+
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23620
|
+
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23319
23621
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
23320
23622
|
feeRecipient: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
23321
23623
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -23330,11 +23632,16 @@ export declare const fulu: {
|
|
|
23330
23632
|
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
23331
23633
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
23332
23634
|
}>;
|
|
23333
|
-
|
|
23635
|
+
ExecutionPayload: ContainerType<{
|
|
23334
23636
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
23335
23637
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
23336
|
-
|
|
23337
|
-
|
|
23638
|
+
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
23639
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
23640
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
23641
|
+
address: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
23642
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
23643
|
+
}>>;
|
|
23644
|
+
transactions: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
23338
23645
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
23339
23646
|
feeRecipient: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
23340
23647
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -23835,28 +24142,6 @@ export declare const fulu: {
|
|
|
23835
24142
|
}>;
|
|
23836
24143
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
23837
24144
|
}>;
|
|
23838
|
-
BlobSidecar: ContainerType<{
|
|
23839
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
23840
|
-
blob: import("@chainsafe/ssz").ByteVectorType;
|
|
23841
|
-
kzgCommitment: import("@chainsafe/ssz").ByteVectorType;
|
|
23842
|
-
kzgProof: import("@chainsafe/ssz").ByteVectorType;
|
|
23843
|
-
signedBlockHeader: ContainerType<{
|
|
23844
|
-
message: ContainerType<{
|
|
23845
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
23846
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
23847
|
-
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23848
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23849
|
-
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23850
|
-
}>;
|
|
23851
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
23852
|
-
}>;
|
|
23853
|
-
kzgCommitmentInclusionProof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
23854
|
-
}>;
|
|
23855
|
-
BlobsBundle: ContainerType<{
|
|
23856
|
-
commitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
23857
|
-
proofs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
23858
|
-
blobs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
23859
|
-
}>;
|
|
23860
24145
|
BlindedBeaconBlockBody: ContainerType<{
|
|
23861
24146
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
23862
24147
|
eth1Data: ContainerType<{
|
|
@@ -24417,173 +24702,38 @@ export declare const fulu: {
|
|
|
24417
24702
|
}>;
|
|
24418
24703
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
24419
24704
|
}>;
|
|
24420
|
-
|
|
24421
|
-
|
|
24422
|
-
|
|
24423
|
-
|
|
24424
|
-
|
|
24425
|
-
|
|
24426
|
-
|
|
24427
|
-
|
|
24428
|
-
|
|
24429
|
-
|
|
24430
|
-
|
|
24431
|
-
|
|
24432
|
-
|
|
24433
|
-
|
|
24434
|
-
|
|
24435
|
-
|
|
24436
|
-
|
|
24437
|
-
|
|
24438
|
-
|
|
24439
|
-
|
|
24440
|
-
|
|
24441
|
-
|
|
24442
|
-
|
|
24443
|
-
|
|
24444
|
-
|
|
24445
|
-
|
|
24446
|
-
|
|
24447
|
-
|
|
24448
|
-
|
|
24449
|
-
|
|
24450
|
-
|
|
24451
|
-
|
|
24452
|
-
proposerLookahead: import("@chainsafe/ssz").VectorBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
24453
|
-
genesisTime: import("@chainsafe/ssz").UintNumberType;
|
|
24454
|
-
genesisValidatorsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
24455
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
24456
|
-
fork: ContainerType<{
|
|
24457
|
-
previousVersion: import("@chainsafe/ssz").ByteVectorType;
|
|
24458
|
-
currentVersion: import("@chainsafe/ssz").ByteVectorType;
|
|
24459
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
24460
|
-
}>;
|
|
24461
|
-
latestBlockHeader: ContainerType<{
|
|
24462
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
24463
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
24464
|
-
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
24465
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
24466
|
-
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
24467
|
-
}>;
|
|
24468
|
-
blockRoots: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
24469
|
-
stateRoots: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
24470
|
-
historicalRoots: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
24471
|
-
eth1Data: ContainerType<{
|
|
24472
|
-
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
24473
|
-
depositCount: import("@chainsafe/ssz").UintNumberType;
|
|
24474
|
-
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
24475
|
-
}>;
|
|
24476
|
-
eth1DataVotes: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
24477
|
-
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
24478
|
-
depositCount: import("@chainsafe/ssz").UintNumberType;
|
|
24479
|
-
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
24480
|
-
}>>;
|
|
24481
|
-
eth1DepositIndex: import("@chainsafe/ssz").UintNumberType;
|
|
24482
|
-
validators: import("@chainsafe/ssz").ListCompositeType<import("./phase0/validator.js").ValidatorNodeStructType>;
|
|
24483
|
-
balances: import("@chainsafe/ssz").ListUintNum64Type;
|
|
24484
|
-
randaoMixes: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
24485
|
-
slashings: import("@chainsafe/ssz").VectorBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
24486
|
-
previousEpochParticipation: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
24487
|
-
currentEpochParticipation: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
24488
|
-
justificationBits: import("@chainsafe/ssz").BitVectorType;
|
|
24489
|
-
previousJustifiedCheckpoint: ContainerType<{
|
|
24490
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
24491
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
24492
|
-
}>;
|
|
24493
|
-
currentJustifiedCheckpoint: ContainerType<{
|
|
24494
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
24495
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
24496
|
-
}>;
|
|
24497
|
-
finalizedCheckpoint: ContainerType<{
|
|
24498
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
24499
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
24500
|
-
}>;
|
|
24501
|
-
inactivityScores: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
24502
|
-
currentSyncCommittee: ContainerType<{
|
|
24503
|
-
pubkeys: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
24504
|
-
aggregatePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
24505
|
-
}>;
|
|
24506
|
-
nextSyncCommittee: ContainerType<{
|
|
24507
|
-
pubkeys: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
24508
|
-
aggregatePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
24509
|
-
}>;
|
|
24510
|
-
latestExecutionPayloadHeader: ContainerType<{
|
|
24511
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
24512
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
24513
|
-
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
24514
|
-
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
24515
|
-
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
24516
|
-
feeRecipient: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
24517
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
24518
|
-
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
24519
|
-
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
24520
|
-
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
24521
|
-
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
24522
|
-
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
24523
|
-
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
24524
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
24525
|
-
extraData: import("@chainsafe/ssz").ByteListType;
|
|
24526
|
-
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
24527
|
-
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
24528
|
-
}>;
|
|
24529
|
-
nextWithdrawalIndex: import("@chainsafe/ssz").UintNumberType;
|
|
24530
|
-
nextWithdrawalValidatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
24531
|
-
historicalSummaries: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
24532
|
-
blockSummaryRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
24533
|
-
stateSummaryRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
24534
|
-
}>>;
|
|
24535
|
-
depositRequestsStartIndex: import("@chainsafe/ssz").UintBigintType;
|
|
24536
|
-
depositBalanceToConsume: import("@chainsafe/ssz").UintBigintType;
|
|
24537
|
-
exitBalanceToConsume: import("@chainsafe/ssz").UintBigintType;
|
|
24538
|
-
earliestExitEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
24539
|
-
consolidationBalanceToConsume: import("@chainsafe/ssz").UintBigintType;
|
|
24540
|
-
earliestConsolidationEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
24541
|
-
pendingDeposits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
24542
|
-
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
24543
|
-
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
24544
|
-
amount: import("@chainsafe/ssz").UintNumberType;
|
|
24545
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
24546
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
24547
|
-
}>>;
|
|
24548
|
-
pendingPartialWithdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
24549
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
24550
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
24551
|
-
withdrawableEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
24552
|
-
}>>;
|
|
24553
|
-
pendingConsolidations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
24554
|
-
sourceIndex: import("@chainsafe/ssz").UintNumberType;
|
|
24555
|
-
targetIndex: import("@chainsafe/ssz").UintNumberType;
|
|
24556
|
-
}>>;
|
|
24557
|
-
}>;
|
|
24558
|
-
LightClientHeader: ContainerType<{
|
|
24559
|
-
beacon: ContainerType<{
|
|
24560
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
24561
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
24562
|
-
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
24563
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
24564
|
-
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
24565
|
-
}>;
|
|
24566
|
-
execution: ContainerType<{
|
|
24567
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
24568
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
24569
|
-
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
24570
|
-
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
24571
|
-
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
24572
|
-
feeRecipient: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
24573
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
24574
|
-
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
24575
|
-
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
24576
|
-
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
24577
|
-
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
24578
|
-
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
24579
|
-
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
24580
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
24581
|
-
extraData: import("@chainsafe/ssz").ByteListType;
|
|
24582
|
-
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
24583
|
-
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
24584
|
-
}>;
|
|
24585
|
-
executionBranch: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
24586
|
-
}>;
|
|
24705
|
+
PendingDeposit: ContainerType<{
|
|
24706
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
24707
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
24708
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
24709
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
24710
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
24711
|
+
}>;
|
|
24712
|
+
PendingDeposits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
24713
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
24714
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
24715
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
24716
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
24717
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
24718
|
+
}>>;
|
|
24719
|
+
PendingPartialWithdrawal: ContainerType<{
|
|
24720
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
24721
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
24722
|
+
withdrawableEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
24723
|
+
}>;
|
|
24724
|
+
PendingPartialWithdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
24725
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
24726
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
24727
|
+
withdrawableEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
24728
|
+
}>>;
|
|
24729
|
+
PendingConsolidation: ContainerType<{
|
|
24730
|
+
sourceIndex: import("@chainsafe/ssz").UintNumberType;
|
|
24731
|
+
targetIndex: import("@chainsafe/ssz").UintNumberType;
|
|
24732
|
+
}>;
|
|
24733
|
+
PendingConsolidations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
24734
|
+
sourceIndex: import("@chainsafe/ssz").UintNumberType;
|
|
24735
|
+
targetIndex: import("@chainsafe/ssz").UintNumberType;
|
|
24736
|
+
}>>;
|
|
24587
24737
|
LightClientBootstrap: ContainerType<{
|
|
24588
24738
|
header: ContainerType<{
|
|
24589
24739
|
beacon: ContainerType<{
|
|
@@ -24902,6 +25052,18 @@ export declare const fulu: {
|
|
|
24902
25052
|
signatureSlot: import("@chainsafe/ssz").UintNumberType;
|
|
24903
25053
|
}>>;
|
|
24904
25054
|
}>;
|
|
25055
|
+
PayloadAttributes: ContainerType<{
|
|
25056
|
+
parentBeaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
25057
|
+
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
25058
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
25059
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
25060
|
+
address: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
25061
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
25062
|
+
}>>;
|
|
25063
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
25064
|
+
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
25065
|
+
suggestedFeeRecipient: import("./index.js").StringType<string>;
|
|
25066
|
+
}>;
|
|
24905
25067
|
SSEPayloadAttributes: ContainerType<{
|
|
24906
25068
|
payloadAttributes: ContainerType<{
|
|
24907
25069
|
parentBeaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -25192,337 +25354,84 @@ export declare const fulu: {
|
|
|
25192
25354
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
25193
25355
|
}>>;
|
|
25194
25356
|
syncAggregate: ContainerType<{
|
|
25195
|
-
syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
|
|
25196
|
-
syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
|
|
25197
|
-
}>;
|
|
25198
|
-
executionPayload: ContainerType<{
|
|
25199
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
25200
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
25201
|
-
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
25202
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
25203
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
25204
|
-
address: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
25205
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
25206
|
-
}>>;
|
|
25207
|
-
transactions: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
25208
|
-
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
25209
|
-
feeRecipient: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
25210
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
25211
|
-
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
25212
|
-
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
25213
|
-
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
25214
|
-
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
25215
|
-
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
25216
|
-
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
25217
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
25218
|
-
extraData: import("@chainsafe/ssz").ByteListType;
|
|
25219
|
-
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
25220
|
-
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
25221
|
-
}>;
|
|
25222
|
-
blsToExecutionChanges: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
25223
|
-
message: ContainerType<{
|
|
25224
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
25225
|
-
fromBlsPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
25226
|
-
toExecutionAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
25227
|
-
}>;
|
|
25228
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
25229
|
-
}>>;
|
|
25230
|
-
blobKzgCommitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
25231
|
-
executionRequests: ContainerType<{
|
|
25232
|
-
deposits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
25233
|
-
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
25234
|
-
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
25235
|
-
amount: import("@chainsafe/ssz").UintNumberType;
|
|
25236
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
25237
|
-
index: import("@chainsafe/ssz").UintBigintType;
|
|
25238
|
-
}>>;
|
|
25239
|
-
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
25240
|
-
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
25241
|
-
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
25242
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
25243
|
-
}>>;
|
|
25244
|
-
consolidations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
25245
|
-
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
25246
|
-
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
25247
|
-
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
25248
|
-
}>>;
|
|
25249
|
-
}>;
|
|
25250
|
-
}>;
|
|
25251
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
25252
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
25253
|
-
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
25254
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
25255
|
-
}>;
|
|
25256
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
25257
|
-
}>;
|
|
25258
|
-
kzgProofs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
25259
|
-
blobs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
25260
|
-
}>;
|
|
25261
|
-
CurrentSyncCommitteeBranch: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
25262
|
-
FinalityBranch: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
25263
|
-
NextSyncCommitteeBranch: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
25264
|
-
AggregationBits: import("@chainsafe/ssz").BitListType;
|
|
25265
|
-
CommitteeBits: import("@chainsafe/ssz").BitVectorType;
|
|
25266
|
-
AttestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
25267
|
-
Attestation: ContainerType<{
|
|
25268
|
-
aggregationBits: import("@chainsafe/ssz").BitListType;
|
|
25269
|
-
data: ContainerType<{
|
|
25270
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
25271
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
25272
|
-
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
25273
|
-
source: ContainerType<{
|
|
25274
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
25275
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
25276
|
-
}>;
|
|
25277
|
-
target: ContainerType<{
|
|
25278
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
25279
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
25280
|
-
}>;
|
|
25281
|
-
}>;
|
|
25282
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
25283
|
-
committeeBits: import("@chainsafe/ssz").BitVectorType;
|
|
25284
|
-
}>;
|
|
25285
|
-
SingleAttestation: ContainerType<{
|
|
25286
|
-
committeeIndex: import("@chainsafe/ssz").UintNumberType;
|
|
25287
|
-
attesterIndex: import("@chainsafe/ssz").UintNumberType;
|
|
25288
|
-
data: ContainerType<{
|
|
25289
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
25290
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
25291
|
-
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
25292
|
-
source: ContainerType<{
|
|
25293
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
25294
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
25295
|
-
}>;
|
|
25296
|
-
target: ContainerType<{
|
|
25297
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
25298
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
25299
|
-
}>;
|
|
25300
|
-
}>;
|
|
25301
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
25302
|
-
}>;
|
|
25303
|
-
IndexedAttestation: ContainerType<{
|
|
25304
|
-
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
25305
|
-
data: ContainerType<{
|
|
25306
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
25307
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
25308
|
-
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
25309
|
-
source: ContainerType<{
|
|
25310
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
25311
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
25312
|
-
}>;
|
|
25313
|
-
target: ContainerType<{
|
|
25314
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
25315
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
25316
|
-
}>;
|
|
25317
|
-
}>;
|
|
25318
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
25319
|
-
}>;
|
|
25320
|
-
IndexedAttestationBigint: ContainerType<{
|
|
25321
|
-
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
25322
|
-
data: ContainerType<{
|
|
25323
|
-
slot: import("@chainsafe/ssz").UintBigintType;
|
|
25324
|
-
index: import("@chainsafe/ssz").UintBigintType;
|
|
25325
|
-
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
25326
|
-
source: ContainerType<{
|
|
25327
|
-
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
25328
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
25329
|
-
}>;
|
|
25330
|
-
target: ContainerType<{
|
|
25331
|
-
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
25332
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
25333
|
-
}>;
|
|
25334
|
-
}>;
|
|
25335
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
25336
|
-
}>;
|
|
25337
|
-
AttesterSlashing: ContainerType<{
|
|
25338
|
-
attestation1: ContainerType<{
|
|
25339
|
-
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
25340
|
-
data: ContainerType<{
|
|
25341
|
-
slot: import("@chainsafe/ssz").UintBigintType;
|
|
25342
|
-
index: import("@chainsafe/ssz").UintBigintType;
|
|
25343
|
-
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
25344
|
-
source: ContainerType<{
|
|
25345
|
-
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
25346
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
25347
|
-
}>;
|
|
25348
|
-
target: ContainerType<{
|
|
25349
|
-
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
25350
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
25351
|
-
}>;
|
|
25352
|
-
}>;
|
|
25353
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
25354
|
-
}>;
|
|
25355
|
-
attestation2: ContainerType<{
|
|
25356
|
-
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
25357
|
-
data: ContainerType<{
|
|
25358
|
-
slot: import("@chainsafe/ssz").UintBigintType;
|
|
25359
|
-
index: import("@chainsafe/ssz").UintBigintType;
|
|
25360
|
-
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
25361
|
-
source: ContainerType<{
|
|
25362
|
-
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
25363
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
25364
|
-
}>;
|
|
25365
|
-
target: ContainerType<{
|
|
25366
|
-
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
25367
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
25368
|
-
}>;
|
|
25369
|
-
}>;
|
|
25370
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
25371
|
-
}>;
|
|
25372
|
-
}>;
|
|
25373
|
-
AggregateAndProof: ContainerType<{
|
|
25374
|
-
aggregatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
25375
|
-
aggregate: ContainerType<{
|
|
25376
|
-
aggregationBits: import("@chainsafe/ssz").BitListType;
|
|
25377
|
-
data: ContainerType<{
|
|
25378
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
25379
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
25380
|
-
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
25381
|
-
source: ContainerType<{
|
|
25382
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
25383
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
25384
|
-
}>;
|
|
25385
|
-
target: ContainerType<{
|
|
25386
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
25387
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
25388
|
-
}>;
|
|
25389
|
-
}>;
|
|
25390
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
25391
|
-
committeeBits: import("@chainsafe/ssz").BitVectorType;
|
|
25392
|
-
}>;
|
|
25393
|
-
selectionProof: import("@chainsafe/ssz").ByteVectorType;
|
|
25394
|
-
}>;
|
|
25395
|
-
SignedAggregateAndProof: ContainerType<{
|
|
25396
|
-
message: ContainerType<{
|
|
25397
|
-
aggregatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
25398
|
-
aggregate: ContainerType<{
|
|
25399
|
-
aggregationBits: import("@chainsafe/ssz").BitListType;
|
|
25400
|
-
data: ContainerType<{
|
|
25401
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
25402
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
25403
|
-
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
25404
|
-
source: ContainerType<{
|
|
25405
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
25406
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
25357
|
+
syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
|
|
25358
|
+
syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
|
|
25407
25359
|
}>;
|
|
25408
|
-
|
|
25409
|
-
|
|
25410
|
-
|
|
25360
|
+
executionPayload: ContainerType<{
|
|
25361
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
25362
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
25363
|
+
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
25364
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
25365
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
25366
|
+
address: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
25367
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
25368
|
+
}>>;
|
|
25369
|
+
transactions: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
25370
|
+
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
25371
|
+
feeRecipient: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
25372
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
25373
|
+
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
25374
|
+
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
25375
|
+
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
25376
|
+
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
25377
|
+
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
25378
|
+
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
25379
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
25380
|
+
extraData: import("@chainsafe/ssz").ByteListType;
|
|
25381
|
+
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
25382
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
25383
|
+
}>;
|
|
25384
|
+
blsToExecutionChanges: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
25385
|
+
message: ContainerType<{
|
|
25386
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
25387
|
+
fromBlsPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
25388
|
+
toExecutionAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
25389
|
+
}>;
|
|
25390
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
25391
|
+
}>>;
|
|
25392
|
+
blobKzgCommitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
25393
|
+
executionRequests: ContainerType<{
|
|
25394
|
+
deposits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
25395
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
25396
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
25397
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
25398
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
25399
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
25400
|
+
}>>;
|
|
25401
|
+
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
25402
|
+
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
25403
|
+
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
25404
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
25405
|
+
}>>;
|
|
25406
|
+
consolidations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
25407
|
+
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
25408
|
+
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
25409
|
+
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
25410
|
+
}>>;
|
|
25411
25411
|
}>;
|
|
25412
25412
|
}>;
|
|
25413
|
-
|
|
25414
|
-
|
|
25413
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
25414
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
25415
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
25416
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
25415
25417
|
}>;
|
|
25416
|
-
selectionProof: import("@chainsafe/ssz").ByteVectorType;
|
|
25417
|
-
}>;
|
|
25418
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
25419
|
-
}>;
|
|
25420
|
-
DepositRequest: ContainerType<{
|
|
25421
|
-
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
25422
|
-
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
25423
|
-
amount: import("@chainsafe/ssz").UintNumberType;
|
|
25424
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
25425
|
-
index: import("@chainsafe/ssz").UintBigintType;
|
|
25426
|
-
}>;
|
|
25427
|
-
DepositRequests: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
25428
|
-
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
25429
|
-
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
25430
|
-
amount: import("@chainsafe/ssz").UintNumberType;
|
|
25431
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
25432
|
-
index: import("@chainsafe/ssz").UintBigintType;
|
|
25433
|
-
}>>;
|
|
25434
|
-
WithdrawalRequest: ContainerType<{
|
|
25435
|
-
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
25436
|
-
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
25437
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
25438
|
-
}>;
|
|
25439
|
-
WithdrawalRequests: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
25440
|
-
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
25441
|
-
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
25442
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
25443
|
-
}>>;
|
|
25444
|
-
ConsolidationRequest: ContainerType<{
|
|
25445
|
-
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
25446
|
-
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
25447
|
-
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
25448
|
-
}>;
|
|
25449
|
-
ConsolidationRequests: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
25450
|
-
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
25451
|
-
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
25452
|
-
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
25453
|
-
}>>;
|
|
25454
|
-
ExecutionRequests: ContainerType<{
|
|
25455
|
-
deposits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
25456
|
-
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
25457
|
-
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
25458
|
-
amount: import("@chainsafe/ssz").UintNumberType;
|
|
25459
25418
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
25460
|
-
|
|
25461
|
-
|
|
25462
|
-
|
|
25463
|
-
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
25464
|
-
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
25465
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
25466
|
-
}>>;
|
|
25467
|
-
consolidations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
25468
|
-
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
25469
|
-
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
25470
|
-
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
25471
|
-
}>>;
|
|
25472
|
-
}>;
|
|
25473
|
-
PendingDeposit: ContainerType<{
|
|
25474
|
-
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
25475
|
-
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
25476
|
-
amount: import("@chainsafe/ssz").UintNumberType;
|
|
25477
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
25478
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
25479
|
-
}>;
|
|
25480
|
-
PendingDeposits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
25481
|
-
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
25482
|
-
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
25483
|
-
amount: import("@chainsafe/ssz").UintNumberType;
|
|
25484
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
25485
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
25486
|
-
}>>;
|
|
25487
|
-
PendingPartialWithdrawal: ContainerType<{
|
|
25488
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
25489
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
25490
|
-
withdrawableEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
25491
|
-
}>;
|
|
25492
|
-
PendingPartialWithdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
25493
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
25494
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
25495
|
-
withdrawableEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
25496
|
-
}>>;
|
|
25497
|
-
PendingConsolidation: ContainerType<{
|
|
25498
|
-
sourceIndex: import("@chainsafe/ssz").UintNumberType;
|
|
25499
|
-
targetIndex: import("@chainsafe/ssz").UintNumberType;
|
|
25500
|
-
}>;
|
|
25501
|
-
PendingConsolidations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
25502
|
-
sourceIndex: import("@chainsafe/ssz").UintNumberType;
|
|
25503
|
-
targetIndex: import("@chainsafe/ssz").UintNumberType;
|
|
25504
|
-
}>>;
|
|
25505
|
-
PayloadAttributes: ContainerType<{
|
|
25506
|
-
parentBeaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
25507
|
-
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
25508
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
25509
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
25510
|
-
address: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
25511
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
25512
|
-
}>>;
|
|
25513
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
25514
|
-
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
25515
|
-
suggestedFeeRecipient: import("./index.js").StringType<string>;
|
|
25419
|
+
}>;
|
|
25420
|
+
kzgProofs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
25421
|
+
blobs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
25516
25422
|
}>;
|
|
25517
25423
|
G1Point: import("@chainsafe/ssz").ByteVectorType;
|
|
25518
25424
|
G2Point: import("@chainsafe/ssz").ByteVectorType;
|
|
25519
25425
|
BLSFieldElement: import("@chainsafe/ssz").ByteVectorType;
|
|
25520
25426
|
KZGCommitment: import("@chainsafe/ssz").ByteVectorType;
|
|
25427
|
+
KZGProof: import("@chainsafe/ssz").ByteVectorType;
|
|
25428
|
+
Blob: import("@chainsafe/ssz").ByteVectorType;
|
|
25521
25429
|
Blobs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
25522
25430
|
BlindedBlob: import("@chainsafe/ssz").ByteVectorType;
|
|
25523
25431
|
BlindedBlobs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
25524
25432
|
VersionedHash: import("@chainsafe/ssz").ByteVectorType;
|
|
25525
25433
|
BlobKzgCommitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
25434
|
+
KZGProofs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
25526
25435
|
BlobSidecarsByRangeRequest: ContainerType<{
|
|
25527
25436
|
startSlot: import("@chainsafe/ssz").UintNumberType;
|
|
25528
25437
|
count: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -25532,6 +25441,23 @@ export declare const fulu: {
|
|
|
25532
25441
|
index: import("@chainsafe/ssz").UintNumberType;
|
|
25533
25442
|
}>;
|
|
25534
25443
|
KzgCommitmentInclusionProof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
25444
|
+
BlobSidecar: ContainerType<{
|
|
25445
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
25446
|
+
blob: import("@chainsafe/ssz").ByteVectorType;
|
|
25447
|
+
kzgCommitment: import("@chainsafe/ssz").ByteVectorType;
|
|
25448
|
+
kzgProof: import("@chainsafe/ssz").ByteVectorType;
|
|
25449
|
+
signedBlockHeader: ContainerType<{
|
|
25450
|
+
message: ContainerType<{
|
|
25451
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
25452
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
25453
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
25454
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
25455
|
+
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
25456
|
+
}>;
|
|
25457
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
25458
|
+
}>;
|
|
25459
|
+
kzgCommitmentInclusionProof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
25460
|
+
}>;
|
|
25535
25461
|
BlobSidecars: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
25536
25462
|
index: import("@chainsafe/ssz").UintNumberType;
|
|
25537
25463
|
blob: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -25549,6 +25475,71 @@ export declare const fulu: {
|
|
|
25549
25475
|
}>;
|
|
25550
25476
|
kzgCommitmentInclusionProof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
25551
25477
|
}>>;
|
|
25478
|
+
BlobsBundle: ContainerType<{
|
|
25479
|
+
commitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
25480
|
+
proofs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
25481
|
+
blobs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
25482
|
+
}>;
|
|
25483
|
+
ExecutionPayloadAndBlobsBundle: ContainerType<{
|
|
25484
|
+
executionPayload: ContainerType<{
|
|
25485
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
25486
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
25487
|
+
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
25488
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
25489
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
25490
|
+
address: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
25491
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
25492
|
+
}>>;
|
|
25493
|
+
transactions: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
25494
|
+
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
25495
|
+
feeRecipient: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
25496
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
25497
|
+
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
25498
|
+
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
25499
|
+
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
25500
|
+
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
25501
|
+
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
25502
|
+
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
25503
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
25504
|
+
extraData: import("@chainsafe/ssz").ByteListType;
|
|
25505
|
+
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
25506
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
25507
|
+
}>;
|
|
25508
|
+
blobsBundle: ContainerType<{
|
|
25509
|
+
commitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
25510
|
+
proofs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
25511
|
+
blobs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
25512
|
+
}>;
|
|
25513
|
+
}>;
|
|
25514
|
+
LightClientHeader: ContainerType<{
|
|
25515
|
+
beacon: ContainerType<{
|
|
25516
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
25517
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
25518
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
25519
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
25520
|
+
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
25521
|
+
}>;
|
|
25522
|
+
execution: ContainerType<{
|
|
25523
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
25524
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
25525
|
+
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
25526
|
+
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
25527
|
+
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
25528
|
+
feeRecipient: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
25529
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
25530
|
+
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
25531
|
+
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
25532
|
+
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
25533
|
+
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
25534
|
+
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
25535
|
+
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
25536
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
25537
|
+
extraData: import("@chainsafe/ssz").ByteListType;
|
|
25538
|
+
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
25539
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
25540
|
+
}>;
|
|
25541
|
+
executionBranch: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
25542
|
+
}>;
|
|
25552
25543
|
ExecutionBranch: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
25553
25544
|
Withdrawal: ContainerType<{
|
|
25554
25545
|
index: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -25923,6 +25914,13 @@ export declare const fulu: {
|
|
|
25923
25914
|
committeeIndex: import("@chainsafe/ssz").UintNumberType;
|
|
25924
25915
|
slot: import("@chainsafe/ssz").UintNumberType;
|
|
25925
25916
|
}>;
|
|
25917
|
+
Status: ContainerType<{
|
|
25918
|
+
forkDigest: import("@chainsafe/ssz").ByteVectorType;
|
|
25919
|
+
finalizedRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
25920
|
+
finalizedEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
25921
|
+
headRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
25922
|
+
headSlot: import("@chainsafe/ssz").UintNumberType;
|
|
25923
|
+
}>;
|
|
25926
25924
|
Goodbye: import("@chainsafe/ssz").UintBigintType;
|
|
25927
25925
|
Ping: import("@chainsafe/ssz").UintBigintType;
|
|
25928
25926
|
BeaconBlocksByRangeRequest: ContainerType<{
|