@lodestar/types 1.35.0-dev.47470aab65 → 1.35.0-dev.549f58dd39
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/gloas/sszTypes.d.ts +231 -532
- package/lib/gloas/sszTypes.d.ts.map +1 -1
- package/lib/gloas/sszTypes.js +3 -162
- package/lib/gloas/sszTypes.js.map +1 -1
- package/lib/gloas/types.d.ts +0 -13
- package/lib/gloas/types.d.ts.map +1 -1
- package/lib/sszTypes.d.ts +1109 -1327
- package/lib/sszTypes.d.ts.map +1 -1
- package/lib/types.d.ts +4 -3
- package/lib/types.d.ts.map +1 -1
- package/lib/types.js.map +1 -1
- package/package.json +3 -3
- package/src/gloas/sszTypes.ts +3 -232
- package/src/gloas/types.ts +0 -14
- package/src/types.ts +5 -4
package/lib/sszTypes.d.ts
CHANGED
|
@@ -12962,93 +12962,70 @@ declare const typesByFork: {
|
|
|
12962
12962
|
}>;
|
|
12963
12963
|
};
|
|
12964
12964
|
gloas: {
|
|
12965
|
-
|
|
12966
|
-
|
|
12967
|
-
|
|
12968
|
-
|
|
12969
|
-
withdrawableEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
12970
|
-
}>;
|
|
12971
|
-
BuilderPendingPayment: ContainerType<{
|
|
12972
|
-
weight: import("@chainsafe/ssz").UintBigintType;
|
|
12973
|
-
withdrawal: ContainerType<{
|
|
12974
|
-
feeRecipient: import("./index.ts").ExecutionAddressType;
|
|
12975
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
12976
|
-
builderIndex: import("@chainsafe/ssz").UintNumberType;
|
|
12977
|
-
withdrawableEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
12978
|
-
}>;
|
|
12979
|
-
}>;
|
|
12980
|
-
PayloadAttestationData: ContainerType<{
|
|
12981
|
-
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12965
|
+
BeaconState: ContainerType<{
|
|
12966
|
+
proposerLookahead: import("@chainsafe/ssz").VectorBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
12967
|
+
genesisTime: import("@chainsafe/ssz").UintNumberType;
|
|
12968
|
+
genesisValidatorsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12982
12969
|
slot: import("@chainsafe/ssz").UintNumberType;
|
|
12983
|
-
|
|
12984
|
-
|
|
12985
|
-
|
|
12986
|
-
|
|
12987
|
-
aggregationBits: import("@chainsafe/ssz").BitVectorType;
|
|
12988
|
-
data: ContainerType<{
|
|
12989
|
-
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12990
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
12991
|
-
payloadPresent: import("@chainsafe/ssz").BooleanType;
|
|
12992
|
-
blobDataAvailable: import("@chainsafe/ssz").BooleanType;
|
|
12970
|
+
fork: ContainerType<{
|
|
12971
|
+
previousVersion: import("@chainsafe/ssz").ByteVectorType;
|
|
12972
|
+
currentVersion: import("@chainsafe/ssz").ByteVectorType;
|
|
12973
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
12993
12974
|
}>;
|
|
12994
|
-
|
|
12995
|
-
}>;
|
|
12996
|
-
PayloadAttestationMessage: ContainerType<{
|
|
12997
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
12998
|
-
data: ContainerType<{
|
|
12999
|
-
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12975
|
+
latestBlockHeader: ContainerType<{
|
|
13000
12976
|
slot: import("@chainsafe/ssz").UintNumberType;
|
|
13001
|
-
|
|
13002
|
-
|
|
12977
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
12978
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12979
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12980
|
+
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13003
12981
|
}>;
|
|
13004
|
-
|
|
13005
|
-
|
|
13006
|
-
|
|
13007
|
-
|
|
13008
|
-
|
|
13009
|
-
|
|
13010
|
-
|
|
13011
|
-
payloadPresent: import("@chainsafe/ssz").BooleanType;
|
|
13012
|
-
blobDataAvailable: import("@chainsafe/ssz").BooleanType;
|
|
12982
|
+
blockRoots: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
12983
|
+
stateRoots: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
12984
|
+
historicalRoots: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
12985
|
+
eth1Data: ContainerType<{
|
|
12986
|
+
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12987
|
+
depositCount: import("@chainsafe/ssz").UintNumberType;
|
|
12988
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
13013
12989
|
}>;
|
|
13014
|
-
|
|
13015
|
-
|
|
13016
|
-
|
|
13017
|
-
parentBlockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
13018
|
-
parentBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13019
|
-
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
13020
|
-
feeRecipient: import("./index.ts").ExecutionAddressType;
|
|
13021
|
-
gasLimit: import("@chainsafe/ssz").UintBigintType;
|
|
13022
|
-
builderIndex: import("@chainsafe/ssz").UintNumberType;
|
|
13023
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
13024
|
-
value: import("@chainsafe/ssz").UintBigintType;
|
|
13025
|
-
blobKzgCommitmentsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13026
|
-
}>;
|
|
13027
|
-
SignedExecutionPayloadBid: ContainerType<{
|
|
13028
|
-
message: ContainerType<{
|
|
13029
|
-
parentBlockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
13030
|
-
parentBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12990
|
+
eth1DataVotes: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
12991
|
+
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12992
|
+
depositCount: import("@chainsafe/ssz").UintNumberType;
|
|
13031
12993
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
13032
|
-
|
|
13033
|
-
|
|
13034
|
-
|
|
13035
|
-
|
|
13036
|
-
|
|
13037
|
-
|
|
12994
|
+
}>>;
|
|
12995
|
+
eth1DepositIndex: import("@chainsafe/ssz").UintNumberType;
|
|
12996
|
+
validators: import("@chainsafe/ssz").ListCompositeType<import("./phase0/validator.ts").ValidatorNodeStructType>;
|
|
12997
|
+
balances: import("@chainsafe/ssz").ListUintNum64Type;
|
|
12998
|
+
randaoMixes: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
12999
|
+
slashings: import("@chainsafe/ssz").VectorBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
13000
|
+
previousEpochParticipation: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
13001
|
+
currentEpochParticipation: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
13002
|
+
justificationBits: import("@chainsafe/ssz").BitVectorType;
|
|
13003
|
+
previousJustifiedCheckpoint: ContainerType<{
|
|
13004
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
13005
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
13038
13006
|
}>;
|
|
13039
|
-
|
|
13040
|
-
|
|
13041
|
-
|
|
13042
|
-
|
|
13007
|
+
currentJustifiedCheckpoint: ContainerType<{
|
|
13008
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
13009
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
13010
|
+
}>;
|
|
13011
|
+
finalizedCheckpoint: ContainerType<{
|
|
13012
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
13013
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
13014
|
+
}>;
|
|
13015
|
+
inactivityScores: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
13016
|
+
currentSyncCommittee: ContainerType<{
|
|
13017
|
+
pubkeys: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
13018
|
+
aggregatePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
13019
|
+
}>;
|
|
13020
|
+
nextSyncCommittee: ContainerType<{
|
|
13021
|
+
pubkeys: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
13022
|
+
aggregatePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
13023
|
+
}>;
|
|
13024
|
+
latestExecutionPayloadHeader: ContainerType<{
|
|
13043
13025
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
13044
13026
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
13045
|
-
|
|
13046
|
-
|
|
13047
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
13048
|
-
address: import("./index.ts").ExecutionAddressType;
|
|
13049
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
13050
|
-
}>>;
|
|
13051
|
-
transactions: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
13027
|
+
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13028
|
+
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13052
13029
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
13053
13030
|
feeRecipient: import("./index.ts").ExecutionAddressType;
|
|
13054
13031
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -13063,34 +13040,141 @@ declare const typesByFork: {
|
|
|
13063
13040
|
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
13064
13041
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
13065
13042
|
}>;
|
|
13066
|
-
|
|
13067
|
-
|
|
13068
|
-
|
|
13069
|
-
|
|
13070
|
-
|
|
13043
|
+
nextWithdrawalIndex: import("@chainsafe/ssz").UintNumberType;
|
|
13044
|
+
nextWithdrawalValidatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
13045
|
+
historicalSummaries: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
13046
|
+
blockSummaryRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13047
|
+
stateSummaryRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13048
|
+
}>>;
|
|
13049
|
+
depositRequestsStartIndex: import("@chainsafe/ssz").UintBigintType;
|
|
13050
|
+
depositBalanceToConsume: import("@chainsafe/ssz").UintBigintType;
|
|
13051
|
+
exitBalanceToConsume: import("@chainsafe/ssz").UintBigintType;
|
|
13052
|
+
earliestExitEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
13053
|
+
consolidationBalanceToConsume: import("@chainsafe/ssz").UintBigintType;
|
|
13054
|
+
earliestConsolidationEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
13055
|
+
pendingDeposits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
13056
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
13057
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
13058
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
13059
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
13060
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
13061
|
+
}>>;
|
|
13062
|
+
pendingPartialWithdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
13063
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
13064
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
13065
|
+
withdrawableEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
13066
|
+
}>>;
|
|
13067
|
+
pendingConsolidations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
13068
|
+
sourceIndex: import("@chainsafe/ssz").UintNumberType;
|
|
13069
|
+
targetIndex: import("@chainsafe/ssz").UintNumberType;
|
|
13070
|
+
}>>;
|
|
13071
|
+
}>;
|
|
13072
|
+
BeaconBlock: ContainerType<{
|
|
13073
|
+
body: ContainerType<{
|
|
13074
|
+
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
13075
|
+
eth1Data: ContainerType<{
|
|
13076
|
+
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13077
|
+
depositCount: import("@chainsafe/ssz").UintNumberType;
|
|
13078
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
13079
|
+
}>;
|
|
13080
|
+
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
13081
|
+
proposerSlashings: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
13082
|
+
signedHeader1: ContainerType<{
|
|
13083
|
+
message: ContainerType<{
|
|
13084
|
+
slot: import("@chainsafe/ssz").UintBigintType;
|
|
13085
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
13086
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13087
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13088
|
+
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13089
|
+
}>;
|
|
13090
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
13091
|
+
}>;
|
|
13092
|
+
signedHeader2: ContainerType<{
|
|
13093
|
+
message: ContainerType<{
|
|
13094
|
+
slot: import("@chainsafe/ssz").UintBigintType;
|
|
13095
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
13096
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13097
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13098
|
+
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13099
|
+
}>;
|
|
13100
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
13101
|
+
}>;
|
|
13102
|
+
}>>;
|
|
13103
|
+
attesterSlashings: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
13104
|
+
attestation1: ContainerType<{
|
|
13105
|
+
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
13106
|
+
data: ContainerType<{
|
|
13107
|
+
slot: import("@chainsafe/ssz").UintBigintType;
|
|
13108
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
13109
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13110
|
+
source: ContainerType<{
|
|
13111
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
13112
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
13113
|
+
}>;
|
|
13114
|
+
target: ContainerType<{
|
|
13115
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
13116
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
13117
|
+
}>;
|
|
13118
|
+
}>;
|
|
13119
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
13120
|
+
}>;
|
|
13121
|
+
attestation2: ContainerType<{
|
|
13122
|
+
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
13123
|
+
data: ContainerType<{
|
|
13124
|
+
slot: import("@chainsafe/ssz").UintBigintType;
|
|
13125
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
13126
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13127
|
+
source: ContainerType<{
|
|
13128
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
13129
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
13130
|
+
}>;
|
|
13131
|
+
target: ContainerType<{
|
|
13132
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
13133
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
13134
|
+
}>;
|
|
13135
|
+
}>;
|
|
13136
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
13137
|
+
}>;
|
|
13138
|
+
}>>;
|
|
13139
|
+
attestations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
13140
|
+
aggregationBits: import("@chainsafe/ssz").BitListType;
|
|
13141
|
+
data: ContainerType<{
|
|
13142
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
13143
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
13144
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13145
|
+
source: ContainerType<{
|
|
13146
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
13147
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
13148
|
+
}>;
|
|
13149
|
+
target: ContainerType<{
|
|
13150
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
13151
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
13152
|
+
}>;
|
|
13153
|
+
}>;
|
|
13071
13154
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
13072
|
-
|
|
13155
|
+
committeeBits: import("@chainsafe/ssz").BitVectorType;
|
|
13073
13156
|
}>>;
|
|
13074
|
-
|
|
13075
|
-
|
|
13076
|
-
|
|
13077
|
-
|
|
13157
|
+
deposits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
13158
|
+
proof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
13159
|
+
data: ContainerType<{
|
|
13160
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
13161
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
13162
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
13163
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
13164
|
+
}>;
|
|
13078
13165
|
}>>;
|
|
13079
|
-
|
|
13080
|
-
|
|
13081
|
-
|
|
13082
|
-
|
|
13166
|
+
voluntaryExits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
13167
|
+
message: ContainerType<{
|
|
13168
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
13169
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
13170
|
+
}>;
|
|
13171
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
13083
13172
|
}>>;
|
|
13084
|
-
|
|
13085
|
-
|
|
13086
|
-
|
|
13087
|
-
|
|
13088
|
-
|
|
13089
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13090
|
-
}>;
|
|
13091
|
-
SignedExecutionPayloadEnvelope: ContainerType<{
|
|
13092
|
-
message: ContainerType<{
|
|
13093
|
-
payload: ContainerType<{
|
|
13173
|
+
syncAggregate: ContainerType<{
|
|
13174
|
+
syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
|
|
13175
|
+
syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
|
|
13176
|
+
}>;
|
|
13177
|
+
executionPayload: ContainerType<{
|
|
13094
13178
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
13095
13179
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
13096
13180
|
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
@@ -13114,7 +13198,16 @@ declare const typesByFork: {
|
|
|
13114
13198
|
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
13115
13199
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
13116
13200
|
}>;
|
|
13117
|
-
|
|
13201
|
+
blsToExecutionChanges: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
13202
|
+
message: ContainerType<{
|
|
13203
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
13204
|
+
fromBlsPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
13205
|
+
toExecutionAddress: import("./index.ts").ExecutionAddressType;
|
|
13206
|
+
}>;
|
|
13207
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
13208
|
+
}>>;
|
|
13209
|
+
blobKzgCommitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
13210
|
+
executionRequests: ContainerType<{
|
|
13118
13211
|
deposits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
13119
13212
|
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
13120
13213
|
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -13133,296 +13226,257 @@ declare const typesByFork: {
|
|
|
13133
13226
|
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
13134
13227
|
}>>;
|
|
13135
13228
|
}>;
|
|
13136
|
-
builderIndex: import("@chainsafe/ssz").UintNumberType;
|
|
13137
|
-
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13138
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
13139
|
-
blobKzgCommitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
13140
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13141
13229
|
}>;
|
|
13142
|
-
|
|
13230
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
13231
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
13232
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13233
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13143
13234
|
}>;
|
|
13144
|
-
|
|
13145
|
-
|
|
13146
|
-
|
|
13147
|
-
|
|
13148
|
-
|
|
13149
|
-
|
|
13150
|
-
|
|
13151
|
-
|
|
13152
|
-
proposerSlashings: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
13153
|
-
signedHeader1: ContainerType<{
|
|
13154
|
-
message: ContainerType<{
|
|
13155
|
-
slot: import("@chainsafe/ssz").UintBigintType;
|
|
13156
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
13157
|
-
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13158
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13159
|
-
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13160
|
-
}>;
|
|
13161
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
13162
|
-
}>;
|
|
13163
|
-
signedHeader2: ContainerType<{
|
|
13164
|
-
message: ContainerType<{
|
|
13165
|
-
slot: import("@chainsafe/ssz").UintBigintType;
|
|
13166
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
13167
|
-
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13168
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13169
|
-
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13170
|
-
}>;
|
|
13171
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
13172
|
-
}>;
|
|
13173
|
-
}>>;
|
|
13174
|
-
attesterSlashings: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
13175
|
-
attestation1: ContainerType<{
|
|
13176
|
-
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
13177
|
-
data: ContainerType<{
|
|
13178
|
-
slot: import("@chainsafe/ssz").UintBigintType;
|
|
13179
|
-
index: import("@chainsafe/ssz").UintBigintType;
|
|
13180
|
-
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13181
|
-
source: ContainerType<{
|
|
13182
|
-
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
13183
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
13184
|
-
}>;
|
|
13185
|
-
target: ContainerType<{
|
|
13186
|
-
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
13187
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
13188
|
-
}>;
|
|
13235
|
+
SignedBeaconBlock: ContainerType<{
|
|
13236
|
+
message: ContainerType<{
|
|
13237
|
+
body: ContainerType<{
|
|
13238
|
+
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
13239
|
+
eth1Data: ContainerType<{
|
|
13240
|
+
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13241
|
+
depositCount: import("@chainsafe/ssz").UintNumberType;
|
|
13242
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
13189
13243
|
}>;
|
|
13190
|
-
|
|
13191
|
-
|
|
13192
|
-
|
|
13193
|
-
|
|
13194
|
-
|
|
13195
|
-
|
|
13196
|
-
|
|
13197
|
-
|
|
13198
|
-
|
|
13199
|
-
|
|
13200
|
-
|
|
13244
|
+
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
13245
|
+
proposerSlashings: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
13246
|
+
signedHeader1: ContainerType<{
|
|
13247
|
+
message: ContainerType<{
|
|
13248
|
+
slot: import("@chainsafe/ssz").UintBigintType;
|
|
13249
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
13250
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13251
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13252
|
+
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13253
|
+
}>;
|
|
13254
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
13201
13255
|
}>;
|
|
13202
|
-
|
|
13203
|
-
|
|
13204
|
-
|
|
13256
|
+
signedHeader2: ContainerType<{
|
|
13257
|
+
message: ContainerType<{
|
|
13258
|
+
slot: import("@chainsafe/ssz").UintBigintType;
|
|
13259
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
13260
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13261
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13262
|
+
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13263
|
+
}>;
|
|
13264
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
13205
13265
|
}>;
|
|
13206
|
-
}
|
|
13207
|
-
|
|
13208
|
-
|
|
13209
|
-
|
|
13210
|
-
|
|
13211
|
-
|
|
13212
|
-
|
|
13213
|
-
|
|
13214
|
-
|
|
13215
|
-
|
|
13216
|
-
|
|
13217
|
-
|
|
13218
|
-
|
|
13219
|
-
|
|
13220
|
-
|
|
13221
|
-
|
|
13222
|
-
|
|
13223
|
-
|
|
13224
|
-
}>;
|
|
13225
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
13226
|
-
committeeBits: import("@chainsafe/ssz").BitVectorType;
|
|
13227
|
-
}>>;
|
|
13228
|
-
deposits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
13229
|
-
proof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
13230
|
-
data: ContainerType<{
|
|
13231
|
-
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
13232
|
-
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
13233
|
-
amount: import("@chainsafe/ssz").UintNumberType;
|
|
13234
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
13235
|
-
}>;
|
|
13236
|
-
}>>;
|
|
13237
|
-
voluntaryExits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
13238
|
-
message: ContainerType<{
|
|
13239
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
13240
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
13241
|
-
}>;
|
|
13242
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
13243
|
-
}>>;
|
|
13244
|
-
syncAggregate: ContainerType<{
|
|
13245
|
-
syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
|
|
13246
|
-
syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
|
|
13247
|
-
}>;
|
|
13248
|
-
blsToExecutionChanges: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
13249
|
-
message: ContainerType<{
|
|
13250
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
13251
|
-
fromBlsPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
13252
|
-
toExecutionAddress: import("./index.ts").ExecutionAddressType;
|
|
13253
|
-
}>;
|
|
13254
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
13255
|
-
}>>;
|
|
13256
|
-
signedExecutionPayloadBid: ContainerType<{
|
|
13257
|
-
message: ContainerType<{
|
|
13258
|
-
parentBlockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
13259
|
-
parentBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13260
|
-
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
13261
|
-
feeRecipient: import("./index.ts").ExecutionAddressType;
|
|
13262
|
-
gasLimit: import("@chainsafe/ssz").UintBigintType;
|
|
13263
|
-
builderIndex: import("@chainsafe/ssz").UintNumberType;
|
|
13264
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
13265
|
-
value: import("@chainsafe/ssz").UintBigintType;
|
|
13266
|
-
blobKzgCommitmentsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13267
|
-
}>;
|
|
13268
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
13269
|
-
}>;
|
|
13270
|
-
payloadAttestations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
13271
|
-
aggregationBits: import("@chainsafe/ssz").BitVectorType;
|
|
13272
|
-
data: ContainerType<{
|
|
13273
|
-
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13274
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
13275
|
-
payloadPresent: import("@chainsafe/ssz").BooleanType;
|
|
13276
|
-
blobDataAvailable: import("@chainsafe/ssz").BooleanType;
|
|
13277
|
-
}>;
|
|
13278
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
13279
|
-
}>>;
|
|
13280
|
-
}>;
|
|
13281
|
-
BeaconBlock: ContainerType<{
|
|
13282
|
-
body: ContainerType<{
|
|
13283
|
-
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
13284
|
-
eth1Data: ContainerType<{
|
|
13285
|
-
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13286
|
-
depositCount: import("@chainsafe/ssz").UintNumberType;
|
|
13287
|
-
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
13288
|
-
}>;
|
|
13289
|
-
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
13290
|
-
proposerSlashings: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
13291
|
-
signedHeader1: ContainerType<{
|
|
13292
|
-
message: ContainerType<{
|
|
13293
|
-
slot: import("@chainsafe/ssz").UintBigintType;
|
|
13294
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
13295
|
-
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13296
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13297
|
-
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13266
|
+
}>>;
|
|
13267
|
+
attesterSlashings: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
13268
|
+
attestation1: ContainerType<{
|
|
13269
|
+
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
13270
|
+
data: ContainerType<{
|
|
13271
|
+
slot: import("@chainsafe/ssz").UintBigintType;
|
|
13272
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
13273
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13274
|
+
source: ContainerType<{
|
|
13275
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
13276
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
13277
|
+
}>;
|
|
13278
|
+
target: ContainerType<{
|
|
13279
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
13280
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
13281
|
+
}>;
|
|
13282
|
+
}>;
|
|
13283
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
13298
13284
|
}>;
|
|
13299
|
-
|
|
13300
|
-
|
|
13301
|
-
|
|
13302
|
-
|
|
13303
|
-
|
|
13304
|
-
|
|
13305
|
-
|
|
13306
|
-
|
|
13307
|
-
|
|
13285
|
+
attestation2: ContainerType<{
|
|
13286
|
+
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
13287
|
+
data: ContainerType<{
|
|
13288
|
+
slot: import("@chainsafe/ssz").UintBigintType;
|
|
13289
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
13290
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13291
|
+
source: ContainerType<{
|
|
13292
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
13293
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
13294
|
+
}>;
|
|
13295
|
+
target: ContainerType<{
|
|
13296
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
13297
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
13298
|
+
}>;
|
|
13299
|
+
}>;
|
|
13300
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
13308
13301
|
}>;
|
|
13309
|
-
|
|
13310
|
-
|
|
13311
|
-
|
|
13312
|
-
attesterSlashings: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
13313
|
-
attestation1: ContainerType<{
|
|
13314
|
-
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
13302
|
+
}>>;
|
|
13303
|
+
attestations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
13304
|
+
aggregationBits: import("@chainsafe/ssz").BitListType;
|
|
13315
13305
|
data: ContainerType<{
|
|
13316
|
-
slot: import("@chainsafe/ssz").
|
|
13317
|
-
index: import("@chainsafe/ssz").
|
|
13306
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
13307
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
13318
13308
|
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13319
13309
|
source: ContainerType<{
|
|
13320
|
-
epoch: import("@chainsafe/ssz").
|
|
13310
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
13321
13311
|
root: import("@chainsafe/ssz").ByteVectorType;
|
|
13322
13312
|
}>;
|
|
13323
13313
|
target: ContainerType<{
|
|
13324
|
-
epoch: import("@chainsafe/ssz").
|
|
13314
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
13325
13315
|
root: import("@chainsafe/ssz").ByteVectorType;
|
|
13326
13316
|
}>;
|
|
13327
13317
|
}>;
|
|
13328
13318
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
13329
|
-
|
|
13330
|
-
|
|
13331
|
-
|
|
13319
|
+
committeeBits: import("@chainsafe/ssz").BitVectorType;
|
|
13320
|
+
}>>;
|
|
13321
|
+
deposits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
13322
|
+
proof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
13332
13323
|
data: ContainerType<{
|
|
13333
|
-
|
|
13334
|
-
|
|
13335
|
-
|
|
13336
|
-
|
|
13337
|
-
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
13338
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
13339
|
-
}>;
|
|
13340
|
-
target: ContainerType<{
|
|
13341
|
-
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
13342
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
13343
|
-
}>;
|
|
13344
|
-
}>;
|
|
13345
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
13346
|
-
}>;
|
|
13347
|
-
}>>;
|
|
13348
|
-
attestations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
13349
|
-
aggregationBits: import("@chainsafe/ssz").BitListType;
|
|
13350
|
-
data: ContainerType<{
|
|
13351
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
13352
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
13353
|
-
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13354
|
-
source: ContainerType<{
|
|
13355
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
13356
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
13324
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
13325
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
13326
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
13327
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
13357
13328
|
}>;
|
|
13358
|
-
|
|
13329
|
+
}>>;
|
|
13330
|
+
voluntaryExits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
13331
|
+
message: ContainerType<{
|
|
13359
13332
|
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
13360
|
-
|
|
13333
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
13361
13334
|
}>;
|
|
13362
|
-
}>;
|
|
13363
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
13364
|
-
committeeBits: import("@chainsafe/ssz").BitVectorType;
|
|
13365
|
-
}>>;
|
|
13366
|
-
deposits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
13367
|
-
proof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
13368
|
-
data: ContainerType<{
|
|
13369
|
-
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
13370
|
-
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
13371
|
-
amount: import("@chainsafe/ssz").UintNumberType;
|
|
13372
13335
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
13336
|
+
}>>;
|
|
13337
|
+
syncAggregate: ContainerType<{
|
|
13338
|
+
syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
|
|
13339
|
+
syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
|
|
13373
13340
|
}>;
|
|
13374
|
-
|
|
13375
|
-
|
|
13376
|
-
|
|
13377
|
-
|
|
13378
|
-
|
|
13379
|
-
|
|
13380
|
-
|
|
13381
|
-
|
|
13382
|
-
|
|
13383
|
-
|
|
13384
|
-
|
|
13385
|
-
}>;
|
|
13386
|
-
blsToExecutionChanges: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
13387
|
-
message: ContainerType<{
|
|
13388
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
13389
|
-
fromBlsPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
13390
|
-
toExecutionAddress: import("./index.ts").ExecutionAddressType;
|
|
13391
|
-
}>;
|
|
13392
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
13393
|
-
}>>;
|
|
13394
|
-
signedExecutionPayloadBid: ContainerType<{
|
|
13395
|
-
message: ContainerType<{
|
|
13396
|
-
parentBlockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
13397
|
-
parentBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13398
|
-
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
13341
|
+
executionPayload: ContainerType<{
|
|
13342
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
13343
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
13344
|
+
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
13345
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
13346
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
13347
|
+
address: import("./index.ts").ExecutionAddressType;
|
|
13348
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
13349
|
+
}>>;
|
|
13350
|
+
transactions: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
13351
|
+
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
13399
13352
|
feeRecipient: import("./index.ts").ExecutionAddressType;
|
|
13400
|
-
|
|
13401
|
-
|
|
13402
|
-
|
|
13403
|
-
|
|
13404
|
-
|
|
13353
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13354
|
+
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13355
|
+
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
13356
|
+
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
13357
|
+
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
13358
|
+
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
13359
|
+
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
13360
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
13361
|
+
extraData: import("@chainsafe/ssz").ByteListType;
|
|
13362
|
+
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
13363
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
13405
13364
|
}>;
|
|
13406
|
-
|
|
13407
|
-
|
|
13408
|
-
|
|
13409
|
-
|
|
13410
|
-
|
|
13411
|
-
|
|
13412
|
-
|
|
13413
|
-
|
|
13414
|
-
|
|
13365
|
+
blsToExecutionChanges: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
13366
|
+
message: ContainerType<{
|
|
13367
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
13368
|
+
fromBlsPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
13369
|
+
toExecutionAddress: import("./index.ts").ExecutionAddressType;
|
|
13370
|
+
}>;
|
|
13371
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
13372
|
+
}>>;
|
|
13373
|
+
blobKzgCommitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
13374
|
+
executionRequests: ContainerType<{
|
|
13375
|
+
deposits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
13376
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
13377
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
13378
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
13379
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
13380
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
13381
|
+
}>>;
|
|
13382
|
+
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
13383
|
+
sourceAddress: import("./index.ts").ExecutionAddressType;
|
|
13384
|
+
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
13385
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
13386
|
+
}>>;
|
|
13387
|
+
consolidations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
13388
|
+
sourceAddress: import("./index.ts").ExecutionAddressType;
|
|
13389
|
+
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
13390
|
+
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
13391
|
+
}>>;
|
|
13415
13392
|
}>;
|
|
13416
|
-
|
|
13417
|
-
|
|
13393
|
+
}>;
|
|
13394
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
13395
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
13396
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13397
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13418
13398
|
}>;
|
|
13419
|
-
|
|
13420
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
13421
|
-
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13422
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13399
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
13423
13400
|
}>;
|
|
13424
|
-
|
|
13425
|
-
|
|
13401
|
+
KZGProof: import("@chainsafe/ssz").ByteVectorType;
|
|
13402
|
+
Blob: import("@chainsafe/ssz").ByteVectorType;
|
|
13403
|
+
Metadata: ContainerType<{
|
|
13404
|
+
custodyGroupCount: import("@chainsafe/ssz").UintNumberType;
|
|
13405
|
+
seqNumber: import("@chainsafe/ssz").UintBigintType;
|
|
13406
|
+
attnets: import("@chainsafe/ssz").BitVectorType;
|
|
13407
|
+
syncnets: import("@chainsafe/ssz").BitVectorType;
|
|
13408
|
+
}>;
|
|
13409
|
+
Status: ContainerType<{
|
|
13410
|
+
earliestAvailableSlot: import("@chainsafe/ssz").UintNumberType;
|
|
13411
|
+
forkDigest: import("@chainsafe/ssz").ByteVectorType;
|
|
13412
|
+
finalizedRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13413
|
+
finalizedEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
13414
|
+
headRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13415
|
+
headSlot: import("@chainsafe/ssz").UintNumberType;
|
|
13416
|
+
}>;
|
|
13417
|
+
Cell: import("@chainsafe/ssz").ByteVectorType;
|
|
13418
|
+
DataColumn: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
13419
|
+
DataColumns: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>>;
|
|
13420
|
+
ExtendedMatrix: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
13421
|
+
KzgCommitmentsInclusionProof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
13422
|
+
KZGProofs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
13423
|
+
ProposerLookahead: import("@chainsafe/ssz").VectorBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
13424
|
+
DataColumnSidecar: ContainerType<{
|
|
13425
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
13426
|
+
column: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
13427
|
+
kzgCommitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
13428
|
+
kzgProofs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
13429
|
+
signedBlockHeader: ContainerType<{
|
|
13430
|
+
message: ContainerType<{
|
|
13431
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
13432
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
13433
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13434
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13435
|
+
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13436
|
+
}>;
|
|
13437
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
13438
|
+
}>;
|
|
13439
|
+
kzgCommitmentsInclusionProof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
13440
|
+
}>;
|
|
13441
|
+
DataColumnSidecars: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
13442
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
13443
|
+
column: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
13444
|
+
kzgCommitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
13445
|
+
kzgProofs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
13446
|
+
signedBlockHeader: ContainerType<{
|
|
13447
|
+
message: ContainerType<{
|
|
13448
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
13449
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
13450
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13451
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13452
|
+
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13453
|
+
}>;
|
|
13454
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
13455
|
+
}>;
|
|
13456
|
+
kzgCommitmentsInclusionProof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
13457
|
+
}>>;
|
|
13458
|
+
MatrixEntry: ContainerType<{
|
|
13459
|
+
cell: import("@chainsafe/ssz").ByteVectorType;
|
|
13460
|
+
kzgProof: import("@chainsafe/ssz").ByteVectorType;
|
|
13461
|
+
columnIndex: import("@chainsafe/ssz").UintNumberType;
|
|
13462
|
+
rowIndex: import("@chainsafe/ssz").UintNumberType;
|
|
13463
|
+
}>;
|
|
13464
|
+
DataColumnsByRootIdentifier: ContainerType<{
|
|
13465
|
+
blockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13466
|
+
columns: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
13467
|
+
}>;
|
|
13468
|
+
DataColumnSidecarsByRangeRequest: ContainerType<{
|
|
13469
|
+
startSlot: import("@chainsafe/ssz").UintNumberType;
|
|
13470
|
+
count: import("@chainsafe/ssz").UintNumberType;
|
|
13471
|
+
columns: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
13472
|
+
}>;
|
|
13473
|
+
BlobsBundle: ContainerType<{
|
|
13474
|
+
commitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
13475
|
+
proofs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
13476
|
+
blobs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
13477
|
+
}>;
|
|
13478
|
+
BlockContents: ContainerType<{
|
|
13479
|
+
block: ContainerType<{
|
|
13426
13480
|
body: ContainerType<{
|
|
13427
13481
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
13428
13482
|
eth1Data: ContainerType<{
|
|
@@ -13526,350 +13580,30 @@ declare const typesByFork: {
|
|
|
13526
13580
|
syncAggregate: ContainerType<{
|
|
13527
13581
|
syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
|
|
13528
13582
|
syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
|
|
13529
|
-
}>;
|
|
13530
|
-
|
|
13531
|
-
|
|
13532
|
-
|
|
13533
|
-
|
|
13534
|
-
|
|
13535
|
-
|
|
13536
|
-
|
|
13537
|
-
|
|
13538
|
-
|
|
13539
|
-
|
|
13540
|
-
|
|
13541
|
-
|
|
13542
|
-
|
|
13543
|
-
|
|
13544
|
-
|
|
13545
|
-
|
|
13546
|
-
|
|
13547
|
-
|
|
13548
|
-
|
|
13549
|
-
|
|
13550
|
-
|
|
13551
|
-
|
|
13552
|
-
|
|
13553
|
-
aggregationBits: import("@chainsafe/ssz").BitVectorType;
|
|
13554
|
-
data: ContainerType<{
|
|
13555
|
-
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13556
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
13557
|
-
payloadPresent: import("@chainsafe/ssz").BooleanType;
|
|
13558
|
-
blobDataAvailable: import("@chainsafe/ssz").BooleanType;
|
|
13559
|
-
}>;
|
|
13560
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
13561
|
-
}>>;
|
|
13562
|
-
}>;
|
|
13563
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
13564
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
13565
|
-
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13566
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13567
|
-
}>;
|
|
13568
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
13569
|
-
}>;
|
|
13570
|
-
BeaconState: ContainerType<{
|
|
13571
|
-
genesisTime: import("@chainsafe/ssz").UintNumberType;
|
|
13572
|
-
genesisValidatorsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13573
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
13574
|
-
fork: ContainerType<{
|
|
13575
|
-
previousVersion: import("@chainsafe/ssz").ByteVectorType;
|
|
13576
|
-
currentVersion: import("@chainsafe/ssz").ByteVectorType;
|
|
13577
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
13578
|
-
}>;
|
|
13579
|
-
latestBlockHeader: ContainerType<{
|
|
13580
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
13581
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
13582
|
-
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13583
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13584
|
-
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13585
|
-
}>;
|
|
13586
|
-
blockRoots: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
13587
|
-
stateRoots: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
13588
|
-
historicalRoots: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
13589
|
-
eth1Data: ContainerType<{
|
|
13590
|
-
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13591
|
-
depositCount: import("@chainsafe/ssz").UintNumberType;
|
|
13592
|
-
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
13593
|
-
}>;
|
|
13594
|
-
eth1DataVotes: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
13595
|
-
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13596
|
-
depositCount: import("@chainsafe/ssz").UintNumberType;
|
|
13597
|
-
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
13598
|
-
}>>;
|
|
13599
|
-
eth1DepositIndex: import("@chainsafe/ssz").UintNumberType;
|
|
13600
|
-
validators: import("@chainsafe/ssz").ListCompositeType<import("./phase0/validator.ts").ValidatorNodeStructType>;
|
|
13601
|
-
balances: import("@chainsafe/ssz").ListUintNum64Type;
|
|
13602
|
-
randaoMixes: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
13603
|
-
slashings: import("@chainsafe/ssz").VectorBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
13604
|
-
previousEpochParticipation: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
13605
|
-
currentEpochParticipation: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
13606
|
-
justificationBits: import("@chainsafe/ssz").BitVectorType;
|
|
13607
|
-
previousJustifiedCheckpoint: ContainerType<{
|
|
13608
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
13609
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
13610
|
-
}>;
|
|
13611
|
-
currentJustifiedCheckpoint: ContainerType<{
|
|
13612
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
13613
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
13614
|
-
}>;
|
|
13615
|
-
finalizedCheckpoint: ContainerType<{
|
|
13616
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
13617
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
13618
|
-
}>;
|
|
13619
|
-
inactivityScores: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
13620
|
-
currentSyncCommittee: ContainerType<{
|
|
13621
|
-
pubkeys: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
13622
|
-
aggregatePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
13623
|
-
}>;
|
|
13624
|
-
nextSyncCommittee: ContainerType<{
|
|
13625
|
-
pubkeys: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
13626
|
-
aggregatePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
13627
|
-
}>;
|
|
13628
|
-
latestExecutionPayloadBid: ContainerType<{
|
|
13629
|
-
parentBlockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
13630
|
-
parentBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13631
|
-
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
13632
|
-
feeRecipient: import("./index.ts").ExecutionAddressType;
|
|
13633
|
-
gasLimit: import("@chainsafe/ssz").UintBigintType;
|
|
13634
|
-
builderIndex: import("@chainsafe/ssz").UintNumberType;
|
|
13635
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
13636
|
-
value: import("@chainsafe/ssz").UintBigintType;
|
|
13637
|
-
blobKzgCommitmentsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13638
|
-
}>;
|
|
13639
|
-
nextWithdrawalIndex: import("@chainsafe/ssz").UintNumberType;
|
|
13640
|
-
nextWithdrawalValidatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
13641
|
-
historicalSummaries: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
13642
|
-
blockSummaryRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13643
|
-
stateSummaryRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13644
|
-
}>>;
|
|
13645
|
-
depositRequestsStartIndex: import("@chainsafe/ssz").UintBigintType;
|
|
13646
|
-
depositBalanceToConsume: import("@chainsafe/ssz").UintBigintType;
|
|
13647
|
-
exitBalanceToConsume: import("@chainsafe/ssz").UintBigintType;
|
|
13648
|
-
earliestExitEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
13649
|
-
consolidationBalanceToConsume: import("@chainsafe/ssz").UintBigintType;
|
|
13650
|
-
earliestConsolidationEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
13651
|
-
pendingDeposits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
13652
|
-
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
13653
|
-
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
13654
|
-
amount: import("@chainsafe/ssz").UintNumberType;
|
|
13655
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
13656
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
13657
|
-
}>>;
|
|
13658
|
-
pendingPartialWithdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
13659
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
13660
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
13661
|
-
withdrawableEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
13662
|
-
}>>;
|
|
13663
|
-
pendingConsolidations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
13664
|
-
sourceIndex: import("@chainsafe/ssz").UintNumberType;
|
|
13665
|
-
targetIndex: import("@chainsafe/ssz").UintNumberType;
|
|
13666
|
-
}>>;
|
|
13667
|
-
proposerLookahead: import("@chainsafe/ssz").VectorBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
13668
|
-
executionPayloadAvailability: import("@chainsafe/ssz").BitVectorType;
|
|
13669
|
-
builderPendingPayments: import("@chainsafe/ssz").VectorCompositeType<ContainerType<{
|
|
13670
|
-
weight: import("@chainsafe/ssz").UintBigintType;
|
|
13671
|
-
withdrawal: ContainerType<{
|
|
13672
|
-
feeRecipient: import("./index.ts").ExecutionAddressType;
|
|
13673
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
13674
|
-
builderIndex: import("@chainsafe/ssz").UintNumberType;
|
|
13675
|
-
withdrawableEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
13676
|
-
}>;
|
|
13677
|
-
}>>;
|
|
13678
|
-
builderPendingWithdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
13679
|
-
feeRecipient: import("./index.ts").ExecutionAddressType;
|
|
13680
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
13681
|
-
builderIndex: import("@chainsafe/ssz").UintNumberType;
|
|
13682
|
-
withdrawableEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
13683
|
-
}>>;
|
|
13684
|
-
latestBlockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
13685
|
-
latestWithdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13686
|
-
}>;
|
|
13687
|
-
DataColumnSidecar: ContainerType<{
|
|
13688
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
13689
|
-
column: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
13690
|
-
kzgCommitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
13691
|
-
kzgProofs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
13692
|
-
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13693
|
-
}>;
|
|
13694
|
-
DataColumnSidecars: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
13695
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
13696
|
-
column: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
13697
|
-
kzgCommitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
13698
|
-
kzgProofs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
13699
|
-
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13700
|
-
}>>;
|
|
13701
|
-
KZGProof: import("@chainsafe/ssz").ByteVectorType;
|
|
13702
|
-
Blob: import("@chainsafe/ssz").ByteVectorType;
|
|
13703
|
-
Metadata: ContainerType<{
|
|
13704
|
-
custodyGroupCount: import("@chainsafe/ssz").UintNumberType;
|
|
13705
|
-
seqNumber: import("@chainsafe/ssz").UintBigintType;
|
|
13706
|
-
attnets: import("@chainsafe/ssz").BitVectorType;
|
|
13707
|
-
syncnets: import("@chainsafe/ssz").BitVectorType;
|
|
13708
|
-
}>;
|
|
13709
|
-
Status: ContainerType<{
|
|
13710
|
-
earliestAvailableSlot: import("@chainsafe/ssz").UintNumberType;
|
|
13711
|
-
forkDigest: import("@chainsafe/ssz").ByteVectorType;
|
|
13712
|
-
finalizedRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13713
|
-
finalizedEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
13714
|
-
headRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13715
|
-
headSlot: import("@chainsafe/ssz").UintNumberType;
|
|
13716
|
-
}>;
|
|
13717
|
-
Cell: import("@chainsafe/ssz").ByteVectorType;
|
|
13718
|
-
DataColumn: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
13719
|
-
DataColumns: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>>;
|
|
13720
|
-
ExtendedMatrix: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
13721
|
-
KzgCommitmentsInclusionProof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
13722
|
-
KZGProofs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
13723
|
-
ProposerLookahead: import("@chainsafe/ssz").VectorBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
13724
|
-
MatrixEntry: ContainerType<{
|
|
13725
|
-
cell: import("@chainsafe/ssz").ByteVectorType;
|
|
13726
|
-
kzgProof: import("@chainsafe/ssz").ByteVectorType;
|
|
13727
|
-
columnIndex: import("@chainsafe/ssz").UintNumberType;
|
|
13728
|
-
rowIndex: import("@chainsafe/ssz").UintNumberType;
|
|
13729
|
-
}>;
|
|
13730
|
-
DataColumnsByRootIdentifier: ContainerType<{
|
|
13731
|
-
blockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13732
|
-
columns: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
13733
|
-
}>;
|
|
13734
|
-
DataColumnSidecarsByRangeRequest: ContainerType<{
|
|
13735
|
-
startSlot: import("@chainsafe/ssz").UintNumberType;
|
|
13736
|
-
count: import("@chainsafe/ssz").UintNumberType;
|
|
13737
|
-
columns: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
13738
|
-
}>;
|
|
13739
|
-
BlobsBundle: ContainerType<{
|
|
13740
|
-
commitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
13741
|
-
proofs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
13742
|
-
blobs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
13743
|
-
}>;
|
|
13744
|
-
BlockContents: ContainerType<{
|
|
13745
|
-
block: ContainerType<{
|
|
13746
|
-
body: ContainerType<{
|
|
13747
|
-
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
13748
|
-
eth1Data: ContainerType<{
|
|
13749
|
-
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13750
|
-
depositCount: import("@chainsafe/ssz").UintNumberType;
|
|
13751
|
-
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
13752
|
-
}>;
|
|
13753
|
-
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
13754
|
-
proposerSlashings: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
13755
|
-
signedHeader1: ContainerType<{
|
|
13756
|
-
message: ContainerType<{
|
|
13757
|
-
slot: import("@chainsafe/ssz").UintBigintType;
|
|
13758
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
13759
|
-
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13760
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13761
|
-
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13762
|
-
}>;
|
|
13763
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
13764
|
-
}>;
|
|
13765
|
-
signedHeader2: ContainerType<{
|
|
13766
|
-
message: ContainerType<{
|
|
13767
|
-
slot: import("@chainsafe/ssz").UintBigintType;
|
|
13768
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
13769
|
-
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13770
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13771
|
-
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13772
|
-
}>;
|
|
13773
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
13774
|
-
}>;
|
|
13775
|
-
}>>;
|
|
13776
|
-
attesterSlashings: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
13777
|
-
attestation1: ContainerType<{
|
|
13778
|
-
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
13779
|
-
data: ContainerType<{
|
|
13780
|
-
slot: import("@chainsafe/ssz").UintBigintType;
|
|
13781
|
-
index: import("@chainsafe/ssz").UintBigintType;
|
|
13782
|
-
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13783
|
-
source: ContainerType<{
|
|
13784
|
-
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
13785
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
13786
|
-
}>;
|
|
13787
|
-
target: ContainerType<{
|
|
13788
|
-
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
13789
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
13790
|
-
}>;
|
|
13791
|
-
}>;
|
|
13792
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
13793
|
-
}>;
|
|
13794
|
-
attestation2: ContainerType<{
|
|
13795
|
-
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
13796
|
-
data: ContainerType<{
|
|
13797
|
-
slot: import("@chainsafe/ssz").UintBigintType;
|
|
13798
|
-
index: import("@chainsafe/ssz").UintBigintType;
|
|
13799
|
-
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13800
|
-
source: ContainerType<{
|
|
13801
|
-
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
13802
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
13803
|
-
}>;
|
|
13804
|
-
target: ContainerType<{
|
|
13805
|
-
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
13806
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
13807
|
-
}>;
|
|
13808
|
-
}>;
|
|
13809
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
13810
|
-
}>;
|
|
13811
|
-
}>>;
|
|
13812
|
-
attestations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
13813
|
-
aggregationBits: import("@chainsafe/ssz").BitListType;
|
|
13814
|
-
data: ContainerType<{
|
|
13815
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
13816
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
13817
|
-
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13818
|
-
source: ContainerType<{
|
|
13819
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
13820
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
13821
|
-
}>;
|
|
13822
|
-
target: ContainerType<{
|
|
13823
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
13824
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
13825
|
-
}>;
|
|
13826
|
-
}>;
|
|
13827
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
13828
|
-
committeeBits: import("@chainsafe/ssz").BitVectorType;
|
|
13829
|
-
}>>;
|
|
13830
|
-
deposits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
13831
|
-
proof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
13832
|
-
data: ContainerType<{
|
|
13833
|
-
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
13834
|
-
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
13835
|
-
amount: import("@chainsafe/ssz").UintNumberType;
|
|
13836
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
13837
|
-
}>;
|
|
13838
|
-
}>>;
|
|
13839
|
-
voluntaryExits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
13840
|
-
message: ContainerType<{
|
|
13841
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
13842
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
13843
|
-
}>;
|
|
13844
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
13845
|
-
}>>;
|
|
13846
|
-
syncAggregate: ContainerType<{
|
|
13847
|
-
syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
|
|
13848
|
-
syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
|
|
13849
|
-
}>;
|
|
13850
|
-
executionPayload: ContainerType<{
|
|
13851
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
13852
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
13853
|
-
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
13854
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
13855
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
13856
|
-
address: import("./index.ts").ExecutionAddressType;
|
|
13857
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
13858
|
-
}>>;
|
|
13859
|
-
transactions: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
13860
|
-
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
13861
|
-
feeRecipient: import("./index.ts").ExecutionAddressType;
|
|
13862
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13863
|
-
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13864
|
-
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
13865
|
-
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
13866
|
-
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
13867
|
-
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
13868
|
-
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
13869
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
13870
|
-
extraData: import("@chainsafe/ssz").ByteListType;
|
|
13871
|
-
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
13872
|
-
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
13583
|
+
}>;
|
|
13584
|
+
executionPayload: ContainerType<{
|
|
13585
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
13586
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
13587
|
+
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
13588
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
13589
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
13590
|
+
address: import("./index.ts").ExecutionAddressType;
|
|
13591
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
13592
|
+
}>>;
|
|
13593
|
+
transactions: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
13594
|
+
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
13595
|
+
feeRecipient: import("./index.ts").ExecutionAddressType;
|
|
13596
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13597
|
+
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
13598
|
+
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
13599
|
+
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
13600
|
+
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
13601
|
+
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
13602
|
+
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
13603
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
13604
|
+
extraData: import("@chainsafe/ssz").ByteListType;
|
|
13605
|
+
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
13606
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
13873
13607
|
}>;
|
|
13874
13608
|
blsToExecutionChanges: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
13875
13609
|
message: ContainerType<{
|
|
@@ -14277,61 +14011,218 @@ declare const typesByFork: {
|
|
|
14277
14011
|
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
14278
14012
|
amount: import("@chainsafe/ssz").UintNumberType;
|
|
14279
14013
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
14280
|
-
index: import("@chainsafe/ssz").UintBigintType;
|
|
14281
|
-
}>>;
|
|
14282
|
-
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
14283
|
-
sourceAddress: import("./index.ts").ExecutionAddressType;
|
|
14284
|
-
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
14285
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
14286
|
-
}>>;
|
|
14287
|
-
consolidations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
14288
|
-
sourceAddress: import("./index.ts").ExecutionAddressType;
|
|
14289
|
-
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
14290
|
-
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
14291
|
-
}>>;
|
|
14292
|
-
}>;
|
|
14293
|
-
ExecutionPayloadHeader: ContainerType<{
|
|
14294
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
14295
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
14296
|
-
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
14297
|
-
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
14298
|
-
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
14299
|
-
feeRecipient: import("./index.ts").ExecutionAddressType;
|
|
14300
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
14301
|
-
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
14302
|
-
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
14303
|
-
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
14304
|
-
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
14305
|
-
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
14306
|
-
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
14307
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
14308
|
-
extraData: import("@chainsafe/ssz").ByteListType;
|
|
14309
|
-
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
14310
|
-
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
14311
|
-
}>;
|
|
14312
|
-
ExecutionPayload: ContainerType<{
|
|
14313
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
14314
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
14315
|
-
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
14316
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
14317
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
14318
|
-
address: import("./index.ts").ExecutionAddressType;
|
|
14319
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
14014
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
14015
|
+
}>>;
|
|
14016
|
+
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
14017
|
+
sourceAddress: import("./index.ts").ExecutionAddressType;
|
|
14018
|
+
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
14019
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
14020
|
+
}>>;
|
|
14021
|
+
consolidations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
14022
|
+
sourceAddress: import("./index.ts").ExecutionAddressType;
|
|
14023
|
+
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
14024
|
+
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
14025
|
+
}>>;
|
|
14026
|
+
}>;
|
|
14027
|
+
ExecutionPayloadHeader: ContainerType<{
|
|
14028
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
14029
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
14030
|
+
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
14031
|
+
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
14032
|
+
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
14033
|
+
feeRecipient: import("./index.ts").ExecutionAddressType;
|
|
14034
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
14035
|
+
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
14036
|
+
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
14037
|
+
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
14038
|
+
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
14039
|
+
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
14040
|
+
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
14041
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
14042
|
+
extraData: import("@chainsafe/ssz").ByteListType;
|
|
14043
|
+
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
14044
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
14045
|
+
}>;
|
|
14046
|
+
ExecutionPayload: ContainerType<{
|
|
14047
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
14048
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
14049
|
+
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
14050
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
14051
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
14052
|
+
address: import("./index.ts").ExecutionAddressType;
|
|
14053
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
14054
|
+
}>>;
|
|
14055
|
+
transactions: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
14056
|
+
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
14057
|
+
feeRecipient: import("./index.ts").ExecutionAddressType;
|
|
14058
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
14059
|
+
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
14060
|
+
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
14061
|
+
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
14062
|
+
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
14063
|
+
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
14064
|
+
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
14065
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
14066
|
+
extraData: import("@chainsafe/ssz").ByteListType;
|
|
14067
|
+
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
14068
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
14069
|
+
}>;
|
|
14070
|
+
BeaconBlockBody: ContainerType<{
|
|
14071
|
+
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
14072
|
+
eth1Data: ContainerType<{
|
|
14073
|
+
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
14074
|
+
depositCount: import("@chainsafe/ssz").UintNumberType;
|
|
14075
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
14076
|
+
}>;
|
|
14077
|
+
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
14078
|
+
proposerSlashings: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
14079
|
+
signedHeader1: ContainerType<{
|
|
14080
|
+
message: ContainerType<{
|
|
14081
|
+
slot: import("@chainsafe/ssz").UintBigintType;
|
|
14082
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
14083
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
14084
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
14085
|
+
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
14086
|
+
}>;
|
|
14087
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
14088
|
+
}>;
|
|
14089
|
+
signedHeader2: ContainerType<{
|
|
14090
|
+
message: ContainerType<{
|
|
14091
|
+
slot: import("@chainsafe/ssz").UintBigintType;
|
|
14092
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
14093
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
14094
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
14095
|
+
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
14096
|
+
}>;
|
|
14097
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
14098
|
+
}>;
|
|
14099
|
+
}>>;
|
|
14100
|
+
attesterSlashings: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
14101
|
+
attestation1: ContainerType<{
|
|
14102
|
+
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
14103
|
+
data: ContainerType<{
|
|
14104
|
+
slot: import("@chainsafe/ssz").UintBigintType;
|
|
14105
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
14106
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
14107
|
+
source: ContainerType<{
|
|
14108
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
14109
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
14110
|
+
}>;
|
|
14111
|
+
target: ContainerType<{
|
|
14112
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
14113
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
14114
|
+
}>;
|
|
14115
|
+
}>;
|
|
14116
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
14117
|
+
}>;
|
|
14118
|
+
attestation2: ContainerType<{
|
|
14119
|
+
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
14120
|
+
data: ContainerType<{
|
|
14121
|
+
slot: import("@chainsafe/ssz").UintBigintType;
|
|
14122
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
14123
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
14124
|
+
source: ContainerType<{
|
|
14125
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
14126
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
14127
|
+
}>;
|
|
14128
|
+
target: ContainerType<{
|
|
14129
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
14130
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
14131
|
+
}>;
|
|
14132
|
+
}>;
|
|
14133
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
14134
|
+
}>;
|
|
14135
|
+
}>>;
|
|
14136
|
+
attestations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
14137
|
+
aggregationBits: import("@chainsafe/ssz").BitListType;
|
|
14138
|
+
data: ContainerType<{
|
|
14139
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
14140
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
14141
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
14142
|
+
source: ContainerType<{
|
|
14143
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
14144
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
14145
|
+
}>;
|
|
14146
|
+
target: ContainerType<{
|
|
14147
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
14148
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
14149
|
+
}>;
|
|
14150
|
+
}>;
|
|
14151
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
14152
|
+
committeeBits: import("@chainsafe/ssz").BitVectorType;
|
|
14153
|
+
}>>;
|
|
14154
|
+
deposits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
14155
|
+
proof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
14156
|
+
data: ContainerType<{
|
|
14157
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
14158
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
14159
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
14160
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
14161
|
+
}>;
|
|
14162
|
+
}>>;
|
|
14163
|
+
voluntaryExits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
14164
|
+
message: ContainerType<{
|
|
14165
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
14166
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
14167
|
+
}>;
|
|
14168
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
14169
|
+
}>>;
|
|
14170
|
+
syncAggregate: ContainerType<{
|
|
14171
|
+
syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
|
|
14172
|
+
syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
|
|
14173
|
+
}>;
|
|
14174
|
+
executionPayload: ContainerType<{
|
|
14175
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
14176
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
14177
|
+
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
14178
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
14179
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
14180
|
+
address: import("./index.ts").ExecutionAddressType;
|
|
14181
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
14182
|
+
}>>;
|
|
14183
|
+
transactions: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
14184
|
+
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
14185
|
+
feeRecipient: import("./index.ts").ExecutionAddressType;
|
|
14186
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
14187
|
+
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
14188
|
+
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
14189
|
+
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
14190
|
+
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
14191
|
+
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
14192
|
+
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
14193
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
14194
|
+
extraData: import("@chainsafe/ssz").ByteListType;
|
|
14195
|
+
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
14196
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
14197
|
+
}>;
|
|
14198
|
+
blsToExecutionChanges: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
14199
|
+
message: ContainerType<{
|
|
14200
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
14201
|
+
fromBlsPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
14202
|
+
toExecutionAddress: import("./index.ts").ExecutionAddressType;
|
|
14203
|
+
}>;
|
|
14204
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
14320
14205
|
}>>;
|
|
14321
|
-
|
|
14322
|
-
|
|
14323
|
-
|
|
14324
|
-
|
|
14325
|
-
|
|
14326
|
-
|
|
14327
|
-
|
|
14328
|
-
|
|
14329
|
-
|
|
14330
|
-
|
|
14331
|
-
|
|
14332
|
-
|
|
14333
|
-
|
|
14334
|
-
|
|
14206
|
+
blobKzgCommitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
14207
|
+
executionRequests: ContainerType<{
|
|
14208
|
+
deposits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
14209
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
14210
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
14211
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
14212
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
14213
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
14214
|
+
}>>;
|
|
14215
|
+
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
14216
|
+
sourceAddress: import("./index.ts").ExecutionAddressType;
|
|
14217
|
+
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
14218
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
14219
|
+
}>>;
|
|
14220
|
+
consolidations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
14221
|
+
sourceAddress: import("./index.ts").ExecutionAddressType;
|
|
14222
|
+
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
14223
|
+
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
14224
|
+
}>>;
|
|
14225
|
+
}>;
|
|
14335
14226
|
}>;
|
|
14336
14227
|
BlindedBeaconBlockBody: ContainerType<{
|
|
14337
14228
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -28644,406 +28535,197 @@ export declare const fulu: {
|
|
|
28644
28535
|
root: import("@chainsafe/ssz").ByteVectorType;
|
|
28645
28536
|
}>;
|
|
28646
28537
|
}>;
|
|
28647
|
-
inclusionDelay: import("@chainsafe/ssz").UintNumberType;
|
|
28648
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
28649
|
-
}>;
|
|
28650
|
-
SigningData: ContainerType<{
|
|
28651
|
-
objectRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
28652
|
-
domain: import("@chainsafe/ssz").ByteVectorType;
|
|
28653
|
-
}>;
|
|
28654
|
-
Deposit: ContainerType<{
|
|
28655
|
-
proof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
28656
|
-
data: ContainerType<{
|
|
28657
|
-
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
28658
|
-
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
28659
|
-
amount: import("@chainsafe/ssz").UintNumberType;
|
|
28660
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
28661
|
-
}>;
|
|
28662
|
-
}>;
|
|
28663
|
-
ProposerSlashing: ContainerType<{
|
|
28664
|
-
signedHeader1: ContainerType<{
|
|
28665
|
-
message: ContainerType<{
|
|
28666
|
-
slot: import("@chainsafe/ssz").UintBigintType;
|
|
28667
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
28668
|
-
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
28669
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
28670
|
-
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
28671
|
-
}>;
|
|
28672
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
28673
|
-
}>;
|
|
28674
|
-
signedHeader2: ContainerType<{
|
|
28675
|
-
message: ContainerType<{
|
|
28676
|
-
slot: import("@chainsafe/ssz").UintBigintType;
|
|
28677
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
28678
|
-
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
28679
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
28680
|
-
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
28681
|
-
}>;
|
|
28682
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
28683
|
-
}>;
|
|
28684
|
-
}>;
|
|
28685
|
-
VoluntaryExit: ContainerType<{
|
|
28686
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
28687
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
28688
|
-
}>;
|
|
28689
|
-
SignedVoluntaryExit: ContainerType<{
|
|
28690
|
-
message: ContainerType<{
|
|
28691
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
28692
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
28693
|
-
}>;
|
|
28694
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
28695
|
-
}>;
|
|
28696
|
-
EpochAttestations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
28697
|
-
aggregationBits: import("@chainsafe/ssz").BitListType;
|
|
28698
|
-
data: ContainerType<{
|
|
28699
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
28700
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
28701
|
-
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
28702
|
-
source: ContainerType<{
|
|
28703
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
28704
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
28705
|
-
}>;
|
|
28706
|
-
target: ContainerType<{
|
|
28707
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
28708
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
28709
|
-
}>;
|
|
28710
|
-
}>;
|
|
28711
|
-
inclusionDelay: import("@chainsafe/ssz").UintNumberType;
|
|
28712
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
28713
|
-
}>>;
|
|
28714
|
-
CommitteeAssignment: ContainerType<{
|
|
28715
|
-
validators: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
28716
|
-
committeeIndex: import("@chainsafe/ssz").UintNumberType;
|
|
28717
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
28718
|
-
}>;
|
|
28719
|
-
Goodbye: import("@chainsafe/ssz").UintBigintType;
|
|
28720
|
-
Ping: import("@chainsafe/ssz").UintBigintType;
|
|
28721
|
-
BeaconBlocksByRangeRequest: ContainerType<{
|
|
28722
|
-
startSlot: import("@chainsafe/ssz").UintNumberType;
|
|
28723
|
-
count: import("@chainsafe/ssz").UintNumberType;
|
|
28724
|
-
step: import("@chainsafe/ssz").UintNumberType;
|
|
28725
|
-
}>;
|
|
28726
|
-
Genesis: ContainerType<{
|
|
28727
|
-
genesisValidatorsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
28728
|
-
genesisTime: import("@chainsafe/ssz").UintNumberType;
|
|
28729
|
-
genesisForkVersion: import("@chainsafe/ssz").ByteVectorType;
|
|
28730
|
-
}>;
|
|
28731
|
-
};
|
|
28732
|
-
export declare const gloas: {
|
|
28733
|
-
BuilderPendingWithdrawal: ContainerType<{
|
|
28734
|
-
feeRecipient: import("./index.ts").ExecutionAddressType;
|
|
28735
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
28736
|
-
builderIndex: import("@chainsafe/ssz").UintNumberType;
|
|
28737
|
-
withdrawableEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
28738
|
-
}>;
|
|
28739
|
-
BuilderPendingPayment: ContainerType<{
|
|
28740
|
-
weight: import("@chainsafe/ssz").UintBigintType;
|
|
28741
|
-
withdrawal: ContainerType<{
|
|
28742
|
-
feeRecipient: import("./index.ts").ExecutionAddressType;
|
|
28743
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
28744
|
-
builderIndex: import("@chainsafe/ssz").UintNumberType;
|
|
28745
|
-
withdrawableEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
28746
|
-
}>;
|
|
28747
|
-
}>;
|
|
28748
|
-
PayloadAttestationData: ContainerType<{
|
|
28749
|
-
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
28750
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
28751
|
-
payloadPresent: import("@chainsafe/ssz").BooleanType;
|
|
28752
|
-
blobDataAvailable: import("@chainsafe/ssz").BooleanType;
|
|
28753
|
-
}>;
|
|
28754
|
-
PayloadAttestation: ContainerType<{
|
|
28755
|
-
aggregationBits: import("@chainsafe/ssz").BitVectorType;
|
|
28756
|
-
data: ContainerType<{
|
|
28757
|
-
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
28758
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
28759
|
-
payloadPresent: import("@chainsafe/ssz").BooleanType;
|
|
28760
|
-
blobDataAvailable: import("@chainsafe/ssz").BooleanType;
|
|
28761
|
-
}>;
|
|
28762
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
28763
|
-
}>;
|
|
28764
|
-
PayloadAttestationMessage: ContainerType<{
|
|
28765
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
28766
|
-
data: ContainerType<{
|
|
28767
|
-
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
28768
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
28769
|
-
payloadPresent: import("@chainsafe/ssz").BooleanType;
|
|
28770
|
-
blobDataAvailable: import("@chainsafe/ssz").BooleanType;
|
|
28771
|
-
}>;
|
|
28772
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
28773
|
-
}>;
|
|
28774
|
-
IndexedPayloadAttestation: ContainerType<{
|
|
28775
|
-
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
28776
|
-
data: ContainerType<{
|
|
28777
|
-
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
28778
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
28779
|
-
payloadPresent: import("@chainsafe/ssz").BooleanType;
|
|
28780
|
-
blobDataAvailable: import("@chainsafe/ssz").BooleanType;
|
|
28781
|
-
}>;
|
|
28782
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
28783
|
-
}>;
|
|
28784
|
-
ExecutionPayloadBid: ContainerType<{
|
|
28785
|
-
parentBlockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
28786
|
-
parentBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
28787
|
-
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
28788
|
-
feeRecipient: import("./index.ts").ExecutionAddressType;
|
|
28789
|
-
gasLimit: import("@chainsafe/ssz").UintBigintType;
|
|
28790
|
-
builderIndex: import("@chainsafe/ssz").UintNumberType;
|
|
28791
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
28792
|
-
value: import("@chainsafe/ssz").UintBigintType;
|
|
28793
|
-
blobKzgCommitmentsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
28794
|
-
}>;
|
|
28795
|
-
SignedExecutionPayloadBid: ContainerType<{
|
|
28796
|
-
message: ContainerType<{
|
|
28797
|
-
parentBlockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
28798
|
-
parentBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
28799
|
-
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
28800
|
-
feeRecipient: import("./index.ts").ExecutionAddressType;
|
|
28801
|
-
gasLimit: import("@chainsafe/ssz").UintBigintType;
|
|
28802
|
-
builderIndex: import("@chainsafe/ssz").UintNumberType;
|
|
28803
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
28804
|
-
value: import("@chainsafe/ssz").UintBigintType;
|
|
28805
|
-
blobKzgCommitmentsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
28806
|
-
}>;
|
|
28807
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
28808
|
-
}>;
|
|
28809
|
-
ExecutionPayloadEnvelope: ContainerType<{
|
|
28810
|
-
payload: ContainerType<{
|
|
28811
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
28812
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
28813
|
-
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
28814
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
28815
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
28816
|
-
address: import("./index.ts").ExecutionAddressType;
|
|
28817
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
28818
|
-
}>>;
|
|
28819
|
-
transactions: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
28820
|
-
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
28821
|
-
feeRecipient: import("./index.ts").ExecutionAddressType;
|
|
28822
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
28823
|
-
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
28824
|
-
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
28825
|
-
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
28826
|
-
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
28827
|
-
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
28828
|
-
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
28829
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
28830
|
-
extraData: import("@chainsafe/ssz").ByteListType;
|
|
28831
|
-
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
28832
|
-
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
28833
|
-
}>;
|
|
28834
|
-
executionRequests: ContainerType<{
|
|
28835
|
-
deposits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
28836
|
-
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
28837
|
-
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
28838
|
-
amount: import("@chainsafe/ssz").UintNumberType;
|
|
28839
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
28840
|
-
index: import("@chainsafe/ssz").UintBigintType;
|
|
28841
|
-
}>>;
|
|
28842
|
-
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
28843
|
-
sourceAddress: import("./index.ts").ExecutionAddressType;
|
|
28844
|
-
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
28845
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
28846
|
-
}>>;
|
|
28847
|
-
consolidations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
28848
|
-
sourceAddress: import("./index.ts").ExecutionAddressType;
|
|
28849
|
-
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
28850
|
-
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
28851
|
-
}>>;
|
|
28538
|
+
inclusionDelay: import("@chainsafe/ssz").UintNumberType;
|
|
28539
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
28540
|
+
}>;
|
|
28541
|
+
SigningData: ContainerType<{
|
|
28542
|
+
objectRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
28543
|
+
domain: import("@chainsafe/ssz").ByteVectorType;
|
|
28544
|
+
}>;
|
|
28545
|
+
Deposit: ContainerType<{
|
|
28546
|
+
proof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
28547
|
+
data: ContainerType<{
|
|
28548
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
28549
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
28550
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
28551
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
28852
28552
|
}>;
|
|
28853
|
-
builderIndex: import("@chainsafe/ssz").UintNumberType;
|
|
28854
|
-
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
28855
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
28856
|
-
blobKzgCommitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
28857
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
28858
28553
|
}>;
|
|
28859
|
-
|
|
28860
|
-
|
|
28861
|
-
|
|
28862
|
-
|
|
28863
|
-
|
|
28864
|
-
|
|
28865
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
28866
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
28867
|
-
address: import("./index.ts").ExecutionAddressType;
|
|
28868
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
28869
|
-
}>>;
|
|
28870
|
-
transactions: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
28871
|
-
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
28872
|
-
feeRecipient: import("./index.ts").ExecutionAddressType;
|
|
28554
|
+
ProposerSlashing: ContainerType<{
|
|
28555
|
+
signedHeader1: ContainerType<{
|
|
28556
|
+
message: ContainerType<{
|
|
28557
|
+
slot: import("@chainsafe/ssz").UintBigintType;
|
|
28558
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
28559
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
28873
28560
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
28874
|
-
|
|
28875
|
-
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
28876
|
-
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
28877
|
-
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
28878
|
-
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
28879
|
-
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
28880
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
28881
|
-
extraData: import("@chainsafe/ssz").ByteListType;
|
|
28882
|
-
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
28883
|
-
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
28561
|
+
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
28884
28562
|
}>;
|
|
28885
|
-
|
|
28886
|
-
|
|
28887
|
-
|
|
28888
|
-
|
|
28889
|
-
|
|
28890
|
-
|
|
28891
|
-
|
|
28892
|
-
|
|
28893
|
-
|
|
28894
|
-
sourceAddress: import("./index.ts").ExecutionAddressType;
|
|
28895
|
-
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
28896
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
28897
|
-
}>>;
|
|
28898
|
-
consolidations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
28899
|
-
sourceAddress: import("./index.ts").ExecutionAddressType;
|
|
28900
|
-
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
28901
|
-
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
28902
|
-
}>>;
|
|
28563
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
28564
|
+
}>;
|
|
28565
|
+
signedHeader2: ContainerType<{
|
|
28566
|
+
message: ContainerType<{
|
|
28567
|
+
slot: import("@chainsafe/ssz").UintBigintType;
|
|
28568
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
28569
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
28570
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
28571
|
+
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
28903
28572
|
}>;
|
|
28904
|
-
|
|
28573
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
28574
|
+
}>;
|
|
28575
|
+
}>;
|
|
28576
|
+
VoluntaryExit: ContainerType<{
|
|
28577
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
28578
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
28579
|
+
}>;
|
|
28580
|
+
SignedVoluntaryExit: ContainerType<{
|
|
28581
|
+
message: ContainerType<{
|
|
28582
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
28583
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
28584
|
+
}>;
|
|
28585
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
28586
|
+
}>;
|
|
28587
|
+
EpochAttestations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
28588
|
+
aggregationBits: import("@chainsafe/ssz").BitListType;
|
|
28589
|
+
data: ContainerType<{
|
|
28590
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
28591
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
28905
28592
|
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
28593
|
+
source: ContainerType<{
|
|
28594
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
28595
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
28596
|
+
}>;
|
|
28597
|
+
target: ContainerType<{
|
|
28598
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
28599
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
28600
|
+
}>;
|
|
28601
|
+
}>;
|
|
28602
|
+
inclusionDelay: import("@chainsafe/ssz").UintNumberType;
|
|
28603
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
28604
|
+
}>>;
|
|
28605
|
+
CommitteeAssignment: ContainerType<{
|
|
28606
|
+
validators: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
28607
|
+
committeeIndex: import("@chainsafe/ssz").UintNumberType;
|
|
28608
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
28609
|
+
}>;
|
|
28610
|
+
Goodbye: import("@chainsafe/ssz").UintBigintType;
|
|
28611
|
+
Ping: import("@chainsafe/ssz").UintBigintType;
|
|
28612
|
+
BeaconBlocksByRangeRequest: ContainerType<{
|
|
28613
|
+
startSlot: import("@chainsafe/ssz").UintNumberType;
|
|
28614
|
+
count: import("@chainsafe/ssz").UintNumberType;
|
|
28615
|
+
step: import("@chainsafe/ssz").UintNumberType;
|
|
28616
|
+
}>;
|
|
28617
|
+
Genesis: ContainerType<{
|
|
28618
|
+
genesisValidatorsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
28619
|
+
genesisTime: import("@chainsafe/ssz").UintNumberType;
|
|
28620
|
+
genesisForkVersion: import("@chainsafe/ssz").ByteVectorType;
|
|
28621
|
+
}>;
|
|
28622
|
+
};
|
|
28623
|
+
export declare const gloas: {
|
|
28624
|
+
BeaconState: ContainerType<{
|
|
28625
|
+
proposerLookahead: import("@chainsafe/ssz").VectorBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
28626
|
+
genesisTime: import("@chainsafe/ssz").UintNumberType;
|
|
28627
|
+
genesisValidatorsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
28628
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
28629
|
+
fork: ContainerType<{
|
|
28630
|
+
previousVersion: import("@chainsafe/ssz").ByteVectorType;
|
|
28631
|
+
currentVersion: import("@chainsafe/ssz").ByteVectorType;
|
|
28632
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
28633
|
+
}>;
|
|
28634
|
+
latestBlockHeader: ContainerType<{
|
|
28906
28635
|
slot: import("@chainsafe/ssz").UintNumberType;
|
|
28907
|
-
|
|
28636
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
28637
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
28908
28638
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
28639
|
+
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
28909
28640
|
}>;
|
|
28910
|
-
|
|
28911
|
-
|
|
28912
|
-
|
|
28913
|
-
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
28641
|
+
blockRoots: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
28642
|
+
stateRoots: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
28643
|
+
historicalRoots: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
28914
28644
|
eth1Data: ContainerType<{
|
|
28915
28645
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
28916
28646
|
depositCount: import("@chainsafe/ssz").UintNumberType;
|
|
28917
28647
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
28918
28648
|
}>;
|
|
28919
|
-
|
|
28920
|
-
|
|
28921
|
-
|
|
28922
|
-
|
|
28923
|
-
slot: import("@chainsafe/ssz").UintBigintType;
|
|
28924
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
28925
|
-
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
28926
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
28927
|
-
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
28928
|
-
}>;
|
|
28929
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
28930
|
-
}>;
|
|
28931
|
-
signedHeader2: ContainerType<{
|
|
28932
|
-
message: ContainerType<{
|
|
28933
|
-
slot: import("@chainsafe/ssz").UintBigintType;
|
|
28934
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
28935
|
-
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
28936
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
28937
|
-
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
28938
|
-
}>;
|
|
28939
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
28940
|
-
}>;
|
|
28941
|
-
}>>;
|
|
28942
|
-
attesterSlashings: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
28943
|
-
attestation1: ContainerType<{
|
|
28944
|
-
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
28945
|
-
data: ContainerType<{
|
|
28946
|
-
slot: import("@chainsafe/ssz").UintBigintType;
|
|
28947
|
-
index: import("@chainsafe/ssz").UintBigintType;
|
|
28948
|
-
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
28949
|
-
source: ContainerType<{
|
|
28950
|
-
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
28951
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
28952
|
-
}>;
|
|
28953
|
-
target: ContainerType<{
|
|
28954
|
-
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
28955
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
28956
|
-
}>;
|
|
28957
|
-
}>;
|
|
28958
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
28959
|
-
}>;
|
|
28960
|
-
attestation2: ContainerType<{
|
|
28961
|
-
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
28962
|
-
data: ContainerType<{
|
|
28963
|
-
slot: import("@chainsafe/ssz").UintBigintType;
|
|
28964
|
-
index: import("@chainsafe/ssz").UintBigintType;
|
|
28965
|
-
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
28966
|
-
source: ContainerType<{
|
|
28967
|
-
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
28968
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
28969
|
-
}>;
|
|
28970
|
-
target: ContainerType<{
|
|
28971
|
-
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
28972
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
28973
|
-
}>;
|
|
28974
|
-
}>;
|
|
28975
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
28976
|
-
}>;
|
|
28977
|
-
}>>;
|
|
28978
|
-
attestations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
28979
|
-
aggregationBits: import("@chainsafe/ssz").BitListType;
|
|
28980
|
-
data: ContainerType<{
|
|
28981
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
28982
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
28983
|
-
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
28984
|
-
source: ContainerType<{
|
|
28985
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
28986
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
28987
|
-
}>;
|
|
28988
|
-
target: ContainerType<{
|
|
28989
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
28990
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
28991
|
-
}>;
|
|
28992
|
-
}>;
|
|
28993
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
28994
|
-
committeeBits: import("@chainsafe/ssz").BitVectorType;
|
|
28649
|
+
eth1DataVotes: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
28650
|
+
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
28651
|
+
depositCount: import("@chainsafe/ssz").UintNumberType;
|
|
28652
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
28995
28653
|
}>>;
|
|
28996
|
-
|
|
28997
|
-
|
|
28998
|
-
|
|
28999
|
-
|
|
29000
|
-
|
|
29001
|
-
|
|
29002
|
-
|
|
29003
|
-
|
|
28654
|
+
eth1DepositIndex: import("@chainsafe/ssz").UintNumberType;
|
|
28655
|
+
validators: import("@chainsafe/ssz").ListCompositeType<import("./phase0/validator.ts").ValidatorNodeStructType>;
|
|
28656
|
+
balances: import("@chainsafe/ssz").ListUintNum64Type;
|
|
28657
|
+
randaoMixes: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
28658
|
+
slashings: import("@chainsafe/ssz").VectorBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
28659
|
+
previousEpochParticipation: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
28660
|
+
currentEpochParticipation: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
28661
|
+
justificationBits: import("@chainsafe/ssz").BitVectorType;
|
|
28662
|
+
previousJustifiedCheckpoint: ContainerType<{
|
|
28663
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
28664
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
28665
|
+
}>;
|
|
28666
|
+
currentJustifiedCheckpoint: ContainerType<{
|
|
28667
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
28668
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
28669
|
+
}>;
|
|
28670
|
+
finalizedCheckpoint: ContainerType<{
|
|
28671
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
28672
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
28673
|
+
}>;
|
|
28674
|
+
inactivityScores: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
28675
|
+
currentSyncCommittee: ContainerType<{
|
|
28676
|
+
pubkeys: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
28677
|
+
aggregatePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
28678
|
+
}>;
|
|
28679
|
+
nextSyncCommittee: ContainerType<{
|
|
28680
|
+
pubkeys: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
28681
|
+
aggregatePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
28682
|
+
}>;
|
|
28683
|
+
latestExecutionPayloadHeader: ContainerType<{
|
|
28684
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
28685
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
28686
|
+
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
28687
|
+
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
28688
|
+
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
28689
|
+
feeRecipient: import("./index.ts").ExecutionAddressType;
|
|
28690
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
28691
|
+
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
28692
|
+
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
28693
|
+
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
28694
|
+
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
28695
|
+
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
28696
|
+
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
28697
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
28698
|
+
extraData: import("@chainsafe/ssz").ByteListType;
|
|
28699
|
+
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
28700
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
28701
|
+
}>;
|
|
28702
|
+
nextWithdrawalIndex: import("@chainsafe/ssz").UintNumberType;
|
|
28703
|
+
nextWithdrawalValidatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
28704
|
+
historicalSummaries: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
28705
|
+
blockSummaryRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
28706
|
+
stateSummaryRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
29004
28707
|
}>>;
|
|
29005
|
-
|
|
29006
|
-
|
|
29007
|
-
|
|
29008
|
-
|
|
29009
|
-
|
|
28708
|
+
depositRequestsStartIndex: import("@chainsafe/ssz").UintBigintType;
|
|
28709
|
+
depositBalanceToConsume: import("@chainsafe/ssz").UintBigintType;
|
|
28710
|
+
exitBalanceToConsume: import("@chainsafe/ssz").UintBigintType;
|
|
28711
|
+
earliestExitEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
28712
|
+
consolidationBalanceToConsume: import("@chainsafe/ssz").UintBigintType;
|
|
28713
|
+
earliestConsolidationEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
28714
|
+
pendingDeposits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
28715
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
28716
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
28717
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
29010
28718
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
28719
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
29011
28720
|
}>>;
|
|
29012
|
-
|
|
29013
|
-
|
|
29014
|
-
|
|
29015
|
-
|
|
29016
|
-
blsToExecutionChanges: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
29017
|
-
message: ContainerType<{
|
|
29018
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
29019
|
-
fromBlsPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
29020
|
-
toExecutionAddress: import("./index.ts").ExecutionAddressType;
|
|
29021
|
-
}>;
|
|
29022
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
28721
|
+
pendingPartialWithdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
28722
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
28723
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
28724
|
+
withdrawableEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
29023
28725
|
}>>;
|
|
29024
|
-
|
|
29025
|
-
|
|
29026
|
-
|
|
29027
|
-
parentBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
29028
|
-
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
29029
|
-
feeRecipient: import("./index.ts").ExecutionAddressType;
|
|
29030
|
-
gasLimit: import("@chainsafe/ssz").UintBigintType;
|
|
29031
|
-
builderIndex: import("@chainsafe/ssz").UintNumberType;
|
|
29032
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
29033
|
-
value: import("@chainsafe/ssz").UintBigintType;
|
|
29034
|
-
blobKzgCommitmentsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
29035
|
-
}>;
|
|
29036
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
29037
|
-
}>;
|
|
29038
|
-
payloadAttestations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
29039
|
-
aggregationBits: import("@chainsafe/ssz").BitVectorType;
|
|
29040
|
-
data: ContainerType<{
|
|
29041
|
-
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
29042
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
29043
|
-
payloadPresent: import("@chainsafe/ssz").BooleanType;
|
|
29044
|
-
blobDataAvailable: import("@chainsafe/ssz").BooleanType;
|
|
29045
|
-
}>;
|
|
29046
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
28726
|
+
pendingConsolidations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
28727
|
+
sourceIndex: import("@chainsafe/ssz").UintNumberType;
|
|
28728
|
+
targetIndex: import("@chainsafe/ssz").UintNumberType;
|
|
29047
28729
|
}>>;
|
|
29048
28730
|
}>;
|
|
29049
28731
|
BeaconBlock: ContainerType<{
|
|
@@ -29151,6 +28833,30 @@ export declare const gloas: {
|
|
|
29151
28833
|
syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
|
|
29152
28834
|
syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
|
|
29153
28835
|
}>;
|
|
28836
|
+
executionPayload: ContainerType<{
|
|
28837
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
28838
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
28839
|
+
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
28840
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
28841
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
28842
|
+
address: import("./index.ts").ExecutionAddressType;
|
|
28843
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
28844
|
+
}>>;
|
|
28845
|
+
transactions: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
28846
|
+
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
28847
|
+
feeRecipient: import("./index.ts").ExecutionAddressType;
|
|
28848
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
28849
|
+
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
28850
|
+
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
28851
|
+
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
28852
|
+
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
28853
|
+
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
28854
|
+
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
28855
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
28856
|
+
extraData: import("@chainsafe/ssz").ByteListType;
|
|
28857
|
+
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
28858
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
28859
|
+
}>;
|
|
29154
28860
|
blsToExecutionChanges: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
29155
28861
|
message: ContainerType<{
|
|
29156
28862
|
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -29159,30 +28865,26 @@ export declare const gloas: {
|
|
|
29159
28865
|
}>;
|
|
29160
28866
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
29161
28867
|
}>>;
|
|
29162
|
-
|
|
29163
|
-
|
|
29164
|
-
|
|
29165
|
-
|
|
29166
|
-
|
|
29167
|
-
|
|
29168
|
-
|
|
29169
|
-
|
|
29170
|
-
|
|
29171
|
-
|
|
29172
|
-
|
|
29173
|
-
|
|
29174
|
-
|
|
28868
|
+
blobKzgCommitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
28869
|
+
executionRequests: ContainerType<{
|
|
28870
|
+
deposits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
28871
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
28872
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
28873
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
28874
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
28875
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
28876
|
+
}>>;
|
|
28877
|
+
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
28878
|
+
sourceAddress: import("./index.ts").ExecutionAddressType;
|
|
28879
|
+
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
28880
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
28881
|
+
}>>;
|
|
28882
|
+
consolidations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
28883
|
+
sourceAddress: import("./index.ts").ExecutionAddressType;
|
|
28884
|
+
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
28885
|
+
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
28886
|
+
}>>;
|
|
29175
28887
|
}>;
|
|
29176
|
-
payloadAttestations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
29177
|
-
aggregationBits: import("@chainsafe/ssz").BitVectorType;
|
|
29178
|
-
data: ContainerType<{
|
|
29179
|
-
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
29180
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
29181
|
-
payloadPresent: import("@chainsafe/ssz").BooleanType;
|
|
29182
|
-
blobDataAvailable: import("@chainsafe/ssz").BooleanType;
|
|
29183
|
-
}>;
|
|
29184
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
29185
|
-
}>>;
|
|
29186
28888
|
}>;
|
|
29187
28889
|
slot: import("@chainsafe/ssz").UintNumberType;
|
|
29188
28890
|
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -29295,6 +28997,30 @@ export declare const gloas: {
|
|
|
29295
28997
|
syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
|
|
29296
28998
|
syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
|
|
29297
28999
|
}>;
|
|
29000
|
+
executionPayload: ContainerType<{
|
|
29001
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
29002
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
29003
|
+
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
29004
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
29005
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
29006
|
+
address: import("./index.ts").ExecutionAddressType;
|
|
29007
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
29008
|
+
}>>;
|
|
29009
|
+
transactions: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
29010
|
+
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
29011
|
+
feeRecipient: import("./index.ts").ExecutionAddressType;
|
|
29012
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
29013
|
+
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
29014
|
+
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
29015
|
+
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
29016
|
+
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
29017
|
+
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
29018
|
+
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
29019
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
29020
|
+
extraData: import("@chainsafe/ssz").ByteListType;
|
|
29021
|
+
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
29022
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
29023
|
+
}>;
|
|
29298
29024
|
blsToExecutionChanges: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
29299
29025
|
message: ContainerType<{
|
|
29300
29026
|
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -29303,169 +29029,34 @@ export declare const gloas: {
|
|
|
29303
29029
|
}>;
|
|
29304
29030
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
29305
29031
|
}>>;
|
|
29306
|
-
|
|
29307
|
-
|
|
29308
|
-
|
|
29309
|
-
|
|
29310
|
-
|
|
29311
|
-
|
|
29312
|
-
|
|
29313
|
-
|
|
29314
|
-
|
|
29315
|
-
|
|
29316
|
-
|
|
29317
|
-
|
|
29318
|
-
|
|
29319
|
-
|
|
29320
|
-
|
|
29321
|
-
|
|
29322
|
-
|
|
29323
|
-
|
|
29324
|
-
|
|
29325
|
-
|
|
29326
|
-
|
|
29327
|
-
}>;
|
|
29328
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
29329
|
-
}>>;
|
|
29330
|
-
}>;
|
|
29331
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
29332
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
29333
|
-
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
29334
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
29335
|
-
}>;
|
|
29336
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
29337
|
-
}>;
|
|
29338
|
-
BeaconState: ContainerType<{
|
|
29339
|
-
genesisTime: import("@chainsafe/ssz").UintNumberType;
|
|
29340
|
-
genesisValidatorsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
29341
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
29342
|
-
fork: ContainerType<{
|
|
29343
|
-
previousVersion: import("@chainsafe/ssz").ByteVectorType;
|
|
29344
|
-
currentVersion: import("@chainsafe/ssz").ByteVectorType;
|
|
29345
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
29346
|
-
}>;
|
|
29347
|
-
latestBlockHeader: ContainerType<{
|
|
29348
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
29349
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
29350
|
-
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
29351
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
29352
|
-
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
29353
|
-
}>;
|
|
29354
|
-
blockRoots: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
29355
|
-
stateRoots: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
29356
|
-
historicalRoots: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
29357
|
-
eth1Data: ContainerType<{
|
|
29358
|
-
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
29359
|
-
depositCount: import("@chainsafe/ssz").UintNumberType;
|
|
29360
|
-
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
29361
|
-
}>;
|
|
29362
|
-
eth1DataVotes: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
29363
|
-
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
29364
|
-
depositCount: import("@chainsafe/ssz").UintNumberType;
|
|
29365
|
-
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
29366
|
-
}>>;
|
|
29367
|
-
eth1DepositIndex: import("@chainsafe/ssz").UintNumberType;
|
|
29368
|
-
validators: import("@chainsafe/ssz").ListCompositeType<import("./phase0/validator.ts").ValidatorNodeStructType>;
|
|
29369
|
-
balances: import("@chainsafe/ssz").ListUintNum64Type;
|
|
29370
|
-
randaoMixes: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
29371
|
-
slashings: import("@chainsafe/ssz").VectorBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
29372
|
-
previousEpochParticipation: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
29373
|
-
currentEpochParticipation: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
29374
|
-
justificationBits: import("@chainsafe/ssz").BitVectorType;
|
|
29375
|
-
previousJustifiedCheckpoint: ContainerType<{
|
|
29376
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
29377
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
29378
|
-
}>;
|
|
29379
|
-
currentJustifiedCheckpoint: ContainerType<{
|
|
29380
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
29381
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
29382
|
-
}>;
|
|
29383
|
-
finalizedCheckpoint: ContainerType<{
|
|
29384
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
29385
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
29386
|
-
}>;
|
|
29387
|
-
inactivityScores: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
29388
|
-
currentSyncCommittee: ContainerType<{
|
|
29389
|
-
pubkeys: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
29390
|
-
aggregatePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
29391
|
-
}>;
|
|
29392
|
-
nextSyncCommittee: ContainerType<{
|
|
29393
|
-
pubkeys: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
29394
|
-
aggregatePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
29395
|
-
}>;
|
|
29396
|
-
latestExecutionPayloadBid: ContainerType<{
|
|
29397
|
-
parentBlockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
29398
|
-
parentBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
29399
|
-
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
29400
|
-
feeRecipient: import("./index.ts").ExecutionAddressType;
|
|
29401
|
-
gasLimit: import("@chainsafe/ssz").UintBigintType;
|
|
29402
|
-
builderIndex: import("@chainsafe/ssz").UintNumberType;
|
|
29032
|
+
blobKzgCommitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
29033
|
+
executionRequests: ContainerType<{
|
|
29034
|
+
deposits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
29035
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
29036
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
29037
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
29038
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
29039
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
29040
|
+
}>>;
|
|
29041
|
+
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
29042
|
+
sourceAddress: import("./index.ts").ExecutionAddressType;
|
|
29043
|
+
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
29044
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
29045
|
+
}>>;
|
|
29046
|
+
consolidations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
29047
|
+
sourceAddress: import("./index.ts").ExecutionAddressType;
|
|
29048
|
+
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
29049
|
+
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
29050
|
+
}>>;
|
|
29051
|
+
}>;
|
|
29052
|
+
}>;
|
|
29403
29053
|
slot: import("@chainsafe/ssz").UintNumberType;
|
|
29404
|
-
|
|
29405
|
-
|
|
29054
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
29055
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
29056
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
29406
29057
|
}>;
|
|
29407
|
-
|
|
29408
|
-
nextWithdrawalValidatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
29409
|
-
historicalSummaries: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
29410
|
-
blockSummaryRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
29411
|
-
stateSummaryRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
29412
|
-
}>>;
|
|
29413
|
-
depositRequestsStartIndex: import("@chainsafe/ssz").UintBigintType;
|
|
29414
|
-
depositBalanceToConsume: import("@chainsafe/ssz").UintBigintType;
|
|
29415
|
-
exitBalanceToConsume: import("@chainsafe/ssz").UintBigintType;
|
|
29416
|
-
earliestExitEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
29417
|
-
consolidationBalanceToConsume: import("@chainsafe/ssz").UintBigintType;
|
|
29418
|
-
earliestConsolidationEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
29419
|
-
pendingDeposits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
29420
|
-
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
29421
|
-
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
29422
|
-
amount: import("@chainsafe/ssz").UintNumberType;
|
|
29423
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
29424
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
29425
|
-
}>>;
|
|
29426
|
-
pendingPartialWithdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
29427
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
29428
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
29429
|
-
withdrawableEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
29430
|
-
}>>;
|
|
29431
|
-
pendingConsolidations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
29432
|
-
sourceIndex: import("@chainsafe/ssz").UintNumberType;
|
|
29433
|
-
targetIndex: import("@chainsafe/ssz").UintNumberType;
|
|
29434
|
-
}>>;
|
|
29435
|
-
proposerLookahead: import("@chainsafe/ssz").VectorBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
29436
|
-
executionPayloadAvailability: import("@chainsafe/ssz").BitVectorType;
|
|
29437
|
-
builderPendingPayments: import("@chainsafe/ssz").VectorCompositeType<ContainerType<{
|
|
29438
|
-
weight: import("@chainsafe/ssz").UintBigintType;
|
|
29439
|
-
withdrawal: ContainerType<{
|
|
29440
|
-
feeRecipient: import("./index.ts").ExecutionAddressType;
|
|
29441
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
29442
|
-
builderIndex: import("@chainsafe/ssz").UintNumberType;
|
|
29443
|
-
withdrawableEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
29444
|
-
}>;
|
|
29445
|
-
}>>;
|
|
29446
|
-
builderPendingWithdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
29447
|
-
feeRecipient: import("./index.ts").ExecutionAddressType;
|
|
29448
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
29449
|
-
builderIndex: import("@chainsafe/ssz").UintNumberType;
|
|
29450
|
-
withdrawableEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
29451
|
-
}>>;
|
|
29452
|
-
latestBlockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
29453
|
-
latestWithdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
29454
|
-
}>;
|
|
29455
|
-
DataColumnSidecar: ContainerType<{
|
|
29456
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
29457
|
-
column: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
29458
|
-
kzgCommitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
29459
|
-
kzgProofs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
29460
|
-
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
29058
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
29461
29059
|
}>;
|
|
29462
|
-
DataColumnSidecars: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
29463
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
29464
|
-
column: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
29465
|
-
kzgCommitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
29466
|
-
kzgProofs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
29467
|
-
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
29468
|
-
}>>;
|
|
29469
29060
|
KZGProof: import("@chainsafe/ssz").ByteVectorType;
|
|
29470
29061
|
Blob: import("@chainsafe/ssz").ByteVectorType;
|
|
29471
29062
|
Metadata: ContainerType<{
|
|
@@ -29489,6 +29080,40 @@ export declare const gloas: {
|
|
|
29489
29080
|
KzgCommitmentsInclusionProof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
29490
29081
|
KZGProofs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
29491
29082
|
ProposerLookahead: import("@chainsafe/ssz").VectorBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
29083
|
+
DataColumnSidecar: ContainerType<{
|
|
29084
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
29085
|
+
column: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
29086
|
+
kzgCommitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
29087
|
+
kzgProofs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
29088
|
+
signedBlockHeader: ContainerType<{
|
|
29089
|
+
message: ContainerType<{
|
|
29090
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
29091
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
29092
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
29093
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
29094
|
+
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
29095
|
+
}>;
|
|
29096
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
29097
|
+
}>;
|
|
29098
|
+
kzgCommitmentsInclusionProof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
29099
|
+
}>;
|
|
29100
|
+
DataColumnSidecars: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
29101
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
29102
|
+
column: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
29103
|
+
kzgCommitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
29104
|
+
kzgProofs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
29105
|
+
signedBlockHeader: ContainerType<{
|
|
29106
|
+
message: ContainerType<{
|
|
29107
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
29108
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
29109
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
29110
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
29111
|
+
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
29112
|
+
}>;
|
|
29113
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
29114
|
+
}>;
|
|
29115
|
+
kzgCommitmentsInclusionProof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
29116
|
+
}>>;
|
|
29492
29117
|
MatrixEntry: ContainerType<{
|
|
29493
29118
|
cell: import("@chainsafe/ssz").ByteVectorType;
|
|
29494
29119
|
kzgProof: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -30101,6 +29726,163 @@ export declare const gloas: {
|
|
|
30101
29726
|
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
30102
29727
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
30103
29728
|
}>;
|
|
29729
|
+
BeaconBlockBody: ContainerType<{
|
|
29730
|
+
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
29731
|
+
eth1Data: ContainerType<{
|
|
29732
|
+
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
29733
|
+
depositCount: import("@chainsafe/ssz").UintNumberType;
|
|
29734
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
29735
|
+
}>;
|
|
29736
|
+
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
29737
|
+
proposerSlashings: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
29738
|
+
signedHeader1: ContainerType<{
|
|
29739
|
+
message: ContainerType<{
|
|
29740
|
+
slot: import("@chainsafe/ssz").UintBigintType;
|
|
29741
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
29742
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
29743
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
29744
|
+
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
29745
|
+
}>;
|
|
29746
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
29747
|
+
}>;
|
|
29748
|
+
signedHeader2: ContainerType<{
|
|
29749
|
+
message: ContainerType<{
|
|
29750
|
+
slot: import("@chainsafe/ssz").UintBigintType;
|
|
29751
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
29752
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
29753
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
29754
|
+
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
29755
|
+
}>;
|
|
29756
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
29757
|
+
}>;
|
|
29758
|
+
}>>;
|
|
29759
|
+
attesterSlashings: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
29760
|
+
attestation1: ContainerType<{
|
|
29761
|
+
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
29762
|
+
data: ContainerType<{
|
|
29763
|
+
slot: import("@chainsafe/ssz").UintBigintType;
|
|
29764
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
29765
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
29766
|
+
source: ContainerType<{
|
|
29767
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
29768
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
29769
|
+
}>;
|
|
29770
|
+
target: ContainerType<{
|
|
29771
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
29772
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
29773
|
+
}>;
|
|
29774
|
+
}>;
|
|
29775
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
29776
|
+
}>;
|
|
29777
|
+
attestation2: ContainerType<{
|
|
29778
|
+
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
29779
|
+
data: ContainerType<{
|
|
29780
|
+
slot: import("@chainsafe/ssz").UintBigintType;
|
|
29781
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
29782
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
29783
|
+
source: ContainerType<{
|
|
29784
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
29785
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
29786
|
+
}>;
|
|
29787
|
+
target: ContainerType<{
|
|
29788
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
29789
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
29790
|
+
}>;
|
|
29791
|
+
}>;
|
|
29792
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
29793
|
+
}>;
|
|
29794
|
+
}>>;
|
|
29795
|
+
attestations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
29796
|
+
aggregationBits: import("@chainsafe/ssz").BitListType;
|
|
29797
|
+
data: ContainerType<{
|
|
29798
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
29799
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
29800
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
29801
|
+
source: ContainerType<{
|
|
29802
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
29803
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
29804
|
+
}>;
|
|
29805
|
+
target: ContainerType<{
|
|
29806
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
29807
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
29808
|
+
}>;
|
|
29809
|
+
}>;
|
|
29810
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
29811
|
+
committeeBits: import("@chainsafe/ssz").BitVectorType;
|
|
29812
|
+
}>>;
|
|
29813
|
+
deposits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
29814
|
+
proof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
29815
|
+
data: ContainerType<{
|
|
29816
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
29817
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
29818
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
29819
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
29820
|
+
}>;
|
|
29821
|
+
}>>;
|
|
29822
|
+
voluntaryExits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
29823
|
+
message: ContainerType<{
|
|
29824
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
29825
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
29826
|
+
}>;
|
|
29827
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
29828
|
+
}>>;
|
|
29829
|
+
syncAggregate: ContainerType<{
|
|
29830
|
+
syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
|
|
29831
|
+
syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
|
|
29832
|
+
}>;
|
|
29833
|
+
executionPayload: ContainerType<{
|
|
29834
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
29835
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
29836
|
+
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
29837
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
29838
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
29839
|
+
address: import("./index.ts").ExecutionAddressType;
|
|
29840
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
29841
|
+
}>>;
|
|
29842
|
+
transactions: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
29843
|
+
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
29844
|
+
feeRecipient: import("./index.ts").ExecutionAddressType;
|
|
29845
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
29846
|
+
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
29847
|
+
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
29848
|
+
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
29849
|
+
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
29850
|
+
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
29851
|
+
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
29852
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
29853
|
+
extraData: import("@chainsafe/ssz").ByteListType;
|
|
29854
|
+
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
29855
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
29856
|
+
}>;
|
|
29857
|
+
blsToExecutionChanges: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
29858
|
+
message: ContainerType<{
|
|
29859
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
29860
|
+
fromBlsPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
29861
|
+
toExecutionAddress: import("./index.ts").ExecutionAddressType;
|
|
29862
|
+
}>;
|
|
29863
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
29864
|
+
}>>;
|
|
29865
|
+
blobKzgCommitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
29866
|
+
executionRequests: ContainerType<{
|
|
29867
|
+
deposits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
29868
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
29869
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
29870
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
29871
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
29872
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
29873
|
+
}>>;
|
|
29874
|
+
withdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
29875
|
+
sourceAddress: import("./index.ts").ExecutionAddressType;
|
|
29876
|
+
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
29877
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
29878
|
+
}>>;
|
|
29879
|
+
consolidations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
29880
|
+
sourceAddress: import("./index.ts").ExecutionAddressType;
|
|
29881
|
+
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
29882
|
+
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
29883
|
+
}>>;
|
|
29884
|
+
}>;
|
|
29885
|
+
}>;
|
|
30104
29886
|
BlindedBeaconBlockBody: ContainerType<{
|
|
30105
29887
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
30106
29888
|
eth1Data: ContainerType<{
|