@lodestar/types 1.43.0-dev.9c8becae00 → 1.43.0-dev.9f5db5b9c7
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/gloas/sszTypes.d.ts +150 -23
- package/lib/gloas/sszTypes.d.ts.map +1 -1
- package/lib/gloas/sszTypes.js +25 -7
- package/lib/gloas/sszTypes.js.map +1 -1
- package/lib/gloas/types.d.ts +4 -0
- package/lib/gloas/types.d.ts.map +1 -1
- package/lib/sszTypes.d.ts +290 -146
- package/lib/sszTypes.d.ts.map +1 -1
- package/lib/types.d.ts +2 -2
- package/lib/types.d.ts.map +1 -1
- package/package.json +3 -3
- package/src/gloas/sszTypes.ts +38 -5
- package/src/gloas/types.ts +4 -0
- package/src/types.ts +2 -2
package/lib/sszTypes.d.ts
CHANGED
|
@@ -13660,30 +13660,6 @@ declare const typesByFork: {
|
|
|
13660
13660
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
13661
13661
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
13662
13662
|
}>;
|
|
13663
|
-
ExecutionPayload: ContainerType<{
|
|
13664
|
-
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
13665
|
-
feeRecipient: import("./index.ts").ExecutionAddressType;
|
|
13666
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13667
|
-
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13668
|
-
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
13669
|
-
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
13670
|
-
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
13671
|
-
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
13672
|
-
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
13673
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
13674
|
-
extraData: import("@chainsafe/ssz").ByteListType;
|
|
13675
|
-
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
13676
|
-
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
13677
|
-
transactions: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
13678
|
-
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
13679
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
13680
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
13681
|
-
address: import("./index.ts").ExecutionAddressType;
|
|
13682
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
13683
|
-
}>>;
|
|
13684
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
13685
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
13686
|
-
}>;
|
|
13687
13663
|
BlindedBeaconBlockBody: ContainerType<{
|
|
13688
13664
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
13689
13665
|
eth1Data: ContainerType<{
|
|
@@ -14594,37 +14570,6 @@ declare const typesByFork: {
|
|
|
14594
14570
|
signatureSlot: import("@chainsafe/ssz").UintNumberType;
|
|
14595
14571
|
}>>;
|
|
14596
14572
|
}>;
|
|
14597
|
-
PayloadAttributes: ContainerType<{
|
|
14598
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
14599
|
-
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
14600
|
-
suggestedFeeRecipient: import("./index.ts").StringType<string>;
|
|
14601
|
-
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
14602
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
14603
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
14604
|
-
address: import("./index.ts").ExecutionAddressType;
|
|
14605
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
14606
|
-
}>>;
|
|
14607
|
-
parentBeaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
14608
|
-
}>;
|
|
14609
|
-
SSEPayloadAttributes: ContainerType<{
|
|
14610
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
14611
|
-
proposalSlot: import("@chainsafe/ssz").UintNumberType;
|
|
14612
|
-
parentBlockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
14613
|
-
parentBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
14614
|
-
parentBlockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
14615
|
-
payloadAttributes: ContainerType<{
|
|
14616
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
14617
|
-
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
14618
|
-
suggestedFeeRecipient: import("./index.ts").StringType<string>;
|
|
14619
|
-
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
14620
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
14621
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
14622
|
-
address: import("./index.ts").ExecutionAddressType;
|
|
14623
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
14624
|
-
}>>;
|
|
14625
|
-
parentBeaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
14626
|
-
}>;
|
|
14627
|
-
}>;
|
|
14628
14573
|
KZGProof: import("@chainsafe/ssz").ByteVectorType;
|
|
14629
14574
|
Blob: import("@chainsafe/ssz").ByteVectorType;
|
|
14630
14575
|
Metadata: ContainerType<{
|
|
@@ -15096,6 +15041,7 @@ declare const typesByFork: {
|
|
|
15096
15041
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
15097
15042
|
}>;
|
|
15098
15043
|
ProposerPreferences: ContainerType<{
|
|
15044
|
+
dependentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
15099
15045
|
proposalSlot: import("@chainsafe/ssz").UintNumberType;
|
|
15100
15046
|
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
15101
15047
|
feeRecipient: import("./index.ts").ExecutionAddressType;
|
|
@@ -15103,6 +15049,7 @@ declare const typesByFork: {
|
|
|
15103
15049
|
}>;
|
|
15104
15050
|
SignedProposerPreferences: ContainerType<{
|
|
15105
15051
|
message: ContainerType<{
|
|
15052
|
+
dependentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
15106
15053
|
proposalSlot: import("@chainsafe/ssz").UintNumberType;
|
|
15107
15054
|
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
15108
15055
|
feeRecipient: import("./index.ts").ExecutionAddressType;
|
|
@@ -15122,6 +15069,7 @@ declare const typesByFork: {
|
|
|
15122
15069
|
value: import("@chainsafe/ssz").UintNumberType;
|
|
15123
15070
|
executionPayment: import("@chainsafe/ssz").UintNumberType;
|
|
15124
15071
|
blobKzgCommitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
15072
|
+
executionRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
15125
15073
|
}>;
|
|
15126
15074
|
SignedExecutionPayloadBid: ContainerType<{
|
|
15127
15075
|
message: ContainerType<{
|
|
@@ -15136,9 +15084,37 @@ declare const typesByFork: {
|
|
|
15136
15084
|
value: import("@chainsafe/ssz").UintNumberType;
|
|
15137
15085
|
executionPayment: import("@chainsafe/ssz").UintNumberType;
|
|
15138
15086
|
blobKzgCommitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
15087
|
+
executionRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
15139
15088
|
}>;
|
|
15140
15089
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
15141
15090
|
}>;
|
|
15091
|
+
BlockAccessList: import("@chainsafe/ssz").ByteListType;
|
|
15092
|
+
ExecutionPayload: ContainerType<{
|
|
15093
|
+
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
15094
|
+
feeRecipient: import("./index.ts").ExecutionAddressType;
|
|
15095
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
15096
|
+
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
15097
|
+
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
15098
|
+
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
15099
|
+
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
15100
|
+
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
15101
|
+
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
15102
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
15103
|
+
extraData: import("@chainsafe/ssz").ByteListType;
|
|
15104
|
+
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
15105
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
15106
|
+
transactions: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
15107
|
+
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
15108
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
15109
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
15110
|
+
address: import("./index.ts").ExecutionAddressType;
|
|
15111
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
15112
|
+
}>>;
|
|
15113
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
15114
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
15115
|
+
blockAccessList: import("@chainsafe/ssz").ByteListType;
|
|
15116
|
+
slotNumber: import("@chainsafe/ssz").UintNumberType;
|
|
15117
|
+
}>;
|
|
15142
15118
|
ExecutionPayloadEnvelope: ContainerType<{
|
|
15143
15119
|
payload: ContainerType<{
|
|
15144
15120
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -15163,6 +15139,8 @@ declare const typesByFork: {
|
|
|
15163
15139
|
}>>;
|
|
15164
15140
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
15165
15141
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
15142
|
+
blockAccessList: import("@chainsafe/ssz").ByteListType;
|
|
15143
|
+
slotNumber: import("@chainsafe/ssz").UintNumberType;
|
|
15166
15144
|
}>;
|
|
15167
15145
|
executionRequests: ContainerType<{
|
|
15168
15146
|
deposits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
@@ -15185,8 +15163,7 @@ declare const typesByFork: {
|
|
|
15185
15163
|
}>;
|
|
15186
15164
|
builderIndex: import("@chainsafe/ssz").UintNumberType;
|
|
15187
15165
|
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
15188
|
-
|
|
15189
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
15166
|
+
parentBeaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
15190
15167
|
}>;
|
|
15191
15168
|
SignedExecutionPayloadEnvelope: ContainerType<{
|
|
15192
15169
|
message: ContainerType<{
|
|
@@ -15213,6 +15190,8 @@ declare const typesByFork: {
|
|
|
15213
15190
|
}>>;
|
|
15214
15191
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
15215
15192
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
15193
|
+
blockAccessList: import("@chainsafe/ssz").ByteListType;
|
|
15194
|
+
slotNumber: import("@chainsafe/ssz").UintNumberType;
|
|
15216
15195
|
}>;
|
|
15217
15196
|
executionRequests: ContainerType<{
|
|
15218
15197
|
deposits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
@@ -15235,8 +15214,7 @@ declare const typesByFork: {
|
|
|
15235
15214
|
}>;
|
|
15236
15215
|
builderIndex: import("@chainsafe/ssz").UintNumberType;
|
|
15237
15216
|
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
15238
|
-
|
|
15239
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
15217
|
+
parentBeaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
15240
15218
|
}>;
|
|
15241
15219
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
15242
15220
|
}>;
|
|
@@ -15365,6 +15343,7 @@ declare const typesByFork: {
|
|
|
15365
15343
|
value: import("@chainsafe/ssz").UintNumberType;
|
|
15366
15344
|
executionPayment: import("@chainsafe/ssz").UintNumberType;
|
|
15367
15345
|
blobKzgCommitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
15346
|
+
executionRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
15368
15347
|
}>;
|
|
15369
15348
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
15370
15349
|
}>;
|
|
@@ -15378,6 +15357,25 @@ declare const typesByFork: {
|
|
|
15378
15357
|
}>;
|
|
15379
15358
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
15380
15359
|
}>>;
|
|
15360
|
+
parentExecutionRequests: ContainerType<{
|
|
15361
|
+
deposits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
15362
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
15363
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
15364
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
15365
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
15366
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
15367
|
+
}>>;
|
|
15368
|
+
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
15369
|
+
sourceAddress: import("./index.ts").ExecutionAddressType;
|
|
15370
|
+
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
15371
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
15372
|
+
}>>;
|
|
15373
|
+
consolidations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
15374
|
+
sourceAddress: import("./index.ts").ExecutionAddressType;
|
|
15375
|
+
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
15376
|
+
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
15377
|
+
}>>;
|
|
15378
|
+
}>;
|
|
15381
15379
|
}>;
|
|
15382
15380
|
BeaconBlock: ContainerType<{
|
|
15383
15381
|
slot: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -15509,6 +15507,7 @@ declare const typesByFork: {
|
|
|
15509
15507
|
value: import("@chainsafe/ssz").UintNumberType;
|
|
15510
15508
|
executionPayment: import("@chainsafe/ssz").UintNumberType;
|
|
15511
15509
|
blobKzgCommitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
15510
|
+
executionRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
15512
15511
|
}>;
|
|
15513
15512
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
15514
15513
|
}>;
|
|
@@ -15522,6 +15521,25 @@ declare const typesByFork: {
|
|
|
15522
15521
|
}>;
|
|
15523
15522
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
15524
15523
|
}>>;
|
|
15524
|
+
parentExecutionRequests: ContainerType<{
|
|
15525
|
+
deposits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
15526
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
15527
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
15528
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
15529
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
15530
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
15531
|
+
}>>;
|
|
15532
|
+
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
15533
|
+
sourceAddress: import("./index.ts").ExecutionAddressType;
|
|
15534
|
+
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
15535
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
15536
|
+
}>>;
|
|
15537
|
+
consolidations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
15538
|
+
sourceAddress: import("./index.ts").ExecutionAddressType;
|
|
15539
|
+
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
15540
|
+
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
15541
|
+
}>>;
|
|
15542
|
+
}>;
|
|
15525
15543
|
}>;
|
|
15526
15544
|
}>;
|
|
15527
15545
|
SignedBeaconBlock: ContainerType<{
|
|
@@ -15655,6 +15673,7 @@ declare const typesByFork: {
|
|
|
15655
15673
|
value: import("@chainsafe/ssz").UintNumberType;
|
|
15656
15674
|
executionPayment: import("@chainsafe/ssz").UintNumberType;
|
|
15657
15675
|
blobKzgCommitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
15676
|
+
executionRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
15658
15677
|
}>;
|
|
15659
15678
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
15660
15679
|
}>;
|
|
@@ -15668,6 +15687,25 @@ declare const typesByFork: {
|
|
|
15668
15687
|
}>;
|
|
15669
15688
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
15670
15689
|
}>>;
|
|
15690
|
+
parentExecutionRequests: ContainerType<{
|
|
15691
|
+
deposits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
15692
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
15693
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
15694
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
15695
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
15696
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
15697
|
+
}>>;
|
|
15698
|
+
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
15699
|
+
sourceAddress: import("./index.ts").ExecutionAddressType;
|
|
15700
|
+
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
15701
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
15702
|
+
}>>;
|
|
15703
|
+
consolidations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
15704
|
+
sourceAddress: import("./index.ts").ExecutionAddressType;
|
|
15705
|
+
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
15706
|
+
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
15707
|
+
}>>;
|
|
15708
|
+
}>;
|
|
15671
15709
|
}>;
|
|
15672
15710
|
}>;
|
|
15673
15711
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -15730,19 +15768,7 @@ declare const typesByFork: {
|
|
|
15730
15768
|
pubkeys: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
15731
15769
|
aggregatePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
15732
15770
|
}>;
|
|
15733
|
-
|
|
15734
|
-
parentBlockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
15735
|
-
parentBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
15736
|
-
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
15737
|
-
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
15738
|
-
feeRecipient: import("./index.ts").ExecutionAddressType;
|
|
15739
|
-
gasLimit: import("@chainsafe/ssz").UintBigintType;
|
|
15740
|
-
builderIndex: import("@chainsafe/ssz").UintNumberType;
|
|
15741
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
15742
|
-
value: import("@chainsafe/ssz").UintNumberType;
|
|
15743
|
-
executionPayment: import("@chainsafe/ssz").UintNumberType;
|
|
15744
|
-
blobKzgCommitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
15745
|
-
}>;
|
|
15771
|
+
latestBlockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
15746
15772
|
nextWithdrawalIndex: import("@chainsafe/ssz").UintNumberType;
|
|
15747
15773
|
nextWithdrawalValidatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
15748
15774
|
historicalSummaries: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
@@ -15795,7 +15821,20 @@ declare const typesByFork: {
|
|
|
15795
15821
|
amount: import("@chainsafe/ssz").UintNumberType;
|
|
15796
15822
|
builderIndex: import("@chainsafe/ssz").UintNumberType;
|
|
15797
15823
|
}>>;
|
|
15798
|
-
|
|
15824
|
+
latestExecutionPayloadBid: ContainerType<{
|
|
15825
|
+
parentBlockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
15826
|
+
parentBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
15827
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
15828
|
+
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
15829
|
+
feeRecipient: import("./index.ts").ExecutionAddressType;
|
|
15830
|
+
gasLimit: import("@chainsafe/ssz").UintBigintType;
|
|
15831
|
+
builderIndex: import("@chainsafe/ssz").UintNumberType;
|
|
15832
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
15833
|
+
value: import("@chainsafe/ssz").UintNumberType;
|
|
15834
|
+
executionPayment: import("@chainsafe/ssz").UintNumberType;
|
|
15835
|
+
blobKzgCommitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
15836
|
+
executionRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
15837
|
+
}>;
|
|
15799
15838
|
payloadExpectedWithdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
15800
15839
|
index: import("@chainsafe/ssz").UintNumberType;
|
|
15801
15840
|
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -15822,6 +15861,39 @@ declare const typesByFork: {
|
|
|
15822
15861
|
startSlot: import("@chainsafe/ssz").UintNumberType;
|
|
15823
15862
|
count: import("@chainsafe/ssz").UintNumberType;
|
|
15824
15863
|
}>;
|
|
15864
|
+
PayloadAttributes: ContainerType<{
|
|
15865
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
15866
|
+
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
15867
|
+
suggestedFeeRecipient: import("./index.ts").StringType<string>;
|
|
15868
|
+
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
15869
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
15870
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
15871
|
+
address: import("./index.ts").ExecutionAddressType;
|
|
15872
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
15873
|
+
}>>;
|
|
15874
|
+
parentBeaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
15875
|
+
slotNumber: import("@chainsafe/ssz").UintNumberType;
|
|
15876
|
+
}>;
|
|
15877
|
+
SSEPayloadAttributes: ContainerType<{
|
|
15878
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
15879
|
+
proposalSlot: import("@chainsafe/ssz").UintNumberType;
|
|
15880
|
+
parentBlockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
15881
|
+
parentBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
15882
|
+
parentBlockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
15883
|
+
payloadAttributes: ContainerType<{
|
|
15884
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
15885
|
+
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
15886
|
+
suggestedFeeRecipient: import("./index.ts").StringType<string>;
|
|
15887
|
+
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
15888
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
15889
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
15890
|
+
address: import("./index.ts").ExecutionAddressType;
|
|
15891
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
15892
|
+
}>>;
|
|
15893
|
+
parentBeaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
15894
|
+
slotNumber: import("@chainsafe/ssz").UintNumberType;
|
|
15895
|
+
}>;
|
|
15896
|
+
}>;
|
|
15825
15897
|
};
|
|
15826
15898
|
};
|
|
15827
15899
|
export declare const phase0: {
|
|
@@ -29478,30 +29550,6 @@ export declare const gloas: {
|
|
|
29478
29550
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
29479
29551
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
29480
29552
|
}>;
|
|
29481
|
-
ExecutionPayload: ContainerType<{
|
|
29482
|
-
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
29483
|
-
feeRecipient: import("./index.ts").ExecutionAddressType;
|
|
29484
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
29485
|
-
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
29486
|
-
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
29487
|
-
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
29488
|
-
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
29489
|
-
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
29490
|
-
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
29491
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
29492
|
-
extraData: import("@chainsafe/ssz").ByteListType;
|
|
29493
|
-
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
29494
|
-
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
29495
|
-
transactions: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
29496
|
-
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
29497
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
29498
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
29499
|
-
address: import("./index.ts").ExecutionAddressType;
|
|
29500
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
29501
|
-
}>>;
|
|
29502
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
29503
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
29504
|
-
}>;
|
|
29505
29553
|
BlindedBeaconBlockBody: ContainerType<{
|
|
29506
29554
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
29507
29555
|
eth1Data: ContainerType<{
|
|
@@ -30412,37 +30460,6 @@ export declare const gloas: {
|
|
|
30412
30460
|
signatureSlot: import("@chainsafe/ssz").UintNumberType;
|
|
30413
30461
|
}>>;
|
|
30414
30462
|
}>;
|
|
30415
|
-
PayloadAttributes: ContainerType<{
|
|
30416
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
30417
|
-
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
30418
|
-
suggestedFeeRecipient: import("./index.ts").StringType<string>;
|
|
30419
|
-
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
30420
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
30421
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
30422
|
-
address: import("./index.ts").ExecutionAddressType;
|
|
30423
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
30424
|
-
}>>;
|
|
30425
|
-
parentBeaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
30426
|
-
}>;
|
|
30427
|
-
SSEPayloadAttributes: ContainerType<{
|
|
30428
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
30429
|
-
proposalSlot: import("@chainsafe/ssz").UintNumberType;
|
|
30430
|
-
parentBlockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
30431
|
-
parentBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
30432
|
-
parentBlockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
30433
|
-
payloadAttributes: ContainerType<{
|
|
30434
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
30435
|
-
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
30436
|
-
suggestedFeeRecipient: import("./index.ts").StringType<string>;
|
|
30437
|
-
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
30438
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
30439
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
30440
|
-
address: import("./index.ts").ExecutionAddressType;
|
|
30441
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
30442
|
-
}>>;
|
|
30443
|
-
parentBeaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
30444
|
-
}>;
|
|
30445
|
-
}>;
|
|
30446
30463
|
KZGProof: import("@chainsafe/ssz").ByteVectorType;
|
|
30447
30464
|
Blob: import("@chainsafe/ssz").ByteVectorType;
|
|
30448
30465
|
Metadata: ContainerType<{
|
|
@@ -30914,6 +30931,7 @@ export declare const gloas: {
|
|
|
30914
30931
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
30915
30932
|
}>;
|
|
30916
30933
|
ProposerPreferences: ContainerType<{
|
|
30934
|
+
dependentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
30917
30935
|
proposalSlot: import("@chainsafe/ssz").UintNumberType;
|
|
30918
30936
|
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
30919
30937
|
feeRecipient: import("./index.ts").ExecutionAddressType;
|
|
@@ -30921,6 +30939,7 @@ export declare const gloas: {
|
|
|
30921
30939
|
}>;
|
|
30922
30940
|
SignedProposerPreferences: ContainerType<{
|
|
30923
30941
|
message: ContainerType<{
|
|
30942
|
+
dependentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
30924
30943
|
proposalSlot: import("@chainsafe/ssz").UintNumberType;
|
|
30925
30944
|
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
30926
30945
|
feeRecipient: import("./index.ts").ExecutionAddressType;
|
|
@@ -30940,6 +30959,7 @@ export declare const gloas: {
|
|
|
30940
30959
|
value: import("@chainsafe/ssz").UintNumberType;
|
|
30941
30960
|
executionPayment: import("@chainsafe/ssz").UintNumberType;
|
|
30942
30961
|
blobKzgCommitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
30962
|
+
executionRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
30943
30963
|
}>;
|
|
30944
30964
|
SignedExecutionPayloadBid: ContainerType<{
|
|
30945
30965
|
message: ContainerType<{
|
|
@@ -30954,9 +30974,37 @@ export declare const gloas: {
|
|
|
30954
30974
|
value: import("@chainsafe/ssz").UintNumberType;
|
|
30955
30975
|
executionPayment: import("@chainsafe/ssz").UintNumberType;
|
|
30956
30976
|
blobKzgCommitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
30977
|
+
executionRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
30957
30978
|
}>;
|
|
30958
30979
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
30959
30980
|
}>;
|
|
30981
|
+
BlockAccessList: import("@chainsafe/ssz").ByteListType;
|
|
30982
|
+
ExecutionPayload: ContainerType<{
|
|
30983
|
+
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
30984
|
+
feeRecipient: import("./index.ts").ExecutionAddressType;
|
|
30985
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
30986
|
+
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
30987
|
+
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
30988
|
+
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
30989
|
+
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
30990
|
+
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
30991
|
+
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
30992
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
30993
|
+
extraData: import("@chainsafe/ssz").ByteListType;
|
|
30994
|
+
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
30995
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
30996
|
+
transactions: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
30997
|
+
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
30998
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
30999
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
31000
|
+
address: import("./index.ts").ExecutionAddressType;
|
|
31001
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
31002
|
+
}>>;
|
|
31003
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
31004
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
31005
|
+
blockAccessList: import("@chainsafe/ssz").ByteListType;
|
|
31006
|
+
slotNumber: import("@chainsafe/ssz").UintNumberType;
|
|
31007
|
+
}>;
|
|
30960
31008
|
ExecutionPayloadEnvelope: ContainerType<{
|
|
30961
31009
|
payload: ContainerType<{
|
|
30962
31010
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -30981,6 +31029,8 @@ export declare const gloas: {
|
|
|
30981
31029
|
}>>;
|
|
30982
31030
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
30983
31031
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
31032
|
+
blockAccessList: import("@chainsafe/ssz").ByteListType;
|
|
31033
|
+
slotNumber: import("@chainsafe/ssz").UintNumberType;
|
|
30984
31034
|
}>;
|
|
30985
31035
|
executionRequests: ContainerType<{
|
|
30986
31036
|
deposits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
@@ -31003,8 +31053,7 @@ export declare const gloas: {
|
|
|
31003
31053
|
}>;
|
|
31004
31054
|
builderIndex: import("@chainsafe/ssz").UintNumberType;
|
|
31005
31055
|
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
31006
|
-
|
|
31007
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
31056
|
+
parentBeaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
31008
31057
|
}>;
|
|
31009
31058
|
SignedExecutionPayloadEnvelope: ContainerType<{
|
|
31010
31059
|
message: ContainerType<{
|
|
@@ -31031,6 +31080,8 @@ export declare const gloas: {
|
|
|
31031
31080
|
}>>;
|
|
31032
31081
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
31033
31082
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
31083
|
+
blockAccessList: import("@chainsafe/ssz").ByteListType;
|
|
31084
|
+
slotNumber: import("@chainsafe/ssz").UintNumberType;
|
|
31034
31085
|
}>;
|
|
31035
31086
|
executionRequests: ContainerType<{
|
|
31036
31087
|
deposits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
@@ -31053,8 +31104,7 @@ export declare const gloas: {
|
|
|
31053
31104
|
}>;
|
|
31054
31105
|
builderIndex: import("@chainsafe/ssz").UintNumberType;
|
|
31055
31106
|
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
31056
|
-
|
|
31057
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
31107
|
+
parentBeaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
31058
31108
|
}>;
|
|
31059
31109
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
31060
31110
|
}>;
|
|
@@ -31183,6 +31233,7 @@ export declare const gloas: {
|
|
|
31183
31233
|
value: import("@chainsafe/ssz").UintNumberType;
|
|
31184
31234
|
executionPayment: import("@chainsafe/ssz").UintNumberType;
|
|
31185
31235
|
blobKzgCommitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
31236
|
+
executionRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
31186
31237
|
}>;
|
|
31187
31238
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
31188
31239
|
}>;
|
|
@@ -31196,6 +31247,25 @@ export declare const gloas: {
|
|
|
31196
31247
|
}>;
|
|
31197
31248
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
31198
31249
|
}>>;
|
|
31250
|
+
parentExecutionRequests: ContainerType<{
|
|
31251
|
+
deposits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
31252
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
31253
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
31254
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
31255
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
31256
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
31257
|
+
}>>;
|
|
31258
|
+
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
31259
|
+
sourceAddress: import("./index.ts").ExecutionAddressType;
|
|
31260
|
+
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
31261
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
31262
|
+
}>>;
|
|
31263
|
+
consolidations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
31264
|
+
sourceAddress: import("./index.ts").ExecutionAddressType;
|
|
31265
|
+
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
31266
|
+
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
31267
|
+
}>>;
|
|
31268
|
+
}>;
|
|
31199
31269
|
}>;
|
|
31200
31270
|
BeaconBlock: ContainerType<{
|
|
31201
31271
|
slot: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -31327,6 +31397,7 @@ export declare const gloas: {
|
|
|
31327
31397
|
value: import("@chainsafe/ssz").UintNumberType;
|
|
31328
31398
|
executionPayment: import("@chainsafe/ssz").UintNumberType;
|
|
31329
31399
|
blobKzgCommitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
31400
|
+
executionRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
31330
31401
|
}>;
|
|
31331
31402
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
31332
31403
|
}>;
|
|
@@ -31340,6 +31411,25 @@ export declare const gloas: {
|
|
|
31340
31411
|
}>;
|
|
31341
31412
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
31342
31413
|
}>>;
|
|
31414
|
+
parentExecutionRequests: ContainerType<{
|
|
31415
|
+
deposits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
31416
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
31417
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
31418
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
31419
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
31420
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
31421
|
+
}>>;
|
|
31422
|
+
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
31423
|
+
sourceAddress: import("./index.ts").ExecutionAddressType;
|
|
31424
|
+
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
31425
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
31426
|
+
}>>;
|
|
31427
|
+
consolidations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
31428
|
+
sourceAddress: import("./index.ts").ExecutionAddressType;
|
|
31429
|
+
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
31430
|
+
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
31431
|
+
}>>;
|
|
31432
|
+
}>;
|
|
31343
31433
|
}>;
|
|
31344
31434
|
}>;
|
|
31345
31435
|
SignedBeaconBlock: ContainerType<{
|
|
@@ -31473,6 +31563,7 @@ export declare const gloas: {
|
|
|
31473
31563
|
value: import("@chainsafe/ssz").UintNumberType;
|
|
31474
31564
|
executionPayment: import("@chainsafe/ssz").UintNumberType;
|
|
31475
31565
|
blobKzgCommitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
31566
|
+
executionRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
31476
31567
|
}>;
|
|
31477
31568
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
31478
31569
|
}>;
|
|
@@ -31486,6 +31577,25 @@ export declare const gloas: {
|
|
|
31486
31577
|
}>;
|
|
31487
31578
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
31488
31579
|
}>>;
|
|
31580
|
+
parentExecutionRequests: ContainerType<{
|
|
31581
|
+
deposits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
31582
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
31583
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
31584
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
31585
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
31586
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
31587
|
+
}>>;
|
|
31588
|
+
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
31589
|
+
sourceAddress: import("./index.ts").ExecutionAddressType;
|
|
31590
|
+
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
31591
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
31592
|
+
}>>;
|
|
31593
|
+
consolidations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
31594
|
+
sourceAddress: import("./index.ts").ExecutionAddressType;
|
|
31595
|
+
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
31596
|
+
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
31597
|
+
}>>;
|
|
31598
|
+
}>;
|
|
31489
31599
|
}>;
|
|
31490
31600
|
}>;
|
|
31491
31601
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -31548,19 +31658,7 @@ export declare const gloas: {
|
|
|
31548
31658
|
pubkeys: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
31549
31659
|
aggregatePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
31550
31660
|
}>;
|
|
31551
|
-
|
|
31552
|
-
parentBlockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
31553
|
-
parentBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
31554
|
-
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
31555
|
-
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
31556
|
-
feeRecipient: import("./index.ts").ExecutionAddressType;
|
|
31557
|
-
gasLimit: import("@chainsafe/ssz").UintBigintType;
|
|
31558
|
-
builderIndex: import("@chainsafe/ssz").UintNumberType;
|
|
31559
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
31560
|
-
value: import("@chainsafe/ssz").UintNumberType;
|
|
31561
|
-
executionPayment: import("@chainsafe/ssz").UintNumberType;
|
|
31562
|
-
blobKzgCommitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
31563
|
-
}>;
|
|
31661
|
+
latestBlockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
31564
31662
|
nextWithdrawalIndex: import("@chainsafe/ssz").UintNumberType;
|
|
31565
31663
|
nextWithdrawalValidatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
31566
31664
|
historicalSummaries: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
@@ -31613,7 +31711,20 @@ export declare const gloas: {
|
|
|
31613
31711
|
amount: import("@chainsafe/ssz").UintNumberType;
|
|
31614
31712
|
builderIndex: import("@chainsafe/ssz").UintNumberType;
|
|
31615
31713
|
}>>;
|
|
31616
|
-
|
|
31714
|
+
latestExecutionPayloadBid: ContainerType<{
|
|
31715
|
+
parentBlockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
31716
|
+
parentBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
31717
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
31718
|
+
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
31719
|
+
feeRecipient: import("./index.ts").ExecutionAddressType;
|
|
31720
|
+
gasLimit: import("@chainsafe/ssz").UintBigintType;
|
|
31721
|
+
builderIndex: import("@chainsafe/ssz").UintNumberType;
|
|
31722
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
31723
|
+
value: import("@chainsafe/ssz").UintNumberType;
|
|
31724
|
+
executionPayment: import("@chainsafe/ssz").UintNumberType;
|
|
31725
|
+
blobKzgCommitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
31726
|
+
executionRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
31727
|
+
}>;
|
|
31617
31728
|
payloadExpectedWithdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
31618
31729
|
index: import("@chainsafe/ssz").UintNumberType;
|
|
31619
31730
|
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -31640,6 +31751,39 @@ export declare const gloas: {
|
|
|
31640
31751
|
startSlot: import("@chainsafe/ssz").UintNumberType;
|
|
31641
31752
|
count: import("@chainsafe/ssz").UintNumberType;
|
|
31642
31753
|
}>;
|
|
31754
|
+
PayloadAttributes: ContainerType<{
|
|
31755
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
31756
|
+
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
31757
|
+
suggestedFeeRecipient: import("./index.ts").StringType<string>;
|
|
31758
|
+
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
31759
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
31760
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
31761
|
+
address: import("./index.ts").ExecutionAddressType;
|
|
31762
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
31763
|
+
}>>;
|
|
31764
|
+
parentBeaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
31765
|
+
slotNumber: import("@chainsafe/ssz").UintNumberType;
|
|
31766
|
+
}>;
|
|
31767
|
+
SSEPayloadAttributes: ContainerType<{
|
|
31768
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
31769
|
+
proposalSlot: import("@chainsafe/ssz").UintNumberType;
|
|
31770
|
+
parentBlockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
31771
|
+
parentBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
31772
|
+
parentBlockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
31773
|
+
payloadAttributes: ContainerType<{
|
|
31774
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
31775
|
+
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
31776
|
+
suggestedFeeRecipient: import("./index.ts").StringType<string>;
|
|
31777
|
+
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
31778
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
31779
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
31780
|
+
address: import("./index.ts").ExecutionAddressType;
|
|
31781
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
31782
|
+
}>>;
|
|
31783
|
+
parentBeaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
31784
|
+
slotNumber: import("@chainsafe/ssz").UintNumberType;
|
|
31785
|
+
}>;
|
|
31786
|
+
}>;
|
|
31643
31787
|
};
|
|
31644
31788
|
/**
|
|
31645
31789
|
* A type of union of forks must accept as any parameter the UNION of all fork types.
|