@lodestar/types 1.23.0-dev.404f13abfd → 1.23.0-dev.77006ea0ce
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/electra/sszTypes.d.ts +111 -227
- package/lib/electra/sszTypes.js +22 -34
- package/lib/electra/sszTypes.js.map +1 -1
- package/lib/electra/types.d.ts +1 -3
- package/lib/sszTypes.d.ts +171 -227
- package/lib/types.d.ts +6 -4
- package/lib/types.js +1 -1
- package/lib/types.js.map +1 -1
- package/lib/utils/typeguards.js +3 -2
- package/lib/utils/typeguards.js.map +1 -1
- package/package.json +3 -3
package/lib/sszTypes.d.ts
CHANGED
|
@@ -7695,33 +7695,30 @@ declare const typesByFork: {
|
|
|
7695
7695
|
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
7696
7696
|
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
7697
7697
|
}>>;
|
|
7698
|
-
|
|
7699
|
-
|
|
7698
|
+
ExecutionRequests: ContainerType<{
|
|
7699
|
+
deposits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
7700
7700
|
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
7701
7701
|
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
7702
7702
|
amount: import("@chainsafe/ssz").UintNumberType;
|
|
7703
7703
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
7704
7704
|
index: import("@chainsafe/ssz").UintNumberType;
|
|
7705
7705
|
}>>;
|
|
7706
|
-
|
|
7706
|
+
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
7707
7707
|
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
7708
7708
|
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
7709
7709
|
amount: import("@chainsafe/ssz").UintBigintType;
|
|
7710
7710
|
}>>;
|
|
7711
|
-
|
|
7711
|
+
consolidations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
7712
7712
|
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
7713
7713
|
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
7714
7714
|
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
7715
7715
|
}>>;
|
|
7716
|
+
}>;
|
|
7717
|
+
ExecutionPayloadHeader: ContainerType<{
|
|
7716
7718
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
7717
7719
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
7718
|
-
|
|
7719
|
-
|
|
7720
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
7721
|
-
address: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
7722
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
7723
|
-
}>>;
|
|
7724
|
-
transactions: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
7720
|
+
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
7721
|
+
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
7725
7722
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
7726
7723
|
feeRecipient: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
7727
7724
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -7736,14 +7733,16 @@ declare const typesByFork: {
|
|
|
7736
7733
|
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
7737
7734
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
7738
7735
|
}>;
|
|
7739
|
-
|
|
7740
|
-
depositRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
7741
|
-
withdrawalRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
7742
|
-
consolidationRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
7736
|
+
ExecutionPayload: ContainerType<{
|
|
7743
7737
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
7744
7738
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
7745
|
-
|
|
7746
|
-
|
|
7739
|
+
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
7740
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
7741
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
7742
|
+
address: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
7743
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
7744
|
+
}>>;
|
|
7745
|
+
transactions: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
7747
7746
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
7748
7747
|
feeRecipient: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
7749
7748
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -7863,23 +7862,6 @@ declare const typesByFork: {
|
|
|
7863
7862
|
syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
|
|
7864
7863
|
}>;
|
|
7865
7864
|
executionPayload: ContainerType<{
|
|
7866
|
-
depositRequests: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
7867
|
-
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
7868
|
-
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
7869
|
-
amount: import("@chainsafe/ssz").UintNumberType;
|
|
7870
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
7871
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
7872
|
-
}>>;
|
|
7873
|
-
withdrawalRequests: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
7874
|
-
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
7875
|
-
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
7876
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
7877
|
-
}>>;
|
|
7878
|
-
consolidationRequests: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
7879
|
-
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
7880
|
-
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
7881
|
-
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
7882
|
-
}>>;
|
|
7883
7865
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
7884
7866
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
7885
7867
|
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
@@ -7912,6 +7894,25 @@ declare const typesByFork: {
|
|
|
7912
7894
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
7913
7895
|
}>>;
|
|
7914
7896
|
blobKzgCommitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
7897
|
+
executionRequests: ContainerType<{
|
|
7898
|
+
deposits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
7899
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
7900
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
7901
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
7902
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
7903
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
7904
|
+
}>>;
|
|
7905
|
+
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
7906
|
+
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
7907
|
+
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
7908
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
7909
|
+
}>>;
|
|
7910
|
+
consolidations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
7911
|
+
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
7912
|
+
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
7913
|
+
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
7914
|
+
}>>;
|
|
7915
|
+
}>;
|
|
7915
7916
|
}>;
|
|
7916
7917
|
BeaconBlock: ContainerType<{
|
|
7917
7918
|
body: ContainerType<{
|
|
@@ -8019,23 +8020,6 @@ declare const typesByFork: {
|
|
|
8019
8020
|
syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
|
|
8020
8021
|
}>;
|
|
8021
8022
|
executionPayload: ContainerType<{
|
|
8022
|
-
depositRequests: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
8023
|
-
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
8024
|
-
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
8025
|
-
amount: import("@chainsafe/ssz").UintNumberType;
|
|
8026
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
8027
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
8028
|
-
}>>;
|
|
8029
|
-
withdrawalRequests: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
8030
|
-
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
8031
|
-
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
8032
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
8033
|
-
}>>;
|
|
8034
|
-
consolidationRequests: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
8035
|
-
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
8036
|
-
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
8037
|
-
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
8038
|
-
}>>;
|
|
8039
8023
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
8040
8024
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
8041
8025
|
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
@@ -8068,6 +8052,25 @@ declare const typesByFork: {
|
|
|
8068
8052
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
8069
8053
|
}>>;
|
|
8070
8054
|
blobKzgCommitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
8055
|
+
executionRequests: ContainerType<{
|
|
8056
|
+
deposits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
8057
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
8058
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
8059
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
8060
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
8061
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
8062
|
+
}>>;
|
|
8063
|
+
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
8064
|
+
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
8065
|
+
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
8066
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
8067
|
+
}>>;
|
|
8068
|
+
consolidations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
8069
|
+
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
8070
|
+
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
8071
|
+
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
8072
|
+
}>>;
|
|
8073
|
+
}>;
|
|
8071
8074
|
}>;
|
|
8072
8075
|
slot: import("@chainsafe/ssz").UintNumberType;
|
|
8073
8076
|
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -8181,23 +8184,6 @@ declare const typesByFork: {
|
|
|
8181
8184
|
syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
|
|
8182
8185
|
}>;
|
|
8183
8186
|
executionPayload: ContainerType<{
|
|
8184
|
-
depositRequests: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
8185
|
-
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
8186
|
-
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
8187
|
-
amount: import("@chainsafe/ssz").UintNumberType;
|
|
8188
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
8189
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
8190
|
-
}>>;
|
|
8191
|
-
withdrawalRequests: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
8192
|
-
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
8193
|
-
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
8194
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
8195
|
-
}>>;
|
|
8196
|
-
consolidationRequests: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
8197
|
-
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
8198
|
-
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
8199
|
-
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
8200
|
-
}>>;
|
|
8201
8187
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
8202
8188
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
8203
8189
|
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
@@ -8230,6 +8216,25 @@ declare const typesByFork: {
|
|
|
8230
8216
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
8231
8217
|
}>>;
|
|
8232
8218
|
blobKzgCommitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
8219
|
+
executionRequests: ContainerType<{
|
|
8220
|
+
deposits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
8221
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
8222
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
8223
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
8224
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
8225
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
8226
|
+
}>>;
|
|
8227
|
+
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
8228
|
+
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
8229
|
+
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
8230
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
8231
|
+
}>>;
|
|
8232
|
+
consolidations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
8233
|
+
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
8234
|
+
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
8235
|
+
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
8236
|
+
}>>;
|
|
8237
|
+
}>;
|
|
8233
8238
|
}>;
|
|
8234
8239
|
slot: import("@chainsafe/ssz").UintNumberType;
|
|
8235
8240
|
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -8343,9 +8348,6 @@ declare const typesByFork: {
|
|
|
8343
8348
|
syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
|
|
8344
8349
|
}>;
|
|
8345
8350
|
executionPayloadHeader: ContainerType<{
|
|
8346
|
-
depositRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
8347
|
-
withdrawalRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
8348
|
-
consolidationRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
8349
8351
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
8350
8352
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
8351
8353
|
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -8480,9 +8482,6 @@ declare const typesByFork: {
|
|
|
8480
8482
|
syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
|
|
8481
8483
|
}>;
|
|
8482
8484
|
executionPayloadHeader: ContainerType<{
|
|
8483
|
-
depositRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
8484
|
-
withdrawalRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
8485
|
-
consolidationRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
8486
8485
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
8487
8486
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
8488
8487
|
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -8623,9 +8622,6 @@ declare const typesByFork: {
|
|
|
8623
8622
|
syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
|
|
8624
8623
|
}>;
|
|
8625
8624
|
executionPayloadHeader: ContainerType<{
|
|
8626
|
-
depositRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
8627
|
-
withdrawalRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
8628
|
-
consolidationRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
8629
8625
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
8630
8626
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
8631
8627
|
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -8663,9 +8659,6 @@ declare const typesByFork: {
|
|
|
8663
8659
|
}>;
|
|
8664
8660
|
BuilderBid: ContainerType<{
|
|
8665
8661
|
header: ContainerType<{
|
|
8666
|
-
depositRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
8667
|
-
withdrawalRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
8668
|
-
consolidationRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
8669
8662
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
8670
8663
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
8671
8664
|
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -8691,9 +8684,6 @@ declare const typesByFork: {
|
|
|
8691
8684
|
SignedBuilderBid: ContainerType<{
|
|
8692
8685
|
message: ContainerType<{
|
|
8693
8686
|
header: ContainerType<{
|
|
8694
|
-
depositRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
8695
|
-
withdrawalRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
8696
|
-
consolidationRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
8697
8687
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
8698
8688
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
8699
8689
|
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -8718,54 +8708,6 @@ declare const typesByFork: {
|
|
|
8718
8708
|
}>;
|
|
8719
8709
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
8720
8710
|
}>;
|
|
8721
|
-
ExecutionPayloadAndBlobsBundle: ContainerType<{
|
|
8722
|
-
executionPayload: ContainerType<{
|
|
8723
|
-
depositRequests: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
8724
|
-
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
8725
|
-
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
8726
|
-
amount: import("@chainsafe/ssz").UintNumberType;
|
|
8727
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
8728
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
8729
|
-
}>>;
|
|
8730
|
-
withdrawalRequests: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
8731
|
-
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
8732
|
-
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
8733
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
8734
|
-
}>>;
|
|
8735
|
-
consolidationRequests: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
8736
|
-
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
8737
|
-
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
8738
|
-
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
8739
|
-
}>>;
|
|
8740
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
8741
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
8742
|
-
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
8743
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
8744
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
8745
|
-
address: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
8746
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
8747
|
-
}>>;
|
|
8748
|
-
transactions: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
8749
|
-
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
8750
|
-
feeRecipient: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
8751
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
8752
|
-
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
8753
|
-
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
8754
|
-
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
8755
|
-
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
8756
|
-
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
8757
|
-
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
8758
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
8759
|
-
extraData: import("@chainsafe/ssz").ByteListType;
|
|
8760
|
-
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
8761
|
-
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
8762
|
-
}>;
|
|
8763
|
-
blobsBundle: ContainerType<{
|
|
8764
|
-
commitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
8765
|
-
proofs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
8766
|
-
blobs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
8767
|
-
}>;
|
|
8768
|
-
}>;
|
|
8769
8711
|
PendingBalanceDeposit: ContainerType<{
|
|
8770
8712
|
index: import("@chainsafe/ssz").UintNumberType;
|
|
8771
8713
|
amount: import("@chainsafe/ssz").UintBigintType;
|
|
@@ -8842,9 +8784,6 @@ declare const typesByFork: {
|
|
|
8842
8784
|
aggregatePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
8843
8785
|
}>;
|
|
8844
8786
|
latestExecutionPayloadHeader: ContainerType<{
|
|
8845
|
-
depositRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
8846
|
-
withdrawalRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
8847
|
-
consolidationRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
8848
8787
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
8849
8788
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
8850
8789
|
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -8889,38 +8828,6 @@ declare const typesByFork: {
|
|
|
8889
8828
|
targetIndex: import("@chainsafe/ssz").UintNumberType;
|
|
8890
8829
|
}>>;
|
|
8891
8830
|
}>;
|
|
8892
|
-
LightClientHeader: ContainerType<{
|
|
8893
|
-
beacon: ContainerType<{
|
|
8894
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
8895
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
8896
|
-
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
8897
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
8898
|
-
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
8899
|
-
}>;
|
|
8900
|
-
execution: ContainerType<{
|
|
8901
|
-
depositRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
8902
|
-
withdrawalRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
8903
|
-
consolidationRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
8904
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
8905
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
8906
|
-
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
8907
|
-
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
8908
|
-
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
8909
|
-
feeRecipient: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
8910
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
8911
|
-
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
8912
|
-
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
8913
|
-
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
8914
|
-
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
8915
|
-
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
8916
|
-
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
8917
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
8918
|
-
extraData: import("@chainsafe/ssz").ByteListType;
|
|
8919
|
-
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
8920
|
-
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
8921
|
-
}>;
|
|
8922
|
-
executionBranch: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
8923
|
-
}>;
|
|
8924
8831
|
LightClientBootstrap: ContainerType<{
|
|
8925
8832
|
header: ContainerType<{
|
|
8926
8833
|
beacon: ContainerType<{
|
|
@@ -8931,9 +8838,6 @@ declare const typesByFork: {
|
|
|
8931
8838
|
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
8932
8839
|
}>;
|
|
8933
8840
|
execution: ContainerType<{
|
|
8934
|
-
depositRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
8935
|
-
withdrawalRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
8936
|
-
consolidationRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
8937
8841
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
8938
8842
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
8939
8843
|
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -8970,9 +8874,6 @@ declare const typesByFork: {
|
|
|
8970
8874
|
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
8971
8875
|
}>;
|
|
8972
8876
|
execution: ContainerType<{
|
|
8973
|
-
depositRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
8974
|
-
withdrawalRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
8975
|
-
consolidationRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
8976
8877
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
8977
8878
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
8978
8879
|
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -9007,9 +8908,6 @@ declare const typesByFork: {
|
|
|
9007
8908
|
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
9008
8909
|
}>;
|
|
9009
8910
|
execution: ContainerType<{
|
|
9010
|
-
depositRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
9011
|
-
withdrawalRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
9012
|
-
consolidationRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
9013
8911
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
9014
8912
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
9015
8913
|
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -9047,9 +8945,6 @@ declare const typesByFork: {
|
|
|
9047
8945
|
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
9048
8946
|
}>;
|
|
9049
8947
|
execution: ContainerType<{
|
|
9050
|
-
depositRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
9051
|
-
withdrawalRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
9052
|
-
consolidationRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
9053
8948
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
9054
8949
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
9055
8950
|
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -9079,9 +8974,6 @@ declare const typesByFork: {
|
|
|
9079
8974
|
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
9080
8975
|
}>;
|
|
9081
8976
|
execution: ContainerType<{
|
|
9082
|
-
depositRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
9083
|
-
withdrawalRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
9084
|
-
consolidationRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
9085
8977
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
9086
8978
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
9087
8979
|
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -9119,9 +9011,6 @@ declare const typesByFork: {
|
|
|
9119
9011
|
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
9120
9012
|
}>;
|
|
9121
9013
|
execution: ContainerType<{
|
|
9122
|
-
depositRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
9123
|
-
withdrawalRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
9124
|
-
consolidationRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
9125
9014
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
9126
9015
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
9127
9016
|
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -9159,9 +9048,6 @@ declare const typesByFork: {
|
|
|
9159
9048
|
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
9160
9049
|
}>;
|
|
9161
9050
|
execution: ContainerType<{
|
|
9162
|
-
depositRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
9163
|
-
withdrawalRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
9164
|
-
consolidationRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
9165
9051
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
9166
9052
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
9167
9053
|
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -9198,9 +9084,6 @@ declare const typesByFork: {
|
|
|
9198
9084
|
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
9199
9085
|
}>;
|
|
9200
9086
|
execution: ContainerType<{
|
|
9201
|
-
depositRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
9202
|
-
withdrawalRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
9203
|
-
consolidationRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
9204
9087
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
9205
9088
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
9206
9089
|
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -9235,9 +9118,6 @@ declare const typesByFork: {
|
|
|
9235
9118
|
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
9236
9119
|
}>;
|
|
9237
9120
|
execution: ContainerType<{
|
|
9238
|
-
depositRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
9239
|
-
withdrawalRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
9240
|
-
consolidationRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
9241
9121
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
9242
9122
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
9243
9123
|
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -9404,23 +9284,6 @@ declare const typesByFork: {
|
|
|
9404
9284
|
syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
|
|
9405
9285
|
}>;
|
|
9406
9286
|
executionPayload: ContainerType<{
|
|
9407
|
-
depositRequests: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
9408
|
-
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
9409
|
-
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
9410
|
-
amount: import("@chainsafe/ssz").UintNumberType;
|
|
9411
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
9412
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
9413
|
-
}>>;
|
|
9414
|
-
withdrawalRequests: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
9415
|
-
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
9416
|
-
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
9417
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
9418
|
-
}>>;
|
|
9419
|
-
consolidationRequests: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
9420
|
-
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
9421
|
-
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
9422
|
-
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
9423
|
-
}>>;
|
|
9424
9287
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
9425
9288
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
9426
9289
|
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
@@ -9453,6 +9316,25 @@ declare const typesByFork: {
|
|
|
9453
9316
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
9454
9317
|
}>>;
|
|
9455
9318
|
blobKzgCommitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
9319
|
+
executionRequests: ContainerType<{
|
|
9320
|
+
deposits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
9321
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
9322
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
9323
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
9324
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
9325
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
9326
|
+
}>>;
|
|
9327
|
+
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
9328
|
+
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
9329
|
+
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
9330
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
9331
|
+
}>>;
|
|
9332
|
+
consolidations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
9333
|
+
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
9334
|
+
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
9335
|
+
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
9336
|
+
}>>;
|
|
9337
|
+
}>;
|
|
9456
9338
|
}>;
|
|
9457
9339
|
slot: import("@chainsafe/ssz").UintNumberType;
|
|
9458
9340
|
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -9570,23 +9452,6 @@ declare const typesByFork: {
|
|
|
9570
9452
|
syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
|
|
9571
9453
|
}>;
|
|
9572
9454
|
executionPayload: ContainerType<{
|
|
9573
|
-
depositRequests: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
9574
|
-
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
9575
|
-
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
9576
|
-
amount: import("@chainsafe/ssz").UintNumberType;
|
|
9577
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
9578
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
9579
|
-
}>>;
|
|
9580
|
-
withdrawalRequests: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
9581
|
-
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
9582
|
-
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
9583
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
9584
|
-
}>>;
|
|
9585
|
-
consolidationRequests: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
9586
|
-
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
9587
|
-
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
9588
|
-
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
9589
|
-
}>>;
|
|
9590
9455
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
9591
9456
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
9592
9457
|
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
@@ -9619,6 +9484,25 @@ declare const typesByFork: {
|
|
|
9619
9484
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
9620
9485
|
}>>;
|
|
9621
9486
|
blobKzgCommitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
9487
|
+
executionRequests: ContainerType<{
|
|
9488
|
+
deposits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
9489
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
9490
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
9491
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
9492
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
9493
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
9494
|
+
}>>;
|
|
9495
|
+
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
9496
|
+
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
9497
|
+
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
9498
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
9499
|
+
}>>;
|
|
9500
|
+
consolidations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
9501
|
+
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
9502
|
+
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
9503
|
+
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
9504
|
+
}>>;
|
|
9505
|
+
}>;
|
|
9622
9506
|
}>;
|
|
9623
9507
|
slot: import("@chainsafe/ssz").UintNumberType;
|
|
9624
9508
|
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -9694,6 +9578,66 @@ declare const typesByFork: {
|
|
|
9694
9578
|
proofs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
9695
9579
|
blobs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
9696
9580
|
}>;
|
|
9581
|
+
ExecutionPayloadAndBlobsBundle: ContainerType<{
|
|
9582
|
+
executionPayload: ContainerType<{
|
|
9583
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
9584
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
9585
|
+
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
9586
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
9587
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
9588
|
+
address: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
9589
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
9590
|
+
}>>;
|
|
9591
|
+
transactions: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
9592
|
+
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
9593
|
+
feeRecipient: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
9594
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
9595
|
+
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
9596
|
+
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
9597
|
+
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
9598
|
+
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
9599
|
+
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
9600
|
+
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
9601
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
9602
|
+
extraData: import("@chainsafe/ssz").ByteListType;
|
|
9603
|
+
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
9604
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
9605
|
+
}>;
|
|
9606
|
+
blobsBundle: ContainerType<{
|
|
9607
|
+
commitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
9608
|
+
proofs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
9609
|
+
blobs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
9610
|
+
}>;
|
|
9611
|
+
}>;
|
|
9612
|
+
LightClientHeader: ContainerType<{
|
|
9613
|
+
beacon: ContainerType<{
|
|
9614
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
9615
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
9616
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
9617
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
9618
|
+
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
9619
|
+
}>;
|
|
9620
|
+
execution: ContainerType<{
|
|
9621
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
9622
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
9623
|
+
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
9624
|
+
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
9625
|
+
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
9626
|
+
feeRecipient: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
9627
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
9628
|
+
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
9629
|
+
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
9630
|
+
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
9631
|
+
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
9632
|
+
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
9633
|
+
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
9634
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
9635
|
+
extraData: import("@chainsafe/ssz").ByteListType;
|
|
9636
|
+
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
9637
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
9638
|
+
}>;
|
|
9639
|
+
executionBranch: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
9640
|
+
}>;
|
|
9697
9641
|
Withdrawal: ContainerType<{
|
|
9698
9642
|
index: import("@chainsafe/ssz").UintNumberType;
|
|
9699
9643
|
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|