@lodestar/types 1.22.0 → 1.23.0-dev.06b4c2d324
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/altair/index.d.ts +1 -1
- package/lib/altair/index.js +1 -1
- package/lib/altair/index.js.map +1 -1
- package/lib/altair/sszTypes.js +1 -1
- package/lib/altair/sszTypes.js.map +1 -1
- package/lib/bellatrix/index.d.ts +1 -1
- package/lib/bellatrix/index.js +1 -1
- package/lib/bellatrix/index.js.map +1 -1
- package/lib/bellatrix/sszTypes.js +3 -3
- package/lib/bellatrix/sszTypes.js.map +1 -1
- package/lib/capella/index.d.ts +1 -1
- package/lib/capella/index.js +1 -1
- package/lib/capella/index.js.map +1 -1
- package/lib/capella/sszTypes.js +3 -3
- package/lib/capella/sszTypes.js.map +1 -1
- package/lib/deneb/index.d.ts +1 -1
- package/lib/deneb/index.js +1 -1
- package/lib/deneb/index.js.map +1 -1
- package/lib/deneb/sszTypes.d.ts +1 -1
- package/lib/deneb/sszTypes.js +4 -4
- package/lib/deneb/sszTypes.js.map +1 -1
- package/lib/electra/index.d.ts +1 -1
- package/lib/electra/index.js +1 -1
- package/lib/electra/index.js.map +1 -1
- package/lib/electra/sszTypes.d.ts +229 -241
- package/lib/electra/sszTypes.js +41 -44
- package/lib/electra/sszTypes.js.map +1 -1
- package/lib/electra/types.d.ts +2 -4
- package/lib/index.d.ts +1 -0
- package/lib/index.js +1 -0
- package/lib/index.js.map +1 -1
- package/lib/phase0/index.d.ts +1 -1
- package/lib/phase0/index.js +1 -1
- package/lib/phase0/index.js.map +1 -1
- package/lib/phase0/sszTypes.d.ts +1 -1
- package/lib/phase0/sszTypes.js +1 -1
- package/lib/phase0/sszTypes.js.map +1 -1
- package/lib/phase0/validator.js +2 -0
- package/lib/phase0/validator.js.map +1 -1
- package/lib/primitive/index.d.ts +1 -1
- package/lib/primitive/index.js +1 -1
- package/lib/primitive/index.js.map +1 -1
- package/lib/primitive/sszTypes.d.ts +1 -1
- package/lib/primitive/sszTypes.js +2 -1
- package/lib/primitive/sszTypes.js.map +1 -1
- package/lib/sszTypes.d.ts +290 -242
- package/lib/sszTypes.js +1 -1
- package/lib/sszTypes.js.map +1 -1
- package/lib/types.d.ts +17 -5
- package/lib/types.js +1 -1
- package/lib/types.js.map +1 -1
- package/lib/utils/executionAddress.js +1 -1
- package/lib/utils/executionAddress.js.map +1 -1
- package/lib/utils/typeguards.d.ts +2 -1
- package/lib/utils/typeguards.js +6 -0
- package/lib/utils/typeguards.js.map +1 -1
- package/lib/utils/validatorStatus.d.ts +11 -0
- package/lib/utils/validatorStatus.js +35 -0
- package/lib/utils/validatorStatus.js.map +1 -0
- package/package.json +6 -6
package/lib/sszTypes.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { CompositeType, CompositeView, CompositeViewDU, ContainerType, ValueOf } from "@chainsafe/ssz";
|
|
2
2
|
import { ForkName } from "@lodestar/params";
|
|
3
|
-
import { ssz as phase0 } from "./phase0/index.js";
|
|
4
3
|
import { ssz as altair } from "./altair/index.js";
|
|
5
4
|
import { ssz as bellatrix } from "./bellatrix/index.js";
|
|
6
5
|
import { ssz as capella } from "./capella/index.js";
|
|
7
6
|
import { ssz as deneb } from "./deneb/index.js";
|
|
8
7
|
import { ssz as electra } from "./electra/index.js";
|
|
8
|
+
import { ssz as phase0 } from "./phase0/index.js";
|
|
9
9
|
export * from "./primitive/sszTypes.js";
|
|
10
10
|
export { phase0, altair, bellatrix, capella, deneb, electra };
|
|
11
11
|
/**
|
|
@@ -7678,12 +7678,12 @@ declare const typesByFork: {
|
|
|
7678
7678
|
WithdrawalRequest: ContainerType<{
|
|
7679
7679
|
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
7680
7680
|
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
7681
|
-
amount: import("@chainsafe/ssz").
|
|
7681
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
7682
7682
|
}>;
|
|
7683
7683
|
WithdrawalRequests: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
7684
7684
|
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
7685
7685
|
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
7686
|
-
amount: import("@chainsafe/ssz").
|
|
7686
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
7687
7687
|
}>>;
|
|
7688
7688
|
ConsolidationRequest: ContainerType<{
|
|
7689
7689
|
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
@@ -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
|
-
amount: import("@chainsafe/ssz").
|
|
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").UintNumberType;
|
|
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").UintNumberType;
|
|
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").UintNumberType;
|
|
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;
|
|
@@ -8373,6 +8375,25 @@ declare const typesByFork: {
|
|
|
8373
8375
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
8374
8376
|
}>>;
|
|
8375
8377
|
blobKzgCommitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
8378
|
+
executionRequests: ContainerType<{
|
|
8379
|
+
deposits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
8380
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
8381
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
8382
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
8383
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
8384
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
8385
|
+
}>>;
|
|
8386
|
+
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
8387
|
+
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
8388
|
+
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
8389
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
8390
|
+
}>>;
|
|
8391
|
+
consolidations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
8392
|
+
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
8393
|
+
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
8394
|
+
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
8395
|
+
}>>;
|
|
8396
|
+
}>;
|
|
8376
8397
|
}>;
|
|
8377
8398
|
BlindedBeaconBlock: ContainerType<{
|
|
8378
8399
|
body: ContainerType<{
|
|
@@ -8480,9 +8501,6 @@ declare const typesByFork: {
|
|
|
8480
8501
|
syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
|
|
8481
8502
|
}>;
|
|
8482
8503
|
executionPayloadHeader: ContainerType<{
|
|
8483
|
-
depositRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
8484
|
-
withdrawalRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
8485
|
-
consolidationRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
8486
8504
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
8487
8505
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
8488
8506
|
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -8510,6 +8528,25 @@ declare const typesByFork: {
|
|
|
8510
8528
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
8511
8529
|
}>>;
|
|
8512
8530
|
blobKzgCommitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
8531
|
+
executionRequests: ContainerType<{
|
|
8532
|
+
deposits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
8533
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
8534
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
8535
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
8536
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
8537
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
8538
|
+
}>>;
|
|
8539
|
+
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
8540
|
+
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
8541
|
+
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
8542
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
8543
|
+
}>>;
|
|
8544
|
+
consolidations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
8545
|
+
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
8546
|
+
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
8547
|
+
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
8548
|
+
}>>;
|
|
8549
|
+
}>;
|
|
8513
8550
|
}>;
|
|
8514
8551
|
slot: import("@chainsafe/ssz").UintNumberType;
|
|
8515
8552
|
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -8623,9 +8660,6 @@ declare const typesByFork: {
|
|
|
8623
8660
|
syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
|
|
8624
8661
|
}>;
|
|
8625
8662
|
executionPayloadHeader: ContainerType<{
|
|
8626
|
-
depositRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
8627
|
-
withdrawalRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
8628
|
-
consolidationRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
8629
8663
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
8630
8664
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
8631
8665
|
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -8653,6 +8687,25 @@ declare const typesByFork: {
|
|
|
8653
8687
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
8654
8688
|
}>>;
|
|
8655
8689
|
blobKzgCommitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
8690
|
+
executionRequests: ContainerType<{
|
|
8691
|
+
deposits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
8692
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
8693
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
8694
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
8695
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
8696
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
8697
|
+
}>>;
|
|
8698
|
+
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
8699
|
+
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
8700
|
+
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
8701
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
8702
|
+
}>>;
|
|
8703
|
+
consolidations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
8704
|
+
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
8705
|
+
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
8706
|
+
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
8707
|
+
}>>;
|
|
8708
|
+
}>;
|
|
8656
8709
|
}>;
|
|
8657
8710
|
slot: import("@chainsafe/ssz").UintNumberType;
|
|
8658
8711
|
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -8663,9 +8716,6 @@ declare const typesByFork: {
|
|
|
8663
8716
|
}>;
|
|
8664
8717
|
BuilderBid: ContainerType<{
|
|
8665
8718
|
header: ContainerType<{
|
|
8666
|
-
depositRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
8667
|
-
withdrawalRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
8668
|
-
consolidationRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
8669
8719
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
8670
8720
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
8671
8721
|
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -8684,16 +8734,32 @@ declare const typesByFork: {
|
|
|
8684
8734
|
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
8685
8735
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
8686
8736
|
}>;
|
|
8687
|
-
|
|
8737
|
+
blobKzgCommitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
8738
|
+
executionRequests: ContainerType<{
|
|
8739
|
+
deposits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
8740
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
8741
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
8742
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
8743
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
8744
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
8745
|
+
}>>;
|
|
8746
|
+
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
8747
|
+
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
8748
|
+
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
8749
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
8750
|
+
}>>;
|
|
8751
|
+
consolidations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
8752
|
+
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
8753
|
+
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
8754
|
+
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
8755
|
+
}>>;
|
|
8756
|
+
}>;
|
|
8688
8757
|
value: import("@chainsafe/ssz").UintBigintType;
|
|
8689
8758
|
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
8690
8759
|
}>;
|
|
8691
8760
|
SignedBuilderBid: ContainerType<{
|
|
8692
8761
|
message: ContainerType<{
|
|
8693
8762
|
header: ContainerType<{
|
|
8694
|
-
depositRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
8695
|
-
withdrawalRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
8696
|
-
consolidationRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
8697
8763
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
8698
8764
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
8699
8765
|
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -8712,67 +8778,44 @@ declare const typesByFork: {
|
|
|
8712
8778
|
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
8713
8779
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
8714
8780
|
}>;
|
|
8715
|
-
|
|
8781
|
+
blobKzgCommitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
8782
|
+
executionRequests: ContainerType<{
|
|
8783
|
+
deposits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
8784
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
8785
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
8786
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
8787
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
8788
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
8789
|
+
}>>;
|
|
8790
|
+
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
8791
|
+
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
8792
|
+
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
8793
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
8794
|
+
}>>;
|
|
8795
|
+
consolidations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
8796
|
+
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
8797
|
+
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
8798
|
+
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
8799
|
+
}>>;
|
|
8800
|
+
}>;
|
|
8716
8801
|
value: import("@chainsafe/ssz").UintBigintType;
|
|
8717
8802
|
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
8718
8803
|
}>;
|
|
8719
8804
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
8720
8805
|
}>;
|
|
8721
|
-
|
|
8722
|
-
|
|
8723
|
-
|
|
8724
|
-
|
|
8725
|
-
|
|
8726
|
-
|
|
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").UintNumberType;
|
|
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
|
-
PendingBalanceDeposit: ContainerType<{
|
|
8770
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
8771
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
8806
|
+
PendingDeposit: ContainerType<{
|
|
8807
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
8808
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
8809
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
8810
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
8811
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
8772
8812
|
}>;
|
|
8773
|
-
|
|
8774
|
-
|
|
8775
|
-
|
|
8813
|
+
PendingDeposits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
8814
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
8815
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
8816
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
8817
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
8818
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
8776
8819
|
}>>;
|
|
8777
8820
|
PendingPartialWithdrawal: ContainerType<{
|
|
8778
8821
|
index: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -8842,9 +8885,6 @@ declare const typesByFork: {
|
|
|
8842
8885
|
aggregatePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
8843
8886
|
}>;
|
|
8844
8887
|
latestExecutionPayloadHeader: ContainerType<{
|
|
8845
|
-
depositRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
8846
|
-
withdrawalRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
8847
|
-
consolidationRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
8848
8888
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
8849
8889
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
8850
8890
|
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -8875,9 +8915,12 @@ declare const typesByFork: {
|
|
|
8875
8915
|
earliestExitEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
8876
8916
|
consolidationBalanceToConsume: import("@chainsafe/ssz").UintBigintType;
|
|
8877
8917
|
earliestConsolidationEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
8878
|
-
|
|
8879
|
-
|
|
8880
|
-
|
|
8918
|
+
pendingDeposits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
8919
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
8920
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
8921
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
8922
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
8923
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
8881
8924
|
}>>;
|
|
8882
8925
|
pendingPartialWithdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
8883
8926
|
index: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -8889,38 +8932,6 @@ declare const typesByFork: {
|
|
|
8889
8932
|
targetIndex: import("@chainsafe/ssz").UintNumberType;
|
|
8890
8933
|
}>>;
|
|
8891
8934
|
}>;
|
|
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
8935
|
LightClientBootstrap: ContainerType<{
|
|
8925
8936
|
header: ContainerType<{
|
|
8926
8937
|
beacon: ContainerType<{
|
|
@@ -8931,9 +8942,6 @@ declare const typesByFork: {
|
|
|
8931
8942
|
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
8932
8943
|
}>;
|
|
8933
8944
|
execution: ContainerType<{
|
|
8934
|
-
depositRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
8935
|
-
withdrawalRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
8936
|
-
consolidationRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
8937
8945
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
8938
8946
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
8939
8947
|
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -8970,9 +8978,6 @@ declare const typesByFork: {
|
|
|
8970
8978
|
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
8971
8979
|
}>;
|
|
8972
8980
|
execution: ContainerType<{
|
|
8973
|
-
depositRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
8974
|
-
withdrawalRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
8975
|
-
consolidationRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
8976
8981
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
8977
8982
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
8978
8983
|
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -9007,9 +9012,6 @@ declare const typesByFork: {
|
|
|
9007
9012
|
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
9008
9013
|
}>;
|
|
9009
9014
|
execution: ContainerType<{
|
|
9010
|
-
depositRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
9011
|
-
withdrawalRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
9012
|
-
consolidationRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
9013
9015
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
9014
9016
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
9015
9017
|
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -9047,9 +9049,6 @@ declare const typesByFork: {
|
|
|
9047
9049
|
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
9048
9050
|
}>;
|
|
9049
9051
|
execution: ContainerType<{
|
|
9050
|
-
depositRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
9051
|
-
withdrawalRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
9052
|
-
consolidationRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
9053
9052
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
9054
9053
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
9055
9054
|
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -9079,9 +9078,6 @@ declare const typesByFork: {
|
|
|
9079
9078
|
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
9080
9079
|
}>;
|
|
9081
9080
|
execution: ContainerType<{
|
|
9082
|
-
depositRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
9083
|
-
withdrawalRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
9084
|
-
consolidationRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
9085
9081
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
9086
9082
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
9087
9083
|
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -9119,9 +9115,6 @@ declare const typesByFork: {
|
|
|
9119
9115
|
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
9120
9116
|
}>;
|
|
9121
9117
|
execution: ContainerType<{
|
|
9122
|
-
depositRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
9123
|
-
withdrawalRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
9124
|
-
consolidationRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
9125
9118
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
9126
9119
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
9127
9120
|
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -9159,9 +9152,6 @@ declare const typesByFork: {
|
|
|
9159
9152
|
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
9160
9153
|
}>;
|
|
9161
9154
|
execution: ContainerType<{
|
|
9162
|
-
depositRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
9163
|
-
withdrawalRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
9164
|
-
consolidationRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
9165
9155
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
9166
9156
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
9167
9157
|
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -9198,9 +9188,6 @@ declare const typesByFork: {
|
|
|
9198
9188
|
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
9199
9189
|
}>;
|
|
9200
9190
|
execution: ContainerType<{
|
|
9201
|
-
depositRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
9202
|
-
withdrawalRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
9203
|
-
consolidationRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
9204
9191
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
9205
9192
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
9206
9193
|
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -9235,9 +9222,6 @@ declare const typesByFork: {
|
|
|
9235
9222
|
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
9236
9223
|
}>;
|
|
9237
9224
|
execution: ContainerType<{
|
|
9238
|
-
depositRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
9239
|
-
withdrawalRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
9240
|
-
consolidationRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
9241
9225
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
9242
9226
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
9243
9227
|
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -9404,23 +9388,6 @@ declare const typesByFork: {
|
|
|
9404
9388
|
syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
|
|
9405
9389
|
}>;
|
|
9406
9390
|
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").UintNumberType;
|
|
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
9391
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
9425
9392
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
9426
9393
|
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
@@ -9453,6 +9420,25 @@ declare const typesByFork: {
|
|
|
9453
9420
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
9454
9421
|
}>>;
|
|
9455
9422
|
blobKzgCommitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
9423
|
+
executionRequests: ContainerType<{
|
|
9424
|
+
deposits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
9425
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
9426
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
9427
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
9428
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
9429
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
9430
|
+
}>>;
|
|
9431
|
+
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
9432
|
+
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
9433
|
+
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
9434
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
9435
|
+
}>>;
|
|
9436
|
+
consolidations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
9437
|
+
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
9438
|
+
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
9439
|
+
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
9440
|
+
}>>;
|
|
9441
|
+
}>;
|
|
9456
9442
|
}>;
|
|
9457
9443
|
slot: import("@chainsafe/ssz").UintNumberType;
|
|
9458
9444
|
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -9570,23 +9556,6 @@ declare const typesByFork: {
|
|
|
9570
9556
|
syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
|
|
9571
9557
|
}>;
|
|
9572
9558
|
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").UintNumberType;
|
|
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
9559
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
9591
9560
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
9592
9561
|
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
@@ -9619,6 +9588,25 @@ declare const typesByFork: {
|
|
|
9619
9588
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
9620
9589
|
}>>;
|
|
9621
9590
|
blobKzgCommitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
9591
|
+
executionRequests: ContainerType<{
|
|
9592
|
+
deposits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
9593
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
9594
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
9595
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
9596
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
9597
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
9598
|
+
}>>;
|
|
9599
|
+
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
9600
|
+
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
9601
|
+
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
9602
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
9603
|
+
}>>;
|
|
9604
|
+
consolidations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
9605
|
+
sourceAddress: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
9606
|
+
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
9607
|
+
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
9608
|
+
}>>;
|
|
9609
|
+
}>;
|
|
9622
9610
|
}>;
|
|
9623
9611
|
slot: import("@chainsafe/ssz").UintNumberType;
|
|
9624
9612
|
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -9694,6 +9682,66 @@ declare const typesByFork: {
|
|
|
9694
9682
|
proofs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
9695
9683
|
blobs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
9696
9684
|
}>;
|
|
9685
|
+
ExecutionPayloadAndBlobsBundle: ContainerType<{
|
|
9686
|
+
executionPayload: ContainerType<{
|
|
9687
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
9688
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
9689
|
+
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
9690
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
9691
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
9692
|
+
address: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
9693
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
9694
|
+
}>>;
|
|
9695
|
+
transactions: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
9696
|
+
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
9697
|
+
feeRecipient: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
9698
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
9699
|
+
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
9700
|
+
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
9701
|
+
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
9702
|
+
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
9703
|
+
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
9704
|
+
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
9705
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
9706
|
+
extraData: import("@chainsafe/ssz").ByteListType;
|
|
9707
|
+
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
9708
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
9709
|
+
}>;
|
|
9710
|
+
blobsBundle: ContainerType<{
|
|
9711
|
+
commitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
9712
|
+
proofs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
9713
|
+
blobs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
9714
|
+
}>;
|
|
9715
|
+
}>;
|
|
9716
|
+
LightClientHeader: ContainerType<{
|
|
9717
|
+
beacon: ContainerType<{
|
|
9718
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
9719
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
9720
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
9721
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
9722
|
+
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
9723
|
+
}>;
|
|
9724
|
+
execution: ContainerType<{
|
|
9725
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
9726
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
9727
|
+
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
9728
|
+
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
9729
|
+
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
9730
|
+
feeRecipient: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
9731
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
9732
|
+
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
9733
|
+
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
9734
|
+
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
9735
|
+
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
9736
|
+
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
9737
|
+
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
9738
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
9739
|
+
extraData: import("@chainsafe/ssz").ByteListType;
|
|
9740
|
+
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
9741
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
9742
|
+
}>;
|
|
9743
|
+
executionBranch: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
9744
|
+
}>;
|
|
9697
9745
|
Withdrawal: ContainerType<{
|
|
9698
9746
|
index: import("@chainsafe/ssz").UintNumberType;
|
|
9699
9747
|
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|