@lodestar/beacon-node 1.45.0 → 1.46.0-dev.82546f11da
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/api/impl/beacon/blocks/index.d.ts.map +1 -1
- package/lib/api/impl/beacon/blocks/index.js +186 -57
- package/lib/api/impl/beacon/blocks/index.js.map +1 -1
- package/lib/api/impl/validator/index.d.ts.map +1 -1
- package/lib/api/impl/validator/index.js +172 -88
- package/lib/api/impl/validator/index.js.map +1 -1
- package/lib/api/rest/base.d.ts.map +1 -1
- package/lib/api/rest/base.js +6 -3
- package/lib/api/rest/base.js.map +1 -1
- package/lib/chain/blocks/importBlock.d.ts.map +1 -1
- package/lib/chain/blocks/importBlock.js +2 -17
- package/lib/chain/blocks/importBlock.js.map +1 -1
- package/lib/chain/blocks/utils/chainSegment.d.ts.map +1 -1
- package/lib/chain/blocks/utils/chainSegment.js +13 -5
- package/lib/chain/blocks/utils/chainSegment.js.map +1 -1
- package/lib/chain/blocks/verifyBlocksExecutionPayloads.js +1 -1
- package/lib/chain/blocks/verifyBlocksExecutionPayloads.js.map +1 -1
- package/lib/chain/blocks/verifyBlocksSanityChecks.js +1 -1
- package/lib/chain/blocks/verifyBlocksSanityChecks.js.map +1 -1
- package/lib/chain/blocks/verifyExecutionPayloadEnvelope.js +2 -2
- package/lib/chain/blocks/verifyExecutionPayloadEnvelope.js.map +1 -1
- package/lib/chain/chain.d.ts.map +1 -1
- package/lib/chain/chain.js +44 -2
- package/lib/chain/chain.js.map +1 -1
- package/lib/chain/errors/blockError.d.ts +48 -6
- package/lib/chain/errors/blockError.d.ts.map +1 -1
- package/lib/chain/errors/blockError.js +25 -4
- package/lib/chain/errors/blockError.js.map +1 -1
- package/lib/chain/errors/executionPayloadEnvelope.d.ts +11 -0
- package/lib/chain/errors/executionPayloadEnvelope.d.ts.map +1 -1
- package/lib/chain/errors/executionPayloadEnvelope.js +2 -0
- package/lib/chain/errors/executionPayloadEnvelope.js.map +1 -1
- package/lib/chain/errors/proposerPreferences.d.ts +14 -1
- package/lib/chain/errors/proposerPreferences.d.ts.map +1 -1
- package/lib/chain/errors/proposerPreferences.js +2 -0
- package/lib/chain/errors/proposerPreferences.js.map +1 -1
- package/lib/chain/lightClient/index.d.ts.map +1 -1
- package/lib/chain/lightClient/index.js +11 -6
- package/lib/chain/lightClient/index.js.map +1 -1
- package/lib/chain/lightClient/proofs.d.ts.map +1 -1
- package/lib/chain/lightClient/proofs.js +28 -2
- package/lib/chain/lightClient/proofs.js.map +1 -1
- package/lib/chain/lightClient/types.d.ts +3 -1
- package/lib/chain/lightClient/types.d.ts.map +1 -1
- package/lib/chain/opPools/aggregatedAttestationPool.js +1 -1
- package/lib/chain/opPools/aggregatedAttestationPool.js.map +1 -1
- package/lib/chain/opPools/proposerPreferencesPool.d.ts +1 -1
- package/lib/chain/opPools/proposerPreferencesPool.d.ts.map +1 -1
- package/lib/chain/opPools/proposerPreferencesPool.js +1 -1
- package/lib/chain/opPools/proposerPreferencesPool.js.map +1 -1
- package/lib/chain/validation/aggregateAndProof.js +10 -6
- package/lib/chain/validation/aggregateAndProof.js.map +1 -1
- package/lib/chain/validation/attestation.d.ts.map +1 -1
- package/lib/chain/validation/attestation.js +10 -6
- package/lib/chain/validation/attestation.js.map +1 -1
- package/lib/chain/validation/block.d.ts.map +1 -1
- package/lib/chain/validation/block.js +53 -4
- package/lib/chain/validation/block.js.map +1 -1
- package/lib/chain/validation/executionPayloadBid.d.ts +5 -0
- package/lib/chain/validation/executionPayloadBid.d.ts.map +1 -1
- package/lib/chain/validation/executionPayloadBid.js +31 -3
- package/lib/chain/validation/executionPayloadBid.js.map +1 -1
- package/lib/chain/validation/executionPayloadEnvelope.d.ts.map +1 -1
- package/lib/chain/validation/executionPayloadEnvelope.js +29 -0
- package/lib/chain/validation/executionPayloadEnvelope.js.map +1 -1
- package/lib/chain/validation/proposerPreferences.d.ts +9 -2
- package/lib/chain/validation/proposerPreferences.d.ts.map +1 -1
- package/lib/chain/validation/proposerPreferences.js +61 -9
- package/lib/chain/validation/proposerPreferences.js.map +1 -1
- package/lib/chain/validation/signatureSets/aggregateAndProof.d.ts.map +1 -1
- package/lib/chain/validation/signatureSets/aggregateAndProof.js +2 -3
- package/lib/chain/validation/signatureSets/aggregateAndProof.js.map +1 -1
- package/lib/db/repositories/lightclientSyncCommitteeWitness.d.ts.map +1 -1
- package/lib/db/repositories/lightclientSyncCommitteeWitness.js +42 -7
- package/lib/db/repositories/lightclientSyncCommitteeWitness.js.map +1 -1
- package/lib/network/gossip/encoding.d.ts +2 -2
- package/lib/network/gossip/encoding.d.ts.map +1 -1
- package/lib/network/gossip/encoding.js +15 -9
- package/lib/network/gossip/encoding.js.map +1 -1
- package/lib/network/gossip/gossipsub.d.ts.map +1 -1
- package/lib/network/gossip/gossipsub.js +2 -2
- package/lib/network/gossip/gossipsub.js.map +1 -1
- package/lib/network/gossip/topic.d.ts +74 -231
- package/lib/network/gossip/topic.d.ts.map +1 -1
- package/lib/network/gossip/topic.js +24 -1
- package/lib/network/gossip/topic.js.map +1 -1
- package/lib/network/interface.d.ts +4 -1
- package/lib/network/interface.d.ts.map +1 -1
- package/lib/network/network.d.ts +4 -1
- package/lib/network/network.d.ts.map +1 -1
- package/lib/network/network.js +19 -11
- package/lib/network/network.js.map +1 -1
- package/lib/network/processor/gossipHandlers.d.ts.map +1 -1
- package/lib/network/processor/gossipHandlers.js +12 -6
- package/lib/network/processor/gossipHandlers.js.map +1 -1
- package/lib/network/reqresp/handlers/executionPayloadEnvelopesByRange.d.ts.map +1 -1
- package/lib/network/reqresp/handlers/executionPayloadEnvelopesByRange.js +4 -2
- package/lib/network/reqresp/handlers/executionPayloadEnvelopesByRange.js.map +1 -1
- package/lib/network/reqresp/handlers/index.d.ts.map +1 -1
- package/lib/network/reqresp/handlers/index.js +20 -11
- package/lib/network/reqresp/handlers/index.js.map +1 -1
- package/lib/network/util.d.ts +1 -0
- package/lib/network/util.d.ts.map +1 -1
- package/lib/network/util.js +4 -0
- package/lib/network/util.js.map +1 -1
- package/lib/sync/sync.d.ts.map +1 -1
- package/lib/sync/sync.js +7 -0
- package/lib/sync/sync.js.map +1 -1
- package/lib/sync/unknownBlock.d.ts.map +1 -1
- package/lib/sync/unknownBlock.js +7 -2
- package/lib/sync/unknownBlock.js.map +1 -1
- package/lib/util/execution.js +1 -1
- package/lib/util/execution.js.map +1 -1
- package/package.json +18 -16
- package/src/api/impl/beacon/blocks/index.ts +221 -63
- package/src/api/impl/validator/index.ts +206 -98
- package/src/api/rest/base.ts +8 -3
- package/src/chain/blocks/importBlock.ts +0 -17
- package/src/chain/blocks/utils/chainSegment.ts +16 -5
- package/src/chain/blocks/verifyBlocksExecutionPayloads.ts +1 -1
- package/src/chain/blocks/verifyBlocksSanityChecks.ts +1 -1
- package/src/chain/blocks/verifyExecutionPayloadEnvelope.ts +2 -2
- package/src/chain/chain.ts +61 -2
- package/src/chain/errors/blockError.ts +44 -7
- package/src/chain/errors/executionPayloadEnvelope.ts +9 -0
- package/src/chain/errors/proposerPreferences.ts +16 -1
- package/src/chain/lightClient/index.ts +12 -7
- package/src/chain/lightClient/proofs.ts +36 -1
- package/src/chain/lightClient/types.ts +3 -1
- package/src/chain/opPools/aggregatedAttestationPool.ts +1 -1
- package/src/chain/opPools/proposerPreferencesPool.ts +1 -1
- package/src/chain/validation/aggregateAndProof.ts +12 -6
- package/src/chain/validation/attestation.ts +12 -6
- package/src/chain/validation/block.ts +69 -4
- package/src/chain/validation/executionPayloadBid.ts +33 -3
- package/src/chain/validation/executionPayloadEnvelope.ts +37 -0
- package/src/chain/validation/proposerPreferences.ts +71 -9
- package/src/chain/validation/signatureSets/aggregateAndProof.ts +3 -3
- package/src/db/repositories/lightclientSyncCommitteeWitness.ts +57 -9
- package/src/network/gossip/encoding.ts +13 -7
- package/src/network/gossip/gossipsub.ts +7 -2
- package/src/network/gossip/topic.ts +30 -0
- package/src/network/interface.ts +3 -1
- package/src/network/network.ts +24 -15
- package/src/network/processor/gossipHandlers.ts +12 -6
- package/src/network/reqresp/handlers/executionPayloadEnvelopesByRange.ts +4 -2
- package/src/network/reqresp/handlers/index.ts +21 -12
- package/src/network/util.ts +5 -0
- package/src/sync/sync.ts +10 -0
- package/src/sync/unknownBlock.ts +8 -2
- package/src/util/execution.ts +1 -1
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { type CompositeTypeAny } from "@chainsafe/ssz";
|
|
1
2
|
import { ForkDigestContext } from "@lodestar/config";
|
|
2
3
|
import { ForkName } from "@lodestar/params";
|
|
3
4
|
import { Attestation, SingleAttestation } from "@lodestar/types";
|
|
@@ -907,7 +908,7 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
|
|
|
907
908
|
}>;
|
|
908
909
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
909
910
|
}> | import("@chainsafe/ssz").ContainerType<{
|
|
910
|
-
message: import("@chainsafe/ssz").
|
|
911
|
+
message: import("@chainsafe/ssz").ProgressiveContainerType<{
|
|
911
912
|
parentBlockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
912
913
|
parentBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
913
914
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -918,13 +919,13 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
|
|
|
918
919
|
slot: import("@chainsafe/ssz").UintNumberType;
|
|
919
920
|
value: import("@chainsafe/ssz").UintNumberType;
|
|
920
921
|
executionPayment: import("@chainsafe/ssz").UintNumberType;
|
|
921
|
-
blobKzgCommitments: import("@chainsafe/ssz").
|
|
922
|
+
blobKzgCommitments: import("@chainsafe/ssz").ProgressiveListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
922
923
|
executionRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
923
924
|
}>;
|
|
924
925
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
925
926
|
}> | import("@chainsafe/ssz").ContainerType<{
|
|
926
|
-
message: import("@chainsafe/ssz").
|
|
927
|
-
payload: import("@chainsafe/ssz").
|
|
927
|
+
message: import("@chainsafe/ssz").ProgressiveContainerType<{
|
|
928
|
+
payload: import("@chainsafe/ssz").ProgressiveContainerType<{
|
|
928
929
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
929
930
|
feeRecipient: import("@lodestar/types").ExecutionAddressType;
|
|
930
931
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -938,43 +939,43 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
|
|
|
938
939
|
extraData: import("@chainsafe/ssz").ByteListType;
|
|
939
940
|
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
940
941
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
941
|
-
|
|
942
|
-
|
|
942
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
943
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
944
|
+
transactions: import("@chainsafe/ssz").ProgressiveListCompositeType<import("@chainsafe/ssz").ProgressiveByteListType>;
|
|
945
|
+
withdrawals: import("@chainsafe/ssz").ProgressiveListCompositeType<import("@chainsafe/ssz").ContainerType<{
|
|
943
946
|
index: import("@chainsafe/ssz").UintNumberType;
|
|
944
947
|
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
945
948
|
address: import("@lodestar/types").ExecutionAddressType;
|
|
946
949
|
amount: import("@chainsafe/ssz").UintBigintType;
|
|
947
950
|
}>>;
|
|
948
|
-
|
|
949
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
950
|
-
blockAccessList: import("@chainsafe/ssz").ByteListType;
|
|
951
|
+
blockAccessList: import("@chainsafe/ssz").ProgressiveByteListType;
|
|
951
952
|
slotNumber: import("@chainsafe/ssz").UintNumberType;
|
|
952
953
|
}>;
|
|
953
|
-
executionRequests: import("@chainsafe/ssz").
|
|
954
|
-
deposits: import("@chainsafe/ssz").
|
|
954
|
+
executionRequests: import("@chainsafe/ssz").ProgressiveContainerType<{
|
|
955
|
+
deposits: import("@chainsafe/ssz").ProgressiveListCompositeType<import("@chainsafe/ssz").ContainerType<{
|
|
955
956
|
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
956
957
|
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
957
958
|
amount: import("@chainsafe/ssz").UintNumberType;
|
|
958
959
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
959
960
|
index: import("@chainsafe/ssz").UintBigintType;
|
|
960
961
|
}>>;
|
|
961
|
-
withdrawals: import("@chainsafe/ssz").
|
|
962
|
+
withdrawals: import("@chainsafe/ssz").ProgressiveListCompositeType<import("@chainsafe/ssz").ContainerType<{
|
|
962
963
|
sourceAddress: import("@lodestar/types").ExecutionAddressType;
|
|
963
964
|
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
964
965
|
amount: import("@chainsafe/ssz").UintBigintType;
|
|
965
966
|
}>>;
|
|
966
|
-
consolidations: import("@chainsafe/ssz").
|
|
967
|
+
consolidations: import("@chainsafe/ssz").ProgressiveListCompositeType<import("@chainsafe/ssz").ContainerType<{
|
|
967
968
|
sourceAddress: import("@lodestar/types").ExecutionAddressType;
|
|
968
969
|
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
969
970
|
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
970
971
|
}>>;
|
|
971
|
-
builderDeposits: import("@chainsafe/ssz").
|
|
972
|
+
builderDeposits: import("@chainsafe/ssz").ProgressiveListCompositeType<import("@chainsafe/ssz").ContainerType<{
|
|
972
973
|
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
973
974
|
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
974
975
|
amount: import("@chainsafe/ssz").UintNumberType;
|
|
975
976
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
976
977
|
}>>;
|
|
977
|
-
builderExits: import("@chainsafe/ssz").
|
|
978
|
+
builderExits: import("@chainsafe/ssz").ProgressiveListCompositeType<import("@chainsafe/ssz").ContainerType<{
|
|
978
979
|
sourceAddress: import("@lodestar/types").ExecutionAddressType;
|
|
979
980
|
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
980
981
|
}>>;
|
|
@@ -990,7 +991,7 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
|
|
|
990
991
|
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
991
992
|
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
992
993
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
993
|
-
body: import("@chainsafe/ssz").
|
|
994
|
+
body: import("@chainsafe/ssz").ProgressiveContainerType<{
|
|
994
995
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
995
996
|
eth1Data: import("@chainsafe/ssz").ContainerType<{
|
|
996
997
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -998,7 +999,7 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
|
|
|
998
999
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
999
1000
|
}>;
|
|
1000
1001
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
1001
|
-
proposerSlashings: import("@chainsafe/ssz").
|
|
1002
|
+
proposerSlashings: import("@chainsafe/ssz").ProgressiveListCompositeType<import("@chainsafe/ssz").ContainerType<{
|
|
1002
1003
|
signedHeader1: import("@chainsafe/ssz").ContainerType<{
|
|
1003
1004
|
message: import("@chainsafe/ssz").ContainerType<{
|
|
1004
1005
|
slot: import("@chainsafe/ssz").UintBigintType;
|
|
@@ -1020,9 +1021,9 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
|
|
|
1020
1021
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
1021
1022
|
}>;
|
|
1022
1023
|
}>>;
|
|
1023
|
-
attesterSlashings: import("@chainsafe/ssz").
|
|
1024
|
-
attestation1: import("@chainsafe/ssz").
|
|
1025
|
-
attestingIndices: import("@chainsafe/ssz").
|
|
1024
|
+
attesterSlashings: import("@chainsafe/ssz").ProgressiveListCompositeType<import("@chainsafe/ssz").ContainerType<{
|
|
1025
|
+
attestation1: import("@chainsafe/ssz").ProgressiveContainerType<{
|
|
1026
|
+
attestingIndices: import("@chainsafe/ssz").ProgressiveListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
1026
1027
|
data: import("@chainsafe/ssz").ContainerType<{
|
|
1027
1028
|
slot: import("@chainsafe/ssz").UintBigintType;
|
|
1028
1029
|
index: import("@chainsafe/ssz").UintBigintType;
|
|
@@ -1038,8 +1039,8 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
|
|
|
1038
1039
|
}>;
|
|
1039
1040
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
1040
1041
|
}>;
|
|
1041
|
-
attestation2: import("@chainsafe/ssz").
|
|
1042
|
-
attestingIndices: import("@chainsafe/ssz").
|
|
1042
|
+
attestation2: import("@chainsafe/ssz").ProgressiveContainerType<{
|
|
1043
|
+
attestingIndices: import("@chainsafe/ssz").ProgressiveListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
1043
1044
|
data: import("@chainsafe/ssz").ContainerType<{
|
|
1044
1045
|
slot: import("@chainsafe/ssz").UintBigintType;
|
|
1045
1046
|
index: import("@chainsafe/ssz").UintBigintType;
|
|
@@ -1056,8 +1057,8 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
|
|
|
1056
1057
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
1057
1058
|
}>;
|
|
1058
1059
|
}>>;
|
|
1059
|
-
attestations: import("@chainsafe/ssz").
|
|
1060
|
-
aggregationBits: import("@chainsafe/ssz").
|
|
1060
|
+
attestations: import("@chainsafe/ssz").ProgressiveListCompositeType<import("@chainsafe/ssz").ProgressiveContainerType<{
|
|
1061
|
+
aggregationBits: import("@chainsafe/ssz").ProgressiveBitListType;
|
|
1061
1062
|
data: import("@chainsafe/ssz").ContainerType<{
|
|
1062
1063
|
slot: import("@chainsafe/ssz").UintNumberType;
|
|
1063
1064
|
index: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -1074,7 +1075,7 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
|
|
|
1074
1075
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
1075
1076
|
committeeBits: import("@chainsafe/ssz").BitVectorType;
|
|
1076
1077
|
}>>;
|
|
1077
|
-
deposits: import("@chainsafe/ssz").
|
|
1078
|
+
deposits: import("@chainsafe/ssz").ProgressiveListCompositeType<import("@chainsafe/ssz").ContainerType<{
|
|
1078
1079
|
proof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
1079
1080
|
data: import("@chainsafe/ssz").ContainerType<{
|
|
1080
1081
|
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -1083,7 +1084,7 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
|
|
|
1083
1084
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
1084
1085
|
}>;
|
|
1085
1086
|
}>>;
|
|
1086
|
-
voluntaryExits: import("@chainsafe/ssz").
|
|
1087
|
+
voluntaryExits: import("@chainsafe/ssz").ProgressiveListCompositeType<import("@chainsafe/ssz").ContainerType<{
|
|
1087
1088
|
message: import("@chainsafe/ssz").ContainerType<{
|
|
1088
1089
|
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
1089
1090
|
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -1094,7 +1095,7 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
|
|
|
1094
1095
|
syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
|
|
1095
1096
|
syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
|
|
1096
1097
|
}>;
|
|
1097
|
-
blsToExecutionChanges: import("@chainsafe/ssz").
|
|
1098
|
+
blsToExecutionChanges: import("@chainsafe/ssz").ProgressiveListCompositeType<import("@chainsafe/ssz").ContainerType<{
|
|
1098
1099
|
message: import("@chainsafe/ssz").ContainerType<{
|
|
1099
1100
|
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1100
1101
|
fromBlsPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -1103,7 +1104,7 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
|
|
|
1103
1104
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
1104
1105
|
}>>;
|
|
1105
1106
|
signedExecutionPayloadBid: import("@chainsafe/ssz").ContainerType<{
|
|
1106
|
-
message: import("@chainsafe/ssz").
|
|
1107
|
+
message: import("@chainsafe/ssz").ProgressiveContainerType<{
|
|
1107
1108
|
parentBlockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1108
1109
|
parentBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1109
1110
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -1114,12 +1115,12 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
|
|
|
1114
1115
|
slot: import("@chainsafe/ssz").UintNumberType;
|
|
1115
1116
|
value: import("@chainsafe/ssz").UintNumberType;
|
|
1116
1117
|
executionPayment: import("@chainsafe/ssz").UintNumberType;
|
|
1117
|
-
blobKzgCommitments: import("@chainsafe/ssz").
|
|
1118
|
+
blobKzgCommitments: import("@chainsafe/ssz").ProgressiveListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
1118
1119
|
executionRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1119
1120
|
}>;
|
|
1120
1121
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
1121
1122
|
}>;
|
|
1122
|
-
payloadAttestations: import("@chainsafe/ssz").
|
|
1123
|
+
payloadAttestations: import("@chainsafe/ssz").ProgressiveListCompositeType<import("@chainsafe/ssz").ProgressiveContainerType<{
|
|
1123
1124
|
aggregationBits: import("@chainsafe/ssz").BitVectorType;
|
|
1124
1125
|
data: import("@chainsafe/ssz").ContainerType<{
|
|
1125
1126
|
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -1129,31 +1130,31 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
|
|
|
1129
1130
|
}>;
|
|
1130
1131
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
1131
1132
|
}>>;
|
|
1132
|
-
parentExecutionRequests: import("@chainsafe/ssz").
|
|
1133
|
-
deposits: import("@chainsafe/ssz").
|
|
1133
|
+
parentExecutionRequests: import("@chainsafe/ssz").ProgressiveContainerType<{
|
|
1134
|
+
deposits: import("@chainsafe/ssz").ProgressiveListCompositeType<import("@chainsafe/ssz").ContainerType<{
|
|
1134
1135
|
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
1135
1136
|
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
1136
1137
|
amount: import("@chainsafe/ssz").UintNumberType;
|
|
1137
1138
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
1138
1139
|
index: import("@chainsafe/ssz").UintBigintType;
|
|
1139
1140
|
}>>;
|
|
1140
|
-
withdrawals: import("@chainsafe/ssz").
|
|
1141
|
+
withdrawals: import("@chainsafe/ssz").ProgressiveListCompositeType<import("@chainsafe/ssz").ContainerType<{
|
|
1141
1142
|
sourceAddress: import("@lodestar/types").ExecutionAddressType;
|
|
1142
1143
|
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
1143
1144
|
amount: import("@chainsafe/ssz").UintBigintType;
|
|
1144
1145
|
}>>;
|
|
1145
|
-
consolidations: import("@chainsafe/ssz").
|
|
1146
|
+
consolidations: import("@chainsafe/ssz").ProgressiveListCompositeType<import("@chainsafe/ssz").ContainerType<{
|
|
1146
1147
|
sourceAddress: import("@lodestar/types").ExecutionAddressType;
|
|
1147
1148
|
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
1148
1149
|
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
1149
1150
|
}>>;
|
|
1150
|
-
builderDeposits: import("@chainsafe/ssz").
|
|
1151
|
+
builderDeposits: import("@chainsafe/ssz").ProgressiveListCompositeType<import("@chainsafe/ssz").ContainerType<{
|
|
1151
1152
|
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
1152
1153
|
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
1153
1154
|
amount: import("@chainsafe/ssz").UintNumberType;
|
|
1154
1155
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
1155
1156
|
}>>;
|
|
1156
|
-
builderExits: import("@chainsafe/ssz").
|
|
1157
|
+
builderExits: import("@chainsafe/ssz").ProgressiveListCompositeType<import("@chainsafe/ssz").ContainerType<{
|
|
1157
1158
|
sourceAddress: import("@lodestar/types").ExecutionAddressType;
|
|
1158
1159
|
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
1159
1160
|
}>>;
|
|
@@ -1179,8 +1180,8 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
|
|
|
1179
1180
|
kzgCommitmentsInclusionProof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
1180
1181
|
}> | import("@chainsafe/ssz").ValueOfFields<{
|
|
1181
1182
|
index: import("@chainsafe/ssz").UintNumberType;
|
|
1182
|
-
column: import("@chainsafe/ssz").
|
|
1183
|
-
kzgProofs: import("@chainsafe/ssz").
|
|
1183
|
+
column: import("@chainsafe/ssz").ProgressiveListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
1184
|
+
kzgProofs: import("@chainsafe/ssz").ProgressiveListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
1184
1185
|
slot: import("@chainsafe/ssz").UintNumberType;
|
|
1185
1186
|
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1186
1187
|
}>, import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
|
|
@@ -1201,8 +1202,8 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
|
|
|
1201
1202
|
kzgCommitmentsInclusionProof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
1202
1203
|
}> | import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
|
|
1203
1204
|
index: import("@chainsafe/ssz").UintNumberType;
|
|
1204
|
-
column: import("@chainsafe/ssz").
|
|
1205
|
-
kzgProofs: import("@chainsafe/ssz").
|
|
1205
|
+
column: import("@chainsafe/ssz").ProgressiveListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
1206
|
+
kzgProofs: import("@chainsafe/ssz").ProgressiveListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
1206
1207
|
slot: import("@chainsafe/ssz").UintNumberType;
|
|
1207
1208
|
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1208
1209
|
}>, import("@chainsafe/ssz/lib/viewDU/container.js").ContainerTreeViewDUType<{
|
|
@@ -1223,8 +1224,8 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
|
|
|
1223
1224
|
kzgCommitmentsInclusionProof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
1224
1225
|
}> | import("@chainsafe/ssz/lib/viewDU/container.js").ContainerTreeViewDUType<{
|
|
1225
1226
|
index: import("@chainsafe/ssz").UintNumberType;
|
|
1226
|
-
column: import("@chainsafe/ssz").
|
|
1227
|
-
kzgProofs: import("@chainsafe/ssz").
|
|
1227
|
+
column: import("@chainsafe/ssz").ProgressiveListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
1228
|
+
kzgProofs: import("@chainsafe/ssz").ProgressiveListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
1228
1229
|
slot: import("@chainsafe/ssz").UintNumberType;
|
|
1229
1230
|
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1230
1231
|
}>> | import("@chainsafe/ssz").CompositeType<import("@chainsafe/ssz").ValueOfFields<{
|
|
@@ -1542,25 +1543,7 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
|
|
|
1542
1543
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1543
1544
|
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1544
1545
|
}>;
|
|
1545
|
-
|
|
1546
|
-
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1547
|
-
feeRecipient: import("@lodestar/types").ExecutionAddressType;
|
|
1548
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1549
|
-
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1550
|
-
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
1551
|
-
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
1552
|
-
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
1553
|
-
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
1554
|
-
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
1555
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
1556
|
-
extraData: import("@chainsafe/ssz").ByteListType;
|
|
1557
|
-
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
1558
|
-
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1559
|
-
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1560
|
-
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1561
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
1562
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
1563
|
-
}>;
|
|
1546
|
+
executionBlockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1564
1547
|
executionBranch: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
1565
1548
|
}>;
|
|
1566
1549
|
finalizedHeader: import("@chainsafe/ssz").ContainerType<{
|
|
@@ -1571,25 +1554,7 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
|
|
|
1571
1554
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1572
1555
|
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1573
1556
|
}>;
|
|
1574
|
-
|
|
1575
|
-
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1576
|
-
feeRecipient: import("@lodestar/types").ExecutionAddressType;
|
|
1577
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1578
|
-
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1579
|
-
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
1580
|
-
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
1581
|
-
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
1582
|
-
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
1583
|
-
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
1584
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
1585
|
-
extraData: import("@chainsafe/ssz").ByteListType;
|
|
1586
|
-
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
1587
|
-
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1588
|
-
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1589
|
-
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1590
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
1591
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
1592
|
-
}>;
|
|
1557
|
+
executionBlockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1593
1558
|
executionBranch: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
1594
1559
|
}>;
|
|
1595
1560
|
finalityBranch: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
@@ -1913,25 +1878,7 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
|
|
|
1913
1878
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1914
1879
|
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1915
1880
|
}>;
|
|
1916
|
-
|
|
1917
|
-
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1918
|
-
feeRecipient: import("@lodestar/types").ExecutionAddressType;
|
|
1919
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1920
|
-
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1921
|
-
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
1922
|
-
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
1923
|
-
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
1924
|
-
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
1925
|
-
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
1926
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
1927
|
-
extraData: import("@chainsafe/ssz").ByteListType;
|
|
1928
|
-
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
1929
|
-
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1930
|
-
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1931
|
-
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1932
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
1933
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
1934
|
-
}>;
|
|
1881
|
+
executionBlockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1935
1882
|
executionBranch: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
1936
1883
|
}>;
|
|
1937
1884
|
finalizedHeader: import("@chainsafe/ssz").ContainerType<{
|
|
@@ -1942,25 +1889,7 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
|
|
|
1942
1889
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1943
1890
|
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1944
1891
|
}>;
|
|
1945
|
-
|
|
1946
|
-
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1947
|
-
feeRecipient: import("@lodestar/types").ExecutionAddressType;
|
|
1948
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1949
|
-
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1950
|
-
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
1951
|
-
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
1952
|
-
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
1953
|
-
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
1954
|
-
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
1955
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
1956
|
-
extraData: import("@chainsafe/ssz").ByteListType;
|
|
1957
|
-
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
1958
|
-
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1959
|
-
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1960
|
-
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1961
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
1962
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
1963
|
-
}>;
|
|
1892
|
+
executionBlockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
1964
1893
|
executionBranch: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
1965
1894
|
}>;
|
|
1966
1895
|
finalityBranch: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
@@ -2284,25 +2213,7 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
|
|
|
2284
2213
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
2285
2214
|
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
2286
2215
|
}>;
|
|
2287
|
-
|
|
2288
|
-
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
2289
|
-
feeRecipient: import("@lodestar/types").ExecutionAddressType;
|
|
2290
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
2291
|
-
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
2292
|
-
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
2293
|
-
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
2294
|
-
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
2295
|
-
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
2296
|
-
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
2297
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
2298
|
-
extraData: import("@chainsafe/ssz").ByteListType;
|
|
2299
|
-
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
2300
|
-
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
2301
|
-
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
2302
|
-
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
2303
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
2304
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
2305
|
-
}>;
|
|
2216
|
+
executionBlockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
2306
2217
|
executionBranch: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
2307
2218
|
}>;
|
|
2308
2219
|
finalizedHeader: import("@chainsafe/ssz").ContainerType<{
|
|
@@ -2313,25 +2224,7 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
|
|
|
2313
2224
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
2314
2225
|
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
2315
2226
|
}>;
|
|
2316
|
-
|
|
2317
|
-
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
2318
|
-
feeRecipient: import("@lodestar/types").ExecutionAddressType;
|
|
2319
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
2320
|
-
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
2321
|
-
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
2322
|
-
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
2323
|
-
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
2324
|
-
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
2325
|
-
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
2326
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
2327
|
-
extraData: import("@chainsafe/ssz").ByteListType;
|
|
2328
|
-
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
2329
|
-
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
2330
|
-
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
2331
|
-
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
2332
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
2333
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
2334
|
-
}>;
|
|
2227
|
+
executionBlockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
2335
2228
|
executionBranch: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
2336
2229
|
}>;
|
|
2337
2230
|
finalityBranch: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
@@ -2517,25 +2410,7 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
|
|
|
2517
2410
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
2518
2411
|
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
2519
2412
|
}>;
|
|
2520
|
-
|
|
2521
|
-
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
2522
|
-
feeRecipient: import("@lodestar/types").ExecutionAddressType;
|
|
2523
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
2524
|
-
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
2525
|
-
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
2526
|
-
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
2527
|
-
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
2528
|
-
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
2529
|
-
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
2530
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
2531
|
-
extraData: import("@chainsafe/ssz").ByteListType;
|
|
2532
|
-
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
2533
|
-
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
2534
|
-
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
2535
|
-
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
2536
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
2537
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
2538
|
-
}>;
|
|
2413
|
+
executionBlockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
2539
2414
|
executionBranch: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
2540
2415
|
}>;
|
|
2541
2416
|
syncAggregate: import("@chainsafe/ssz").ContainerType<{
|
|
@@ -2720,25 +2595,7 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
|
|
|
2720
2595
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
2721
2596
|
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
2722
2597
|
}>;
|
|
2723
|
-
|
|
2724
|
-
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
2725
|
-
feeRecipient: import("@lodestar/types").ExecutionAddressType;
|
|
2726
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
2727
|
-
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
2728
|
-
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
2729
|
-
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
2730
|
-
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
2731
|
-
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
2732
|
-
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
2733
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
2734
|
-
extraData: import("@chainsafe/ssz").ByteListType;
|
|
2735
|
-
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
2736
|
-
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
2737
|
-
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
2738
|
-
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
2739
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
2740
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
2741
|
-
}>;
|
|
2598
|
+
executionBlockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
2742
2599
|
executionBranch: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
2743
2600
|
}>;
|
|
2744
2601
|
syncAggregate: import("@chainsafe/ssz").ContainerType<{
|
|
@@ -2923,25 +2780,7 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
|
|
|
2923
2780
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
2924
2781
|
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
2925
2782
|
}>;
|
|
2926
|
-
|
|
2927
|
-
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
2928
|
-
feeRecipient: import("@lodestar/types").ExecutionAddressType;
|
|
2929
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
2930
|
-
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
2931
|
-
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
2932
|
-
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
2933
|
-
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
2934
|
-
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
2935
|
-
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
2936
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
2937
|
-
extraData: import("@chainsafe/ssz").ByteListType;
|
|
2938
|
-
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
2939
|
-
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
2940
|
-
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
2941
|
-
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
2942
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
2943
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
2944
|
-
}>;
|
|
2783
|
+
executionBlockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
2945
2784
|
executionBranch: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
2946
2785
|
}>;
|
|
2947
2786
|
syncAggregate: import("@chainsafe/ssz").ContainerType<{
|
|
@@ -3588,8 +3427,8 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
|
|
|
3588
3427
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
3589
3428
|
}>;
|
|
3590
3429
|
}> | import("@chainsafe/ssz").ValueOfFields<{
|
|
3591
|
-
attestation1: import("@chainsafe/ssz").
|
|
3592
|
-
attestingIndices: import("@chainsafe/ssz").
|
|
3430
|
+
attestation1: import("@chainsafe/ssz").ProgressiveContainerType<{
|
|
3431
|
+
attestingIndices: import("@chainsafe/ssz").ProgressiveListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
3593
3432
|
data: import("@chainsafe/ssz").ContainerType<{
|
|
3594
3433
|
slot: import("@chainsafe/ssz").UintBigintType;
|
|
3595
3434
|
index: import("@chainsafe/ssz").UintBigintType;
|
|
@@ -3605,8 +3444,8 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
|
|
|
3605
3444
|
}>;
|
|
3606
3445
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
3607
3446
|
}>;
|
|
3608
|
-
attestation2: import("@chainsafe/ssz").
|
|
3609
|
-
attestingIndices: import("@chainsafe/ssz").
|
|
3447
|
+
attestation2: import("@chainsafe/ssz").ProgressiveContainerType<{
|
|
3448
|
+
attestingIndices: import("@chainsafe/ssz").ProgressiveListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
3610
3449
|
data: import("@chainsafe/ssz").ContainerType<{
|
|
3611
3450
|
slot: import("@chainsafe/ssz").UintBigintType;
|
|
3612
3451
|
index: import("@chainsafe/ssz").UintBigintType;
|
|
@@ -3868,8 +3707,8 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
|
|
|
3868
3707
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
3869
3708
|
}>;
|
|
3870
3709
|
}> | import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
|
|
3871
|
-
attestation1: import("@chainsafe/ssz").
|
|
3872
|
-
attestingIndices: import("@chainsafe/ssz").
|
|
3710
|
+
attestation1: import("@chainsafe/ssz").ProgressiveContainerType<{
|
|
3711
|
+
attestingIndices: import("@chainsafe/ssz").ProgressiveListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
3873
3712
|
data: import("@chainsafe/ssz").ContainerType<{
|
|
3874
3713
|
slot: import("@chainsafe/ssz").UintBigintType;
|
|
3875
3714
|
index: import("@chainsafe/ssz").UintBigintType;
|
|
@@ -3885,8 +3724,8 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
|
|
|
3885
3724
|
}>;
|
|
3886
3725
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
3887
3726
|
}>;
|
|
3888
|
-
attestation2: import("@chainsafe/ssz").
|
|
3889
|
-
attestingIndices: import("@chainsafe/ssz").
|
|
3727
|
+
attestation2: import("@chainsafe/ssz").ProgressiveContainerType<{
|
|
3728
|
+
attestingIndices: import("@chainsafe/ssz").ProgressiveListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
3890
3729
|
data: import("@chainsafe/ssz").ContainerType<{
|
|
3891
3730
|
slot: import("@chainsafe/ssz").UintBigintType;
|
|
3892
3731
|
index: import("@chainsafe/ssz").UintBigintType;
|
|
@@ -4148,8 +3987,8 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
|
|
|
4148
3987
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
4149
3988
|
}>;
|
|
4150
3989
|
}> | import("@chainsafe/ssz/lib/viewDU/container.js").ContainerTreeViewDUType<{
|
|
4151
|
-
attestation1: import("@chainsafe/ssz").
|
|
4152
|
-
attestingIndices: import("@chainsafe/ssz").
|
|
3990
|
+
attestation1: import("@chainsafe/ssz").ProgressiveContainerType<{
|
|
3991
|
+
attestingIndices: import("@chainsafe/ssz").ProgressiveListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
4153
3992
|
data: import("@chainsafe/ssz").ContainerType<{
|
|
4154
3993
|
slot: import("@chainsafe/ssz").UintBigintType;
|
|
4155
3994
|
index: import("@chainsafe/ssz").UintBigintType;
|
|
@@ -4165,8 +4004,8 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
|
|
|
4165
4004
|
}>;
|
|
4166
4005
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
4167
4006
|
}>;
|
|
4168
|
-
attestation2: import("@chainsafe/ssz").
|
|
4169
|
-
attestingIndices: import("@chainsafe/ssz").
|
|
4007
|
+
attestation2: import("@chainsafe/ssz").ProgressiveContainerType<{
|
|
4008
|
+
attestingIndices: import("@chainsafe/ssz").ProgressiveListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
4170
4009
|
data: import("@chainsafe/ssz").ContainerType<{
|
|
4171
4010
|
slot: import("@chainsafe/ssz").UintBigintType;
|
|
4172
4011
|
index: import("@chainsafe/ssz").UintBigintType;
|
|
@@ -4348,8 +4187,8 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
|
|
|
4348
4187
|
}> | import("@chainsafe/ssz").ValueOfFields<{
|
|
4349
4188
|
message: import("@chainsafe/ssz").ContainerType<{
|
|
4350
4189
|
aggregatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
4351
|
-
aggregate: import("@chainsafe/ssz").
|
|
4352
|
-
aggregationBits: import("@chainsafe/ssz").
|
|
4190
|
+
aggregate: import("@chainsafe/ssz").ProgressiveContainerType<{
|
|
4191
|
+
aggregationBits: import("@chainsafe/ssz").ProgressiveBitListType;
|
|
4353
4192
|
data: import("@chainsafe/ssz").ContainerType<{
|
|
4354
4193
|
slot: import("@chainsafe/ssz").UintNumberType;
|
|
4355
4194
|
index: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -4535,8 +4374,8 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
|
|
|
4535
4374
|
}> | import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
|
|
4536
4375
|
message: import("@chainsafe/ssz").ContainerType<{
|
|
4537
4376
|
aggregatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
4538
|
-
aggregate: import("@chainsafe/ssz").
|
|
4539
|
-
aggregationBits: import("@chainsafe/ssz").
|
|
4377
|
+
aggregate: import("@chainsafe/ssz").ProgressiveContainerType<{
|
|
4378
|
+
aggregationBits: import("@chainsafe/ssz").ProgressiveBitListType;
|
|
4540
4379
|
data: import("@chainsafe/ssz").ContainerType<{
|
|
4541
4380
|
slot: import("@chainsafe/ssz").UintNumberType;
|
|
4542
4381
|
index: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -4722,8 +4561,8 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
|
|
|
4722
4561
|
}> | import("@chainsafe/ssz/lib/viewDU/container.js").ContainerTreeViewDUType<{
|
|
4723
4562
|
message: import("@chainsafe/ssz").ContainerType<{
|
|
4724
4563
|
aggregatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
4725
|
-
aggregate: import("@chainsafe/ssz").
|
|
4726
|
-
aggregationBits: import("@chainsafe/ssz").
|
|
4564
|
+
aggregate: import("@chainsafe/ssz").ProgressiveContainerType<{
|
|
4565
|
+
aggregationBits: import("@chainsafe/ssz").ProgressiveBitListType;
|
|
4727
4566
|
data: import("@chainsafe/ssz").ContainerType<{
|
|
4728
4567
|
slot: import("@chainsafe/ssz").UintNumberType;
|
|
4729
4568
|
index: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -4744,6 +4583,10 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
|
|
|
4744
4583
|
}>;
|
|
4745
4584
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
4746
4585
|
}>>;
|
|
4586
|
+
/**
|
|
4587
|
+
* Return the maximum uncompressed SSZ byte length accepted for a gossip object.
|
|
4588
|
+
*/
|
|
4589
|
+
export declare function getGossipSSZMaxSize(topic: GossipTopic, maxPayloadSize: number, sszType?: CompositeTypeAny): number;
|
|
4747
4590
|
/**
|
|
4748
4591
|
* Deserialize a gossip serialized data into an ssz object.
|
|
4749
4592
|
*/
|