@lodestar/types 1.29.0-dev.f87bd54721 → 1.29.0-peerDAS.6f41bcbc95
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/index.d.ts +5 -0
- package/lib/fulu/index.js +5 -0
- package/lib/fulu/index.js.map +1 -0
- package/lib/fulu/sszTypes.d.ts +2013 -0
- package/lib/fulu/sszTypes.js +115 -0
- package/lib/fulu/sszTypes.js.map +1 -0
- package/lib/fulu/types.d.ts +42 -0
- package/lib/fulu/types.js +2 -0
- package/lib/fulu/types.js.map +1 -0
- package/lib/primitive/sszTypes.d.ts +2 -0
- package/lib/primitive/sszTypes.js +2 -0
- package/lib/primitive/sszTypes.js.map +1 -1
- package/lib/primitive/types.d.ts +2 -0
- package/lib/sszTypes.d.ts +402 -343
- package/lib/sszTypes.js +3 -2
- package/lib/sszTypes.js.map +1 -1
- package/lib/types.d.ts +23 -21
- package/lib/types.js +1 -0
- package/lib/types.js.map +1 -1
- package/package.json +3 -3
package/lib/sszTypes.d.ts
CHANGED
|
@@ -5,9 +5,10 @@ import { ssz as bellatrix } from "./bellatrix/index.js";
|
|
|
5
5
|
import { ssz as capella } from "./capella/index.js";
|
|
6
6
|
import { ssz as deneb } from "./deneb/index.js";
|
|
7
7
|
import { ssz as electra } from "./electra/index.js";
|
|
8
|
+
import { ssz as fulu } from "./fulu/index.js";
|
|
8
9
|
import { ssz as phase0 } from "./phase0/index.js";
|
|
9
10
|
export * from "./primitive/sszTypes.js";
|
|
10
|
-
export { phase0, altair, bellatrix, capella, deneb, electra,
|
|
11
|
+
export { phase0, altair, bellatrix, capella, deneb, electra, fulu };
|
|
11
12
|
/**
|
|
12
13
|
* Index the ssz types that differ by fork
|
|
13
14
|
* A record of AllForksSSZTypes indexed by fork
|
|
@@ -10254,220 +10255,81 @@ declare const typesByFork: {
|
|
|
10254
10255
|
}>;
|
|
10255
10256
|
};
|
|
10256
10257
|
fulu: {
|
|
10257
|
-
|
|
10258
|
-
|
|
10259
|
-
|
|
10260
|
-
|
|
10261
|
-
|
|
10262
|
-
|
|
10263
|
-
|
|
10264
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
10265
|
-
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10266
|
-
source: ContainerType<{
|
|
10267
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
10268
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
10269
|
-
}>;
|
|
10270
|
-
target: ContainerType<{
|
|
10271
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
10272
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
10273
|
-
}>;
|
|
10274
|
-
}>;
|
|
10275
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
10276
|
-
committeeBits: import("@chainsafe/ssz").BitVectorType;
|
|
10277
|
-
}>;
|
|
10278
|
-
SingleAttestation: ContainerType<{
|
|
10279
|
-
committeeIndex: import("@chainsafe/ssz").UintNumberType;
|
|
10280
|
-
attesterIndex: import("@chainsafe/ssz").UintNumberType;
|
|
10281
|
-
data: ContainerType<{
|
|
10282
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
10283
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
10284
|
-
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10285
|
-
source: ContainerType<{
|
|
10286
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
10287
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
10288
|
-
}>;
|
|
10289
|
-
target: ContainerType<{
|
|
10290
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
10291
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
10292
|
-
}>;
|
|
10293
|
-
}>;
|
|
10294
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
10295
|
-
}>;
|
|
10296
|
-
IndexedAttestation: ContainerType<{
|
|
10297
|
-
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
10298
|
-
data: ContainerType<{
|
|
10299
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
10300
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
10301
|
-
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10302
|
-
source: ContainerType<{
|
|
10303
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
10304
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
10305
|
-
}>;
|
|
10306
|
-
target: ContainerType<{
|
|
10307
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
10308
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
10309
|
-
}>;
|
|
10310
|
-
}>;
|
|
10311
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
10312
|
-
}>;
|
|
10313
|
-
IndexedAttestationBigint: ContainerType<{
|
|
10314
|
-
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
10315
|
-
data: ContainerType<{
|
|
10316
|
-
slot: import("@chainsafe/ssz").UintBigintType;
|
|
10317
|
-
index: import("@chainsafe/ssz").UintBigintType;
|
|
10318
|
-
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10319
|
-
source: ContainerType<{
|
|
10320
|
-
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
10321
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
10322
|
-
}>;
|
|
10323
|
-
target: ContainerType<{
|
|
10324
|
-
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
10325
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
10326
|
-
}>;
|
|
10327
|
-
}>;
|
|
10328
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
10258
|
+
KZGProof: import("@chainsafe/ssz").ByteVectorType;
|
|
10259
|
+
Blob: import("@chainsafe/ssz").ByteVectorType;
|
|
10260
|
+
Metadata: ContainerType<{
|
|
10261
|
+
cgc: import("@chainsafe/ssz").UintNumberType;
|
|
10262
|
+
seqNumber: import("@chainsafe/ssz").UintBigintType;
|
|
10263
|
+
attnets: import("@chainsafe/ssz").BitVectorType;
|
|
10264
|
+
syncnets: import("@chainsafe/ssz").BitVectorType;
|
|
10329
10265
|
}>;
|
|
10330
|
-
|
|
10331
|
-
|
|
10332
|
-
|
|
10333
|
-
|
|
10334
|
-
|
|
10335
|
-
|
|
10336
|
-
|
|
10337
|
-
|
|
10338
|
-
|
|
10339
|
-
|
|
10340
|
-
|
|
10341
|
-
|
|
10342
|
-
|
|
10343
|
-
|
|
10344
|
-
|
|
10345
|
-
|
|
10346
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
10347
|
-
}>;
|
|
10348
|
-
attestation2: ContainerType<{
|
|
10349
|
-
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
10350
|
-
data: ContainerType<{
|
|
10351
|
-
slot: import("@chainsafe/ssz").UintBigintType;
|
|
10352
|
-
index: import("@chainsafe/ssz").UintBigintType;
|
|
10353
|
-
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10354
|
-
source: ContainerType<{
|
|
10355
|
-
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
10356
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
10357
|
-
}>;
|
|
10358
|
-
target: ContainerType<{
|
|
10359
|
-
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
10360
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
10361
|
-
}>;
|
|
10266
|
+
Cell: import("@chainsafe/ssz").ByteVectorType;
|
|
10267
|
+
DataColumn: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
10268
|
+
ExtendedMatrix: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
10269
|
+
KzgCommitmentsInclusionProof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
10270
|
+
DataColumnSidecar: ContainerType<{
|
|
10271
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
10272
|
+
column: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
10273
|
+
kzgCommitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
10274
|
+
kzgProofs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
10275
|
+
signedBlockHeader: ContainerType<{
|
|
10276
|
+
message: ContainerType<{
|
|
10277
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
10278
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
10279
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10280
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10281
|
+
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10362
10282
|
}>;
|
|
10363
10283
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
10364
10284
|
}>;
|
|
10285
|
+
kzgCommitmentsInclusionProof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
10365
10286
|
}>;
|
|
10366
|
-
|
|
10367
|
-
|
|
10368
|
-
|
|
10369
|
-
|
|
10370
|
-
|
|
10287
|
+
DataColumnSidecars: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
10288
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
10289
|
+
column: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
10290
|
+
kzgCommitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
10291
|
+
kzgProofs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
10292
|
+
signedBlockHeader: ContainerType<{
|
|
10293
|
+
message: ContainerType<{
|
|
10371
10294
|
slot: import("@chainsafe/ssz").UintNumberType;
|
|
10372
|
-
|
|
10373
|
-
|
|
10374
|
-
|
|
10375
|
-
|
|
10376
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
10377
|
-
}>;
|
|
10378
|
-
target: ContainerType<{
|
|
10379
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
10380
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
10381
|
-
}>;
|
|
10295
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
10296
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10297
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10298
|
+
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10382
10299
|
}>;
|
|
10383
10300
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
10384
|
-
committeeBits: import("@chainsafe/ssz").BitVectorType;
|
|
10385
|
-
}>;
|
|
10386
|
-
selectionProof: import("@chainsafe/ssz").ByteVectorType;
|
|
10387
|
-
}>;
|
|
10388
|
-
SignedAggregateAndProof: ContainerType<{
|
|
10389
|
-
message: ContainerType<{
|
|
10390
|
-
aggregatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
10391
|
-
aggregate: ContainerType<{
|
|
10392
|
-
aggregationBits: import("@chainsafe/ssz").BitListType;
|
|
10393
|
-
data: ContainerType<{
|
|
10394
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
10395
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
10396
|
-
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10397
|
-
source: ContainerType<{
|
|
10398
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
10399
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
10400
|
-
}>;
|
|
10401
|
-
target: ContainerType<{
|
|
10402
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
10403
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
10404
|
-
}>;
|
|
10405
|
-
}>;
|
|
10406
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
10407
|
-
committeeBits: import("@chainsafe/ssz").BitVectorType;
|
|
10408
|
-
}>;
|
|
10409
|
-
selectionProof: import("@chainsafe/ssz").ByteVectorType;
|
|
10410
10301
|
}>;
|
|
10411
|
-
|
|
10412
|
-
}>;
|
|
10413
|
-
DepositRequest: ContainerType<{
|
|
10414
|
-
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
10415
|
-
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
10416
|
-
amount: import("@chainsafe/ssz").UintNumberType;
|
|
10417
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
10418
|
-
index: import("@chainsafe/ssz").UintBigintType;
|
|
10419
|
-
}>;
|
|
10420
|
-
DepositRequests: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
10421
|
-
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
10422
|
-
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
10423
|
-
amount: import("@chainsafe/ssz").UintNumberType;
|
|
10424
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
10425
|
-
index: import("@chainsafe/ssz").UintBigintType;
|
|
10302
|
+
kzgCommitmentsInclusionProof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
10426
10303
|
}>>;
|
|
10427
|
-
|
|
10428
|
-
|
|
10429
|
-
|
|
10430
|
-
|
|
10304
|
+
MatrixEntry: ContainerType<{
|
|
10305
|
+
cell: import("@chainsafe/ssz").ByteVectorType;
|
|
10306
|
+
kzgProof: import("@chainsafe/ssz").ByteVectorType;
|
|
10307
|
+
columnIndex: import("@chainsafe/ssz").UintNumberType;
|
|
10308
|
+
rowIndex: import("@chainsafe/ssz").UintNumberType;
|
|
10431
10309
|
}>;
|
|
10432
|
-
|
|
10433
|
-
|
|
10434
|
-
|
|
10435
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
10436
|
-
}>>;
|
|
10437
|
-
ConsolidationRequest: ContainerType<{
|
|
10438
|
-
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
10439
|
-
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
10440
|
-
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
10310
|
+
DataColumnIdentifier: ContainerType<{
|
|
10311
|
+
blockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10312
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
10441
10313
|
}>;
|
|
10442
|
-
|
|
10443
|
-
|
|
10444
|
-
|
|
10445
|
-
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
10314
|
+
DataColumnSidecarsByRootRequest: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
10315
|
+
blockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10316
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
10446
10317
|
}>>;
|
|
10447
|
-
|
|
10448
|
-
|
|
10449
|
-
|
|
10450
|
-
|
|
10451
|
-
amount: import("@chainsafe/ssz").UintNumberType;
|
|
10452
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
10453
|
-
index: import("@chainsafe/ssz").UintBigintType;
|
|
10454
|
-
}>>;
|
|
10455
|
-
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
10456
|
-
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
10457
|
-
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
10458
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
10459
|
-
}>>;
|
|
10460
|
-
consolidations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
10461
|
-
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
10462
|
-
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
10463
|
-
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
10464
|
-
}>>;
|
|
10318
|
+
DataColumnSidecarsByRangeRequest: ContainerType<{
|
|
10319
|
+
startSlot: import("@chainsafe/ssz").UintNumberType;
|
|
10320
|
+
count: import("@chainsafe/ssz").UintNumberType;
|
|
10321
|
+
columns: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
10465
10322
|
}>;
|
|
10466
|
-
|
|
10323
|
+
ExecutionPayload: ContainerType<{
|
|
10467
10324
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
10468
10325
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
10469
|
-
|
|
10470
|
-
|
|
10326
|
+
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
10327
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
10328
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
10329
|
+
address: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
10330
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
10331
|
+
}>>;
|
|
10332
|
+
transactions: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
10471
10333
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
10472
10334
|
feeRecipient: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
10473
10335
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -10482,16 +10344,11 @@ declare const typesByFork: {
|
|
|
10482
10344
|
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
10483
10345
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
10484
10346
|
}>;
|
|
10485
|
-
|
|
10347
|
+
ExecutionPayloadHeader: ContainerType<{
|
|
10486
10348
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
10487
10349
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
10488
|
-
|
|
10489
|
-
|
|
10490
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
10491
|
-
address: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
10492
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
10493
|
-
}>>;
|
|
10494
|
-
transactions: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
10350
|
+
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10351
|
+
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10495
10352
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
10496
10353
|
feeRecipient: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
10497
10354
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -10992,15 +10849,32 @@ declare const typesByFork: {
|
|
|
10992
10849
|
}>;
|
|
10993
10850
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
10994
10851
|
}>;
|
|
10995
|
-
|
|
10996
|
-
|
|
10997
|
-
|
|
10998
|
-
|
|
10999
|
-
|
|
11000
|
-
|
|
11001
|
-
|
|
11002
|
-
|
|
11003
|
-
|
|
10852
|
+
BlobSidecar: ContainerType<{
|
|
10853
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
10854
|
+
blob: import("@chainsafe/ssz").ByteVectorType;
|
|
10855
|
+
kzgCommitment: import("@chainsafe/ssz").ByteVectorType;
|
|
10856
|
+
kzgProof: import("@chainsafe/ssz").ByteVectorType;
|
|
10857
|
+
signedBlockHeader: ContainerType<{
|
|
10858
|
+
message: ContainerType<{
|
|
10859
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
10860
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
10861
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10862
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10863
|
+
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10864
|
+
}>;
|
|
10865
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
10866
|
+
}>;
|
|
10867
|
+
kzgCommitmentInclusionProof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
10868
|
+
}>;
|
|
10869
|
+
BlindedBeaconBlockBody: ContainerType<{
|
|
10870
|
+
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
10871
|
+
eth1Data: ContainerType<{
|
|
10872
|
+
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10873
|
+
depositCount: import("@chainsafe/ssz").UintNumberType;
|
|
10874
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
10875
|
+
}>;
|
|
10876
|
+
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
10877
|
+
proposerSlashings: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
11004
10878
|
signedHeader1: ContainerType<{
|
|
11005
10879
|
message: ContainerType<{
|
|
11006
10880
|
slot: import("@chainsafe/ssz").UintBigintType;
|
|
@@ -11552,38 +11426,37 @@ declare const typesByFork: {
|
|
|
11552
11426
|
}>;
|
|
11553
11427
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
11554
11428
|
}>;
|
|
11555
|
-
|
|
11556
|
-
|
|
11557
|
-
|
|
11558
|
-
|
|
11559
|
-
|
|
11560
|
-
|
|
11561
|
-
|
|
11562
|
-
|
|
11563
|
-
|
|
11564
|
-
|
|
11565
|
-
|
|
11566
|
-
|
|
11567
|
-
|
|
11568
|
-
|
|
11569
|
-
|
|
11570
|
-
|
|
11571
|
-
|
|
11572
|
-
|
|
11573
|
-
|
|
11574
|
-
|
|
11575
|
-
|
|
11576
|
-
|
|
11577
|
-
|
|
11578
|
-
|
|
11579
|
-
|
|
11580
|
-
|
|
11581
|
-
|
|
11429
|
+
ExecutionPayloadAndBlobsBundle: ContainerType<{
|
|
11430
|
+
executionPayload: ContainerType<{
|
|
11431
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
11432
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
11433
|
+
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
11434
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
11435
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
11436
|
+
address: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
11437
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
11438
|
+
}>>;
|
|
11439
|
+
transactions: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
11440
|
+
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
11441
|
+
feeRecipient: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
11442
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
11443
|
+
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
11444
|
+
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
11445
|
+
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
11446
|
+
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
11447
|
+
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
11448
|
+
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
11449
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
11450
|
+
extraData: import("@chainsafe/ssz").ByteListType;
|
|
11451
|
+
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
11452
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
11453
|
+
}>;
|
|
11454
|
+
blobsBundle: ContainerType<{
|
|
11455
|
+
commitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
11456
|
+
proofs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
11457
|
+
blobs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
11458
|
+
}>;
|
|
11582
11459
|
}>;
|
|
11583
|
-
PendingConsolidations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
11584
|
-
sourceIndex: import("@chainsafe/ssz").UintNumberType;
|
|
11585
|
-
targetIndex: import("@chainsafe/ssz").UintNumberType;
|
|
11586
|
-
}>>;
|
|
11587
11460
|
BeaconState: ContainerType<{
|
|
11588
11461
|
genesisTime: import("@chainsafe/ssz").UintNumberType;
|
|
11589
11462
|
genesisValidatorsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -11690,6 +11563,35 @@ declare const typesByFork: {
|
|
|
11690
11563
|
targetIndex: import("@chainsafe/ssz").UintNumberType;
|
|
11691
11564
|
}>>;
|
|
11692
11565
|
}>;
|
|
11566
|
+
LightClientHeader: ContainerType<{
|
|
11567
|
+
beacon: ContainerType<{
|
|
11568
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
11569
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
11570
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
11571
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
11572
|
+
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
11573
|
+
}>;
|
|
11574
|
+
execution: ContainerType<{
|
|
11575
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
11576
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
11577
|
+
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
11578
|
+
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
11579
|
+
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
11580
|
+
feeRecipient: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
11581
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
11582
|
+
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
11583
|
+
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
11584
|
+
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
11585
|
+
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
11586
|
+
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
11587
|
+
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
11588
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
11589
|
+
extraData: import("@chainsafe/ssz").ByteListType;
|
|
11590
|
+
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
11591
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
11592
|
+
}>;
|
|
11593
|
+
executionBranch: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
11594
|
+
}>;
|
|
11693
11595
|
LightClientBootstrap: ContainerType<{
|
|
11694
11596
|
header: ContainerType<{
|
|
11695
11597
|
beacon: ContainerType<{
|
|
@@ -12008,18 +11910,6 @@ declare const typesByFork: {
|
|
|
12008
11910
|
signatureSlot: import("@chainsafe/ssz").UintNumberType;
|
|
12009
11911
|
}>>;
|
|
12010
11912
|
}>;
|
|
12011
|
-
PayloadAttributes: ContainerType<{
|
|
12012
|
-
parentBeaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12013
|
-
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
12014
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
12015
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
12016
|
-
address: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
12017
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
12018
|
-
}>>;
|
|
12019
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
12020
|
-
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
12021
|
-
suggestedFeeRecipient: import("./index.js").StringType<string>;
|
|
12022
|
-
}>;
|
|
12023
11913
|
SSEPayloadAttributes: ContainerType<{
|
|
12024
11914
|
payloadAttributes: ContainerType<{
|
|
12025
11915
|
parentBeaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -12376,12 +12266,263 @@ declare const typesByFork: {
|
|
|
12376
12266
|
kzgProofs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
12377
12267
|
blobs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
12378
12268
|
}>;
|
|
12269
|
+
AggregationBits: import("@chainsafe/ssz").BitListType;
|
|
12270
|
+
CommitteeBits: import("@chainsafe/ssz").BitVectorType;
|
|
12271
|
+
AttestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
12272
|
+
Attestation: ContainerType<{
|
|
12273
|
+
aggregationBits: import("@chainsafe/ssz").BitListType;
|
|
12274
|
+
data: ContainerType<{
|
|
12275
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
12276
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
12277
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12278
|
+
source: ContainerType<{
|
|
12279
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
12280
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
12281
|
+
}>;
|
|
12282
|
+
target: ContainerType<{
|
|
12283
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
12284
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
12285
|
+
}>;
|
|
12286
|
+
}>;
|
|
12287
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
12288
|
+
committeeBits: import("@chainsafe/ssz").BitVectorType;
|
|
12289
|
+
}>;
|
|
12290
|
+
SingleAttestation: ContainerType<{
|
|
12291
|
+
committeeIndex: import("@chainsafe/ssz").UintNumberType;
|
|
12292
|
+
attesterIndex: import("@chainsafe/ssz").UintNumberType;
|
|
12293
|
+
data: ContainerType<{
|
|
12294
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
12295
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
12296
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12297
|
+
source: ContainerType<{
|
|
12298
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
12299
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
12300
|
+
}>;
|
|
12301
|
+
target: ContainerType<{
|
|
12302
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
12303
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
12304
|
+
}>;
|
|
12305
|
+
}>;
|
|
12306
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
12307
|
+
}>;
|
|
12308
|
+
IndexedAttestation: ContainerType<{
|
|
12309
|
+
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
12310
|
+
data: ContainerType<{
|
|
12311
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
12312
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
12313
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12314
|
+
source: ContainerType<{
|
|
12315
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
12316
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
12317
|
+
}>;
|
|
12318
|
+
target: ContainerType<{
|
|
12319
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
12320
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
12321
|
+
}>;
|
|
12322
|
+
}>;
|
|
12323
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
12324
|
+
}>;
|
|
12325
|
+
IndexedAttestationBigint: ContainerType<{
|
|
12326
|
+
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
12327
|
+
data: ContainerType<{
|
|
12328
|
+
slot: import("@chainsafe/ssz").UintBigintType;
|
|
12329
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
12330
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12331
|
+
source: ContainerType<{
|
|
12332
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
12333
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
12334
|
+
}>;
|
|
12335
|
+
target: ContainerType<{
|
|
12336
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
12337
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
12338
|
+
}>;
|
|
12339
|
+
}>;
|
|
12340
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
12341
|
+
}>;
|
|
12342
|
+
AttesterSlashing: ContainerType<{
|
|
12343
|
+
attestation1: ContainerType<{
|
|
12344
|
+
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
12345
|
+
data: ContainerType<{
|
|
12346
|
+
slot: import("@chainsafe/ssz").UintBigintType;
|
|
12347
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
12348
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12349
|
+
source: ContainerType<{
|
|
12350
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
12351
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
12352
|
+
}>;
|
|
12353
|
+
target: ContainerType<{
|
|
12354
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
12355
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
12356
|
+
}>;
|
|
12357
|
+
}>;
|
|
12358
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
12359
|
+
}>;
|
|
12360
|
+
attestation2: ContainerType<{
|
|
12361
|
+
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
12362
|
+
data: ContainerType<{
|
|
12363
|
+
slot: import("@chainsafe/ssz").UintBigintType;
|
|
12364
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
12365
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12366
|
+
source: ContainerType<{
|
|
12367
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
12368
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
12369
|
+
}>;
|
|
12370
|
+
target: ContainerType<{
|
|
12371
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
12372
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
12373
|
+
}>;
|
|
12374
|
+
}>;
|
|
12375
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
12376
|
+
}>;
|
|
12377
|
+
}>;
|
|
12378
|
+
AggregateAndProof: ContainerType<{
|
|
12379
|
+
aggregatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
12380
|
+
aggregate: ContainerType<{
|
|
12381
|
+
aggregationBits: import("@chainsafe/ssz").BitListType;
|
|
12382
|
+
data: ContainerType<{
|
|
12383
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
12384
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
12385
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12386
|
+
source: ContainerType<{
|
|
12387
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
12388
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
12389
|
+
}>;
|
|
12390
|
+
target: ContainerType<{
|
|
12391
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
12392
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
12393
|
+
}>;
|
|
12394
|
+
}>;
|
|
12395
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
12396
|
+
committeeBits: import("@chainsafe/ssz").BitVectorType;
|
|
12397
|
+
}>;
|
|
12398
|
+
selectionProof: import("@chainsafe/ssz").ByteVectorType;
|
|
12399
|
+
}>;
|
|
12400
|
+
SignedAggregateAndProof: ContainerType<{
|
|
12401
|
+
message: ContainerType<{
|
|
12402
|
+
aggregatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
12403
|
+
aggregate: ContainerType<{
|
|
12404
|
+
aggregationBits: import("@chainsafe/ssz").BitListType;
|
|
12405
|
+
data: ContainerType<{
|
|
12406
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
12407
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
12408
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12409
|
+
source: ContainerType<{
|
|
12410
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
12411
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
12412
|
+
}>;
|
|
12413
|
+
target: ContainerType<{
|
|
12414
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
12415
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
12416
|
+
}>;
|
|
12417
|
+
}>;
|
|
12418
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
12419
|
+
committeeBits: import("@chainsafe/ssz").BitVectorType;
|
|
12420
|
+
}>;
|
|
12421
|
+
selectionProof: import("@chainsafe/ssz").ByteVectorType;
|
|
12422
|
+
}>;
|
|
12423
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
12424
|
+
}>;
|
|
12425
|
+
DepositRequest: ContainerType<{
|
|
12426
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
12427
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
12428
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
12429
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
12430
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
12431
|
+
}>;
|
|
12432
|
+
DepositRequests: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
12433
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
12434
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
12435
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
12436
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
12437
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
12438
|
+
}>>;
|
|
12439
|
+
WithdrawalRequest: ContainerType<{
|
|
12440
|
+
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
12441
|
+
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
12442
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
12443
|
+
}>;
|
|
12444
|
+
WithdrawalRequests: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
12445
|
+
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
12446
|
+
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
12447
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
12448
|
+
}>>;
|
|
12449
|
+
ConsolidationRequest: ContainerType<{
|
|
12450
|
+
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
12451
|
+
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
12452
|
+
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
12453
|
+
}>;
|
|
12454
|
+
ConsolidationRequests: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
12455
|
+
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
12456
|
+
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
12457
|
+
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
12458
|
+
}>>;
|
|
12459
|
+
ExecutionRequests: ContainerType<{
|
|
12460
|
+
deposits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
12461
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
12462
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
12463
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
12464
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
12465
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
12466
|
+
}>>;
|
|
12467
|
+
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
12468
|
+
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
12469
|
+
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
12470
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
12471
|
+
}>>;
|
|
12472
|
+
consolidations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
12473
|
+
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
12474
|
+
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
12475
|
+
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
12476
|
+
}>>;
|
|
12477
|
+
}>;
|
|
12478
|
+
PendingDeposit: ContainerType<{
|
|
12479
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
12480
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
12481
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
12482
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
12483
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
12484
|
+
}>;
|
|
12485
|
+
PendingDeposits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
12486
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
12487
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
12488
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
12489
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
12490
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
12491
|
+
}>>;
|
|
12492
|
+
PendingPartialWithdrawal: ContainerType<{
|
|
12493
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
12494
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
12495
|
+
withdrawableEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
12496
|
+
}>;
|
|
12497
|
+
PendingPartialWithdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
12498
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
12499
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
12500
|
+
withdrawableEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
12501
|
+
}>>;
|
|
12502
|
+
PendingConsolidation: ContainerType<{
|
|
12503
|
+
sourceIndex: import("@chainsafe/ssz").UintNumberType;
|
|
12504
|
+
targetIndex: import("@chainsafe/ssz").UintNumberType;
|
|
12505
|
+
}>;
|
|
12506
|
+
PendingConsolidations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
12507
|
+
sourceIndex: import("@chainsafe/ssz").UintNumberType;
|
|
12508
|
+
targetIndex: import("@chainsafe/ssz").UintNumberType;
|
|
12509
|
+
}>>;
|
|
12510
|
+
PayloadAttributes: ContainerType<{
|
|
12511
|
+
parentBeaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12512
|
+
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
12513
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
12514
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
12515
|
+
address: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
12516
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
12517
|
+
}>>;
|
|
12518
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
12519
|
+
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
12520
|
+
suggestedFeeRecipient: import("./index.js").StringType<string>;
|
|
12521
|
+
}>;
|
|
12379
12522
|
G1Point: import("@chainsafe/ssz").ByteVectorType;
|
|
12380
12523
|
G2Point: import("@chainsafe/ssz").ByteVectorType;
|
|
12381
12524
|
BLSFieldElement: import("@chainsafe/ssz").ByteVectorType;
|
|
12382
12525
|
KZGCommitment: import("@chainsafe/ssz").ByteVectorType;
|
|
12383
|
-
KZGProof: import("@chainsafe/ssz").ByteVectorType;
|
|
12384
|
-
Blob: import("@chainsafe/ssz").ByteVectorType;
|
|
12385
12526
|
Blobs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
12386
12527
|
BlindedBlob: import("@chainsafe/ssz").ByteVectorType;
|
|
12387
12528
|
BlindedBlobs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
@@ -12397,23 +12538,6 @@ declare const typesByFork: {
|
|
|
12397
12538
|
index: import("@chainsafe/ssz").UintNumberType;
|
|
12398
12539
|
}>;
|
|
12399
12540
|
KzgCommitmentInclusionProof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
12400
|
-
BlobSidecar: ContainerType<{
|
|
12401
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
12402
|
-
blob: import("@chainsafe/ssz").ByteVectorType;
|
|
12403
|
-
kzgCommitment: import("@chainsafe/ssz").ByteVectorType;
|
|
12404
|
-
kzgProof: import("@chainsafe/ssz").ByteVectorType;
|
|
12405
|
-
signedBlockHeader: ContainerType<{
|
|
12406
|
-
message: ContainerType<{
|
|
12407
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
12408
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
12409
|
-
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12410
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12411
|
-
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12412
|
-
}>;
|
|
12413
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
12414
|
-
}>;
|
|
12415
|
-
kzgCommitmentInclusionProof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
12416
|
-
}>;
|
|
12417
12541
|
BlobSidecars: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
12418
12542
|
index: import("@chainsafe/ssz").UintNumberType;
|
|
12419
12543
|
blob: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -12436,66 +12560,6 @@ declare const typesByFork: {
|
|
|
12436
12560
|
proofs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
12437
12561
|
blobs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
12438
12562
|
}>;
|
|
12439
|
-
ExecutionPayloadAndBlobsBundle: ContainerType<{
|
|
12440
|
-
executionPayload: ContainerType<{
|
|
12441
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
12442
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
12443
|
-
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
12444
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
12445
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
12446
|
-
address: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
12447
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
12448
|
-
}>>;
|
|
12449
|
-
transactions: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
12450
|
-
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
12451
|
-
feeRecipient: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
12452
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12453
|
-
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12454
|
-
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
12455
|
-
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
12456
|
-
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
12457
|
-
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
12458
|
-
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
12459
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
12460
|
-
extraData: import("@chainsafe/ssz").ByteListType;
|
|
12461
|
-
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
12462
|
-
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
12463
|
-
}>;
|
|
12464
|
-
blobsBundle: ContainerType<{
|
|
12465
|
-
commitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
12466
|
-
proofs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
12467
|
-
blobs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
12468
|
-
}>;
|
|
12469
|
-
}>;
|
|
12470
|
-
LightClientHeader: ContainerType<{
|
|
12471
|
-
beacon: ContainerType<{
|
|
12472
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
12473
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
12474
|
-
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12475
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12476
|
-
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12477
|
-
}>;
|
|
12478
|
-
execution: ContainerType<{
|
|
12479
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
12480
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
12481
|
-
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12482
|
-
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12483
|
-
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
12484
|
-
feeRecipient: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
12485
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12486
|
-
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12487
|
-
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
12488
|
-
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
12489
|
-
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
12490
|
-
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
12491
|
-
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
12492
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
12493
|
-
extraData: import("@chainsafe/ssz").ByteListType;
|
|
12494
|
-
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
12495
|
-
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
12496
|
-
}>;
|
|
12497
|
-
executionBranch: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
12498
|
-
}>;
|
|
12499
12563
|
Withdrawal: ContainerType<{
|
|
12500
12564
|
index: import("@chainsafe/ssz").UintNumberType;
|
|
12501
12565
|
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -12582,11 +12646,6 @@ declare const typesByFork: {
|
|
|
12582
12646
|
parentBlockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
12583
12647
|
}>;
|
|
12584
12648
|
SyncSubnets: import("@chainsafe/ssz").BitVectorType;
|
|
12585
|
-
Metadata: ContainerType<{
|
|
12586
|
-
seqNumber: import("@chainsafe/ssz").UintBigintType;
|
|
12587
|
-
attnets: import("@chainsafe/ssz").BitVectorType;
|
|
12588
|
-
syncnets: import("@chainsafe/ssz").BitVectorType;
|
|
12589
|
-
}>;
|
|
12590
12649
|
SyncCommittee: ContainerType<{
|
|
12591
12650
|
pubkeys: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
12592
12651
|
aggregatePubkey: import("@chainsafe/ssz").ByteVectorType;
|