@lodestar/types 1.35.0-rc.1 → 1.35.0-rc.3
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 +532 -231
- package/lib/gloas/sszTypes.d.ts.map +1 -1
- package/lib/gloas/sszTypes.js +162 -3
- package/lib/gloas/sszTypes.js.map +1 -1
- package/lib/gloas/types.d.ts +13 -0
- package/lib/gloas/types.d.ts.map +1 -1
- package/lib/sszTypes.d.ts +952 -734
- package/lib/sszTypes.d.ts.map +1 -1
- package/lib/types.d.ts +1 -1
- package/lib/types.d.ts.map +1 -1
- package/package.json +3 -3
- package/src/gloas/sszTypes.ts +232 -3
- package/src/gloas/types.ts +14 -0
- package/src/types.ts +1 -1
package/lib/gloas/sszTypes.d.ts
CHANGED
|
@@ -1,67 +1,91 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { BitVectorType, ContainerType, ListBasicType, ListCompositeType, VectorCompositeType } from "@chainsafe/ssz";
|
|
2
|
+
export declare const BuilderPendingWithdrawal: ContainerType<{
|
|
3
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
4
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
5
|
+
builderIndex: import("@chainsafe/ssz").UintNumberType;
|
|
6
|
+
withdrawableEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
7
|
+
}>;
|
|
8
|
+
export declare const BuilderPendingPayment: ContainerType<{
|
|
9
|
+
weight: import("@chainsafe/ssz").UintBigintType;
|
|
10
|
+
withdrawal: ContainerType<{
|
|
11
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
12
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
13
|
+
builderIndex: import("@chainsafe/ssz").UintNumberType;
|
|
14
|
+
withdrawableEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
15
|
+
}>;
|
|
16
|
+
}>;
|
|
17
|
+
export declare const PayloadAttestationData: ContainerType<{
|
|
18
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
5
19
|
slot: import("@chainsafe/ssz").UintNumberType;
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
20
|
+
payloadPresent: import("@chainsafe/ssz").BooleanType;
|
|
21
|
+
blobDataAvailable: import("@chainsafe/ssz").BooleanType;
|
|
22
|
+
}>;
|
|
23
|
+
export declare const PayloadAttestation: ContainerType<{
|
|
24
|
+
aggregationBits: BitVectorType;
|
|
25
|
+
data: ContainerType<{
|
|
26
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
27
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
28
|
+
payloadPresent: import("@chainsafe/ssz").BooleanType;
|
|
29
|
+
blobDataAvailable: import("@chainsafe/ssz").BooleanType;
|
|
10
30
|
}>;
|
|
11
|
-
|
|
31
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
32
|
+
}>;
|
|
33
|
+
export declare const PayloadAttestationMessage: ContainerType<{
|
|
34
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
35
|
+
data: ContainerType<{
|
|
36
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
12
37
|
slot: import("@chainsafe/ssz").UintNumberType;
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
16
|
-
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
38
|
+
payloadPresent: import("@chainsafe/ssz").BooleanType;
|
|
39
|
+
blobDataAvailable: import("@chainsafe/ssz").BooleanType;
|
|
17
40
|
}>;
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
41
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
42
|
+
}>;
|
|
43
|
+
export declare const IndexedPayloadAttestation: ContainerType<{
|
|
44
|
+
attestingIndices: ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
45
|
+
data: ContainerType<{
|
|
46
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
47
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
48
|
+
payloadPresent: import("@chainsafe/ssz").BooleanType;
|
|
49
|
+
blobDataAvailable: import("@chainsafe/ssz").BooleanType;
|
|
25
50
|
}>;
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
51
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
52
|
+
}>;
|
|
53
|
+
export declare const ExecutionPayloadBid: ContainerType<{
|
|
54
|
+
parentBlockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
55
|
+
parentBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
56
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
57
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
58
|
+
gasLimit: import("@chainsafe/ssz").UintBigintType;
|
|
59
|
+
builderIndex: import("@chainsafe/ssz").UintNumberType;
|
|
60
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
61
|
+
value: import("@chainsafe/ssz").UintBigintType;
|
|
62
|
+
blobKzgCommitmentsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
63
|
+
}>;
|
|
64
|
+
export declare const SignedExecutionPayloadBid: ContainerType<{
|
|
65
|
+
message: ContainerType<{
|
|
66
|
+
parentBlockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
67
|
+
parentBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
29
68
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
previousEpochParticipation: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
37
|
-
currentEpochParticipation: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
38
|
-
justificationBits: import("@chainsafe/ssz").BitVectorType;
|
|
39
|
-
previousJustifiedCheckpoint: import("@chainsafe/ssz").ContainerType<{
|
|
40
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
41
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
42
|
-
}>;
|
|
43
|
-
currentJustifiedCheckpoint: import("@chainsafe/ssz").ContainerType<{
|
|
44
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
45
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
46
|
-
}>;
|
|
47
|
-
finalizedCheckpoint: import("@chainsafe/ssz").ContainerType<{
|
|
48
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
49
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
50
|
-
}>;
|
|
51
|
-
inactivityScores: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
52
|
-
currentSyncCommittee: import("@chainsafe/ssz").ContainerType<{
|
|
53
|
-
pubkeys: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
54
|
-
aggregatePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
55
|
-
}>;
|
|
56
|
-
nextSyncCommittee: import("@chainsafe/ssz").ContainerType<{
|
|
57
|
-
pubkeys: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
58
|
-
aggregatePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
69
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
70
|
+
gasLimit: import("@chainsafe/ssz").UintBigintType;
|
|
71
|
+
builderIndex: import("@chainsafe/ssz").UintNumberType;
|
|
72
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
73
|
+
value: import("@chainsafe/ssz").UintBigintType;
|
|
74
|
+
blobKzgCommitmentsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
59
75
|
}>;
|
|
60
|
-
|
|
76
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
77
|
+
}>;
|
|
78
|
+
export declare const ExecutionPayloadEnvelope: ContainerType<{
|
|
79
|
+
payload: ContainerType<{
|
|
61
80
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
62
81
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
63
|
-
|
|
64
|
-
|
|
82
|
+
withdrawals: ListCompositeType<ContainerType<{
|
|
83
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
84
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
85
|
+
address: import("../index.ts").ExecutionAddressType;
|
|
86
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
87
|
+
}>>;
|
|
88
|
+
transactions: ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
65
89
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
66
90
|
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
67
91
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -76,47 +100,233 @@ export declare const BeaconState: import("@chainsafe/ssz").ContainerType<{
|
|
|
76
100
|
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
77
101
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
78
102
|
}>;
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
103
|
+
executionRequests: ContainerType<{
|
|
104
|
+
deposits: ListCompositeType<ContainerType<{
|
|
105
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
106
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
107
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
108
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
109
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
110
|
+
}>>;
|
|
111
|
+
withdrawals: ListCompositeType<ContainerType<{
|
|
112
|
+
sourceAddress: import("../index.ts").ExecutionAddressType;
|
|
113
|
+
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
114
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
115
|
+
}>>;
|
|
116
|
+
consolidations: ListCompositeType<ContainerType<{
|
|
117
|
+
sourceAddress: import("../index.ts").ExecutionAddressType;
|
|
118
|
+
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
119
|
+
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
120
|
+
}>>;
|
|
121
|
+
}>;
|
|
122
|
+
builderIndex: import("@chainsafe/ssz").UintNumberType;
|
|
123
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
124
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
125
|
+
blobKzgCommitments: ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
126
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
127
|
+
}>;
|
|
128
|
+
export declare const SignedExecutionPayloadEnvelope: ContainerType<{
|
|
129
|
+
message: ContainerType<{
|
|
130
|
+
payload: ContainerType<{
|
|
131
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
132
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
133
|
+
withdrawals: ListCompositeType<ContainerType<{
|
|
134
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
135
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
136
|
+
address: import("../index.ts").ExecutionAddressType;
|
|
137
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
138
|
+
}>>;
|
|
139
|
+
transactions: ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
140
|
+
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
141
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
142
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
143
|
+
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
144
|
+
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
145
|
+
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
146
|
+
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
147
|
+
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
148
|
+
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
149
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
150
|
+
extraData: import("@chainsafe/ssz").ByteListType;
|
|
151
|
+
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
152
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
153
|
+
}>;
|
|
154
|
+
executionRequests: ContainerType<{
|
|
155
|
+
deposits: ListCompositeType<ContainerType<{
|
|
156
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
157
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
158
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
159
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
160
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
161
|
+
}>>;
|
|
162
|
+
withdrawals: ListCompositeType<ContainerType<{
|
|
163
|
+
sourceAddress: import("../index.ts").ExecutionAddressType;
|
|
164
|
+
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
165
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
166
|
+
}>>;
|
|
167
|
+
consolidations: ListCompositeType<ContainerType<{
|
|
168
|
+
sourceAddress: import("../index.ts").ExecutionAddressType;
|
|
169
|
+
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
170
|
+
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
171
|
+
}>>;
|
|
172
|
+
}>;
|
|
173
|
+
builderIndex: import("@chainsafe/ssz").UintNumberType;
|
|
174
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
175
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
176
|
+
blobKzgCommitments: ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
177
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
178
|
+
}>;
|
|
179
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
180
|
+
}>;
|
|
181
|
+
export declare const BeaconBlockBody: ContainerType<{
|
|
182
|
+
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
183
|
+
eth1Data: ContainerType<{
|
|
184
|
+
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
185
|
+
depositCount: import("@chainsafe/ssz").UintNumberType;
|
|
186
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
187
|
+
}>;
|
|
188
|
+
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
189
|
+
proposerSlashings: ListCompositeType<ContainerType<{
|
|
190
|
+
signedHeader1: ContainerType<{
|
|
191
|
+
message: ContainerType<{
|
|
192
|
+
slot: import("@chainsafe/ssz").UintBigintType;
|
|
193
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
194
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
195
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
196
|
+
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
197
|
+
}>;
|
|
198
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
199
|
+
}>;
|
|
200
|
+
signedHeader2: ContainerType<{
|
|
201
|
+
message: ContainerType<{
|
|
202
|
+
slot: import("@chainsafe/ssz").UintBigintType;
|
|
203
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
204
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
205
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
206
|
+
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
207
|
+
}>;
|
|
208
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
209
|
+
}>;
|
|
84
210
|
}>>;
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
211
|
+
attesterSlashings: ListCompositeType<ContainerType<{
|
|
212
|
+
attestation1: ContainerType<{
|
|
213
|
+
attestingIndices: ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
214
|
+
data: ContainerType<{
|
|
215
|
+
slot: import("@chainsafe/ssz").UintBigintType;
|
|
216
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
217
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
218
|
+
source: ContainerType<{
|
|
219
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
220
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
221
|
+
}>;
|
|
222
|
+
target: ContainerType<{
|
|
223
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
224
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
225
|
+
}>;
|
|
226
|
+
}>;
|
|
227
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
228
|
+
}>;
|
|
229
|
+
attestation2: ContainerType<{
|
|
230
|
+
attestingIndices: ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
231
|
+
data: ContainerType<{
|
|
232
|
+
slot: import("@chainsafe/ssz").UintBigintType;
|
|
233
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
234
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
235
|
+
source: ContainerType<{
|
|
236
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
237
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
238
|
+
}>;
|
|
239
|
+
target: ContainerType<{
|
|
240
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
241
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
242
|
+
}>;
|
|
243
|
+
}>;
|
|
244
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
245
|
+
}>;
|
|
246
|
+
}>>;
|
|
247
|
+
attestations: ListCompositeType<ContainerType<{
|
|
248
|
+
aggregationBits: import("@chainsafe/ssz").BitListType;
|
|
249
|
+
data: ContainerType<{
|
|
250
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
251
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
252
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
253
|
+
source: ContainerType<{
|
|
254
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
255
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
256
|
+
}>;
|
|
257
|
+
target: ContainerType<{
|
|
258
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
259
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
260
|
+
}>;
|
|
261
|
+
}>;
|
|
95
262
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
96
|
-
|
|
263
|
+
committeeBits: BitVectorType;
|
|
97
264
|
}>>;
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
265
|
+
deposits: ListCompositeType<ContainerType<{
|
|
266
|
+
proof: VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
267
|
+
data: ContainerType<{
|
|
268
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
269
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
270
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
271
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
272
|
+
}>;
|
|
102
273
|
}>>;
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
274
|
+
voluntaryExits: ListCompositeType<ContainerType<{
|
|
275
|
+
message: ContainerType<{
|
|
276
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
277
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
278
|
+
}>;
|
|
279
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
280
|
+
}>>;
|
|
281
|
+
syncAggregate: ContainerType<{
|
|
282
|
+
syncCommitteeBits: BitVectorType;
|
|
283
|
+
syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
|
|
284
|
+
}>;
|
|
285
|
+
blsToExecutionChanges: ListCompositeType<ContainerType<{
|
|
286
|
+
message: ContainerType<{
|
|
287
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
288
|
+
fromBlsPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
289
|
+
toExecutionAddress: import("../index.ts").ExecutionAddressType;
|
|
290
|
+
}>;
|
|
291
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
292
|
+
}>>;
|
|
293
|
+
signedExecutionPayloadBid: ContainerType<{
|
|
294
|
+
message: ContainerType<{
|
|
295
|
+
parentBlockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
296
|
+
parentBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
297
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
298
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
299
|
+
gasLimit: import("@chainsafe/ssz").UintBigintType;
|
|
300
|
+
builderIndex: import("@chainsafe/ssz").UintNumberType;
|
|
301
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
302
|
+
value: import("@chainsafe/ssz").UintBigintType;
|
|
303
|
+
blobKzgCommitmentsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
304
|
+
}>;
|
|
305
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
306
|
+
}>;
|
|
307
|
+
payloadAttestations: ListCompositeType<ContainerType<{
|
|
308
|
+
aggregationBits: BitVectorType;
|
|
309
|
+
data: ContainerType<{
|
|
310
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
311
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
312
|
+
payloadPresent: import("@chainsafe/ssz").BooleanType;
|
|
313
|
+
blobDataAvailable: import("@chainsafe/ssz").BooleanType;
|
|
314
|
+
}>;
|
|
315
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
106
316
|
}>>;
|
|
107
317
|
}>;
|
|
108
|
-
export declare const BeaconBlock:
|
|
109
|
-
body:
|
|
318
|
+
export declare const BeaconBlock: ContainerType<{
|
|
319
|
+
body: ContainerType<{
|
|
110
320
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
111
|
-
eth1Data:
|
|
321
|
+
eth1Data: ContainerType<{
|
|
112
322
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
113
323
|
depositCount: import("@chainsafe/ssz").UintNumberType;
|
|
114
324
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
115
325
|
}>;
|
|
116
326
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
117
|
-
proposerSlashings:
|
|
118
|
-
signedHeader1:
|
|
119
|
-
message:
|
|
327
|
+
proposerSlashings: ListCompositeType<ContainerType<{
|
|
328
|
+
signedHeader1: ContainerType<{
|
|
329
|
+
message: ContainerType<{
|
|
120
330
|
slot: import("@chainsafe/ssz").UintBigintType;
|
|
121
331
|
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
122
332
|
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -125,8 +335,8 @@ export declare const BeaconBlock: import("@chainsafe/ssz").ContainerType<{
|
|
|
125
335
|
}>;
|
|
126
336
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
127
337
|
}>;
|
|
128
|
-
signedHeader2:
|
|
129
|
-
message:
|
|
338
|
+
signedHeader2: ContainerType<{
|
|
339
|
+
message: ContainerType<{
|
|
130
340
|
slot: import("@chainsafe/ssz").UintBigintType;
|
|
131
341
|
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
132
342
|
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -136,35 +346,35 @@ export declare const BeaconBlock: import("@chainsafe/ssz").ContainerType<{
|
|
|
136
346
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
137
347
|
}>;
|
|
138
348
|
}>>;
|
|
139
|
-
attesterSlashings:
|
|
140
|
-
attestation1:
|
|
141
|
-
attestingIndices:
|
|
142
|
-
data:
|
|
349
|
+
attesterSlashings: ListCompositeType<ContainerType<{
|
|
350
|
+
attestation1: ContainerType<{
|
|
351
|
+
attestingIndices: ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
352
|
+
data: ContainerType<{
|
|
143
353
|
slot: import("@chainsafe/ssz").UintBigintType;
|
|
144
354
|
index: import("@chainsafe/ssz").UintBigintType;
|
|
145
355
|
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
146
|
-
source:
|
|
356
|
+
source: ContainerType<{
|
|
147
357
|
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
148
358
|
root: import("@chainsafe/ssz").ByteVectorType;
|
|
149
359
|
}>;
|
|
150
|
-
target:
|
|
360
|
+
target: ContainerType<{
|
|
151
361
|
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
152
362
|
root: import("@chainsafe/ssz").ByteVectorType;
|
|
153
363
|
}>;
|
|
154
364
|
}>;
|
|
155
365
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
156
366
|
}>;
|
|
157
|
-
attestation2:
|
|
158
|
-
attestingIndices:
|
|
159
|
-
data:
|
|
367
|
+
attestation2: ContainerType<{
|
|
368
|
+
attestingIndices: ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
369
|
+
data: ContainerType<{
|
|
160
370
|
slot: import("@chainsafe/ssz").UintBigintType;
|
|
161
371
|
index: import("@chainsafe/ssz").UintBigintType;
|
|
162
372
|
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
163
|
-
source:
|
|
373
|
+
source: ContainerType<{
|
|
164
374
|
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
165
375
|
root: import("@chainsafe/ssz").ByteVectorType;
|
|
166
376
|
}>;
|
|
167
|
-
target:
|
|
377
|
+
target: ContainerType<{
|
|
168
378
|
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
169
379
|
root: import("@chainsafe/ssz").ByteVectorType;
|
|
170
380
|
}>;
|
|
@@ -172,115 +382,95 @@ export declare const BeaconBlock: import("@chainsafe/ssz").ContainerType<{
|
|
|
172
382
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
173
383
|
}>;
|
|
174
384
|
}>>;
|
|
175
|
-
attestations:
|
|
385
|
+
attestations: ListCompositeType<ContainerType<{
|
|
176
386
|
aggregationBits: import("@chainsafe/ssz").BitListType;
|
|
177
|
-
data:
|
|
387
|
+
data: ContainerType<{
|
|
178
388
|
slot: import("@chainsafe/ssz").UintNumberType;
|
|
179
389
|
index: import("@chainsafe/ssz").UintNumberType;
|
|
180
390
|
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
181
|
-
source:
|
|
391
|
+
source: ContainerType<{
|
|
182
392
|
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
183
393
|
root: import("@chainsafe/ssz").ByteVectorType;
|
|
184
394
|
}>;
|
|
185
|
-
target:
|
|
395
|
+
target: ContainerType<{
|
|
186
396
|
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
187
397
|
root: import("@chainsafe/ssz").ByteVectorType;
|
|
188
398
|
}>;
|
|
189
399
|
}>;
|
|
190
400
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
191
|
-
committeeBits:
|
|
401
|
+
committeeBits: BitVectorType;
|
|
192
402
|
}>>;
|
|
193
|
-
deposits:
|
|
194
|
-
proof:
|
|
195
|
-
data:
|
|
403
|
+
deposits: ListCompositeType<ContainerType<{
|
|
404
|
+
proof: VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
405
|
+
data: ContainerType<{
|
|
196
406
|
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
197
407
|
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
198
408
|
amount: import("@chainsafe/ssz").UintNumberType;
|
|
199
409
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
200
410
|
}>;
|
|
201
411
|
}>>;
|
|
202
|
-
voluntaryExits:
|
|
203
|
-
message:
|
|
412
|
+
voluntaryExits: ListCompositeType<ContainerType<{
|
|
413
|
+
message: ContainerType<{
|
|
204
414
|
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
205
415
|
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
206
416
|
}>;
|
|
207
417
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
208
418
|
}>>;
|
|
209
|
-
syncAggregate:
|
|
210
|
-
syncCommitteeBits:
|
|
419
|
+
syncAggregate: ContainerType<{
|
|
420
|
+
syncCommitteeBits: BitVectorType;
|
|
211
421
|
syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
|
|
212
422
|
}>;
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
216
|
-
withdrawals: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ContainerType<{
|
|
217
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
218
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
219
|
-
address: import("../index.ts").ExecutionAddressType;
|
|
220
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
221
|
-
}>>;
|
|
222
|
-
transactions: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
223
|
-
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
224
|
-
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
225
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
226
|
-
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
227
|
-
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
228
|
-
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
229
|
-
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
230
|
-
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
231
|
-
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
232
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
233
|
-
extraData: import("@chainsafe/ssz").ByteListType;
|
|
234
|
-
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
235
|
-
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
236
|
-
}>;
|
|
237
|
-
blsToExecutionChanges: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ContainerType<{
|
|
238
|
-
message: import("@chainsafe/ssz").ContainerType<{
|
|
423
|
+
blsToExecutionChanges: ListCompositeType<ContainerType<{
|
|
424
|
+
message: ContainerType<{
|
|
239
425
|
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
240
426
|
fromBlsPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
241
427
|
toExecutionAddress: import("../index.ts").ExecutionAddressType;
|
|
242
428
|
}>;
|
|
243
429
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
244
430
|
}>>;
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
}>>;
|
|
259
|
-
consolidations: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ContainerType<{
|
|
260
|
-
sourceAddress: import("../index.ts").ExecutionAddressType;
|
|
261
|
-
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
262
|
-
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
263
|
-
}>>;
|
|
431
|
+
signedExecutionPayloadBid: ContainerType<{
|
|
432
|
+
message: ContainerType<{
|
|
433
|
+
parentBlockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
434
|
+
parentBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
435
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
436
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
437
|
+
gasLimit: import("@chainsafe/ssz").UintBigintType;
|
|
438
|
+
builderIndex: import("@chainsafe/ssz").UintNumberType;
|
|
439
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
440
|
+
value: import("@chainsafe/ssz").UintBigintType;
|
|
441
|
+
blobKzgCommitmentsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
442
|
+
}>;
|
|
443
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
264
444
|
}>;
|
|
445
|
+
payloadAttestations: ListCompositeType<ContainerType<{
|
|
446
|
+
aggregationBits: BitVectorType;
|
|
447
|
+
data: ContainerType<{
|
|
448
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
449
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
450
|
+
payloadPresent: import("@chainsafe/ssz").BooleanType;
|
|
451
|
+
blobDataAvailable: import("@chainsafe/ssz").BooleanType;
|
|
452
|
+
}>;
|
|
453
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
454
|
+
}>>;
|
|
265
455
|
}>;
|
|
266
456
|
slot: import("@chainsafe/ssz").UintNumberType;
|
|
267
457
|
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
268
458
|
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
269
459
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
270
460
|
}>;
|
|
271
|
-
export declare const SignedBeaconBlock:
|
|
272
|
-
message:
|
|
273
|
-
body:
|
|
461
|
+
export declare const SignedBeaconBlock: ContainerType<{
|
|
462
|
+
message: ContainerType<{
|
|
463
|
+
body: ContainerType<{
|
|
274
464
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
275
|
-
eth1Data:
|
|
465
|
+
eth1Data: ContainerType<{
|
|
276
466
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
277
467
|
depositCount: import("@chainsafe/ssz").UintNumberType;
|
|
278
468
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
279
469
|
}>;
|
|
280
470
|
graffiti: import("@chainsafe/ssz").ByteVectorType;
|
|
281
|
-
proposerSlashings:
|
|
282
|
-
signedHeader1:
|
|
283
|
-
message:
|
|
471
|
+
proposerSlashings: ListCompositeType<ContainerType<{
|
|
472
|
+
signedHeader1: ContainerType<{
|
|
473
|
+
message: ContainerType<{
|
|
284
474
|
slot: import("@chainsafe/ssz").UintBigintType;
|
|
285
475
|
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
286
476
|
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -289,8 +479,8 @@ export declare const SignedBeaconBlock: import("@chainsafe/ssz").ContainerType<{
|
|
|
289
479
|
}>;
|
|
290
480
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
291
481
|
}>;
|
|
292
|
-
signedHeader2:
|
|
293
|
-
message:
|
|
482
|
+
signedHeader2: ContainerType<{
|
|
483
|
+
message: ContainerType<{
|
|
294
484
|
slot: import("@chainsafe/ssz").UintBigintType;
|
|
295
485
|
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
296
486
|
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -300,35 +490,35 @@ export declare const SignedBeaconBlock: import("@chainsafe/ssz").ContainerType<{
|
|
|
300
490
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
301
491
|
}>;
|
|
302
492
|
}>>;
|
|
303
|
-
attesterSlashings:
|
|
304
|
-
attestation1:
|
|
305
|
-
attestingIndices:
|
|
306
|
-
data:
|
|
493
|
+
attesterSlashings: ListCompositeType<ContainerType<{
|
|
494
|
+
attestation1: ContainerType<{
|
|
495
|
+
attestingIndices: ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
496
|
+
data: ContainerType<{
|
|
307
497
|
slot: import("@chainsafe/ssz").UintBigintType;
|
|
308
498
|
index: import("@chainsafe/ssz").UintBigintType;
|
|
309
499
|
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
310
|
-
source:
|
|
500
|
+
source: ContainerType<{
|
|
311
501
|
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
312
502
|
root: import("@chainsafe/ssz").ByteVectorType;
|
|
313
503
|
}>;
|
|
314
|
-
target:
|
|
504
|
+
target: ContainerType<{
|
|
315
505
|
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
316
506
|
root: import("@chainsafe/ssz").ByteVectorType;
|
|
317
507
|
}>;
|
|
318
508
|
}>;
|
|
319
509
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
320
510
|
}>;
|
|
321
|
-
attestation2:
|
|
322
|
-
attestingIndices:
|
|
323
|
-
data:
|
|
511
|
+
attestation2: ContainerType<{
|
|
512
|
+
attestingIndices: ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
513
|
+
data: ContainerType<{
|
|
324
514
|
slot: import("@chainsafe/ssz").UintBigintType;
|
|
325
515
|
index: import("@chainsafe/ssz").UintBigintType;
|
|
326
516
|
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
327
|
-
source:
|
|
517
|
+
source: ContainerType<{
|
|
328
518
|
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
329
519
|
root: import("@chainsafe/ssz").ByteVectorType;
|
|
330
520
|
}>;
|
|
331
|
-
target:
|
|
521
|
+
target: ContainerType<{
|
|
332
522
|
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
333
523
|
root: import("@chainsafe/ssz").ByteVectorType;
|
|
334
524
|
}>;
|
|
@@ -336,96 +526,76 @@ export declare const SignedBeaconBlock: import("@chainsafe/ssz").ContainerType<{
|
|
|
336
526
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
337
527
|
}>;
|
|
338
528
|
}>>;
|
|
339
|
-
attestations:
|
|
529
|
+
attestations: ListCompositeType<ContainerType<{
|
|
340
530
|
aggregationBits: import("@chainsafe/ssz").BitListType;
|
|
341
|
-
data:
|
|
531
|
+
data: ContainerType<{
|
|
342
532
|
slot: import("@chainsafe/ssz").UintNumberType;
|
|
343
533
|
index: import("@chainsafe/ssz").UintNumberType;
|
|
344
534
|
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
345
|
-
source:
|
|
535
|
+
source: ContainerType<{
|
|
346
536
|
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
347
537
|
root: import("@chainsafe/ssz").ByteVectorType;
|
|
348
538
|
}>;
|
|
349
|
-
target:
|
|
539
|
+
target: ContainerType<{
|
|
350
540
|
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
351
541
|
root: import("@chainsafe/ssz").ByteVectorType;
|
|
352
542
|
}>;
|
|
353
543
|
}>;
|
|
354
544
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
355
|
-
committeeBits:
|
|
545
|
+
committeeBits: BitVectorType;
|
|
356
546
|
}>>;
|
|
357
|
-
deposits:
|
|
358
|
-
proof:
|
|
359
|
-
data:
|
|
547
|
+
deposits: ListCompositeType<ContainerType<{
|
|
548
|
+
proof: VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
549
|
+
data: ContainerType<{
|
|
360
550
|
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
361
551
|
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
362
552
|
amount: import("@chainsafe/ssz").UintNumberType;
|
|
363
553
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
364
554
|
}>;
|
|
365
555
|
}>>;
|
|
366
|
-
voluntaryExits:
|
|
367
|
-
message:
|
|
556
|
+
voluntaryExits: ListCompositeType<ContainerType<{
|
|
557
|
+
message: ContainerType<{
|
|
368
558
|
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
369
559
|
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
370
560
|
}>;
|
|
371
561
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
372
562
|
}>>;
|
|
373
|
-
syncAggregate:
|
|
374
|
-
syncCommitteeBits:
|
|
563
|
+
syncAggregate: ContainerType<{
|
|
564
|
+
syncCommitteeBits: BitVectorType;
|
|
375
565
|
syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
|
|
376
566
|
}>;
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
380
|
-
withdrawals: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ContainerType<{
|
|
381
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
382
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
383
|
-
address: import("../index.ts").ExecutionAddressType;
|
|
384
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
385
|
-
}>>;
|
|
386
|
-
transactions: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
387
|
-
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
388
|
-
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
389
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
390
|
-
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
391
|
-
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
392
|
-
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
393
|
-
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
394
|
-
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
395
|
-
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
396
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
397
|
-
extraData: import("@chainsafe/ssz").ByteListType;
|
|
398
|
-
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
399
|
-
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
400
|
-
}>;
|
|
401
|
-
blsToExecutionChanges: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ContainerType<{
|
|
402
|
-
message: import("@chainsafe/ssz").ContainerType<{
|
|
567
|
+
blsToExecutionChanges: ListCompositeType<ContainerType<{
|
|
568
|
+
message: ContainerType<{
|
|
403
569
|
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
404
570
|
fromBlsPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
405
571
|
toExecutionAddress: import("../index.ts").ExecutionAddressType;
|
|
406
572
|
}>;
|
|
407
573
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
408
574
|
}>>;
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
}>>;
|
|
423
|
-
consolidations: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ContainerType<{
|
|
424
|
-
sourceAddress: import("../index.ts").ExecutionAddressType;
|
|
425
|
-
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
426
|
-
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
427
|
-
}>>;
|
|
575
|
+
signedExecutionPayloadBid: ContainerType<{
|
|
576
|
+
message: ContainerType<{
|
|
577
|
+
parentBlockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
578
|
+
parentBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
579
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
580
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
581
|
+
gasLimit: import("@chainsafe/ssz").UintBigintType;
|
|
582
|
+
builderIndex: import("@chainsafe/ssz").UintNumberType;
|
|
583
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
584
|
+
value: import("@chainsafe/ssz").UintBigintType;
|
|
585
|
+
blobKzgCommitmentsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
586
|
+
}>;
|
|
587
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
428
588
|
}>;
|
|
589
|
+
payloadAttestations: ListCompositeType<ContainerType<{
|
|
590
|
+
aggregationBits: BitVectorType;
|
|
591
|
+
data: ContainerType<{
|
|
592
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
593
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
594
|
+
payloadPresent: import("@chainsafe/ssz").BooleanType;
|
|
595
|
+
blobDataAvailable: import("@chainsafe/ssz").BooleanType;
|
|
596
|
+
}>;
|
|
597
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
598
|
+
}>>;
|
|
429
599
|
}>;
|
|
430
600
|
slot: import("@chainsafe/ssz").UintNumberType;
|
|
431
601
|
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -434,4 +604,135 @@ export declare const SignedBeaconBlock: import("@chainsafe/ssz").ContainerType<{
|
|
|
434
604
|
}>;
|
|
435
605
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
436
606
|
}>;
|
|
607
|
+
export declare const BeaconState: ContainerType<{
|
|
608
|
+
genesisTime: import("@chainsafe/ssz").UintNumberType;
|
|
609
|
+
genesisValidatorsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
610
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
611
|
+
fork: ContainerType<{
|
|
612
|
+
previousVersion: import("@chainsafe/ssz").ByteVectorType;
|
|
613
|
+
currentVersion: import("@chainsafe/ssz").ByteVectorType;
|
|
614
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
615
|
+
}>;
|
|
616
|
+
latestBlockHeader: ContainerType<{
|
|
617
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
618
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
619
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
620
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
621
|
+
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
622
|
+
}>;
|
|
623
|
+
blockRoots: VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
624
|
+
stateRoots: VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
625
|
+
historicalRoots: ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
626
|
+
eth1Data: ContainerType<{
|
|
627
|
+
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
628
|
+
depositCount: import("@chainsafe/ssz").UintNumberType;
|
|
629
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
630
|
+
}>;
|
|
631
|
+
eth1DataVotes: ListCompositeType<ContainerType<{
|
|
632
|
+
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
633
|
+
depositCount: import("@chainsafe/ssz").UintNumberType;
|
|
634
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
635
|
+
}>>;
|
|
636
|
+
eth1DepositIndex: import("@chainsafe/ssz").UintNumberType;
|
|
637
|
+
validators: ListCompositeType<import("../phase0/validator.ts").ValidatorNodeStructType>;
|
|
638
|
+
balances: import("@chainsafe/ssz").ListUintNum64Type;
|
|
639
|
+
randaoMixes: VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
640
|
+
slashings: import("@chainsafe/ssz").VectorBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
641
|
+
previousEpochParticipation: ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
642
|
+
currentEpochParticipation: ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
643
|
+
justificationBits: BitVectorType;
|
|
644
|
+
previousJustifiedCheckpoint: ContainerType<{
|
|
645
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
646
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
647
|
+
}>;
|
|
648
|
+
currentJustifiedCheckpoint: ContainerType<{
|
|
649
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
650
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
651
|
+
}>;
|
|
652
|
+
finalizedCheckpoint: ContainerType<{
|
|
653
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
654
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
655
|
+
}>;
|
|
656
|
+
inactivityScores: ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
657
|
+
currentSyncCommittee: ContainerType<{
|
|
658
|
+
pubkeys: VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
659
|
+
aggregatePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
660
|
+
}>;
|
|
661
|
+
nextSyncCommittee: ContainerType<{
|
|
662
|
+
pubkeys: VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
663
|
+
aggregatePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
664
|
+
}>;
|
|
665
|
+
latestExecutionPayloadBid: ContainerType<{
|
|
666
|
+
parentBlockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
667
|
+
parentBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
668
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
669
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
670
|
+
gasLimit: import("@chainsafe/ssz").UintBigintType;
|
|
671
|
+
builderIndex: import("@chainsafe/ssz").UintNumberType;
|
|
672
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
673
|
+
value: import("@chainsafe/ssz").UintBigintType;
|
|
674
|
+
blobKzgCommitmentsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
675
|
+
}>;
|
|
676
|
+
nextWithdrawalIndex: import("@chainsafe/ssz").UintNumberType;
|
|
677
|
+
nextWithdrawalValidatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
678
|
+
historicalSummaries: ListCompositeType<ContainerType<{
|
|
679
|
+
blockSummaryRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
680
|
+
stateSummaryRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
681
|
+
}>>;
|
|
682
|
+
depositRequestsStartIndex: import("@chainsafe/ssz").UintBigintType;
|
|
683
|
+
depositBalanceToConsume: import("@chainsafe/ssz").UintBigintType;
|
|
684
|
+
exitBalanceToConsume: import("@chainsafe/ssz").UintBigintType;
|
|
685
|
+
earliestExitEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
686
|
+
consolidationBalanceToConsume: import("@chainsafe/ssz").UintBigintType;
|
|
687
|
+
earliestConsolidationEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
688
|
+
pendingDeposits: ListCompositeType<ContainerType<{
|
|
689
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
690
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
691
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
692
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
693
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
694
|
+
}>>;
|
|
695
|
+
pendingPartialWithdrawals: ListCompositeType<ContainerType<{
|
|
696
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
697
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
698
|
+
withdrawableEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
699
|
+
}>>;
|
|
700
|
+
pendingConsolidations: ListCompositeType<ContainerType<{
|
|
701
|
+
sourceIndex: import("@chainsafe/ssz").UintNumberType;
|
|
702
|
+
targetIndex: import("@chainsafe/ssz").UintNumberType;
|
|
703
|
+
}>>;
|
|
704
|
+
proposerLookahead: import("@chainsafe/ssz").VectorBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
705
|
+
executionPayloadAvailability: BitVectorType;
|
|
706
|
+
builderPendingPayments: VectorCompositeType<ContainerType<{
|
|
707
|
+
weight: import("@chainsafe/ssz").UintBigintType;
|
|
708
|
+
withdrawal: ContainerType<{
|
|
709
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
710
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
711
|
+
builderIndex: import("@chainsafe/ssz").UintNumberType;
|
|
712
|
+
withdrawableEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
713
|
+
}>;
|
|
714
|
+
}>>;
|
|
715
|
+
builderPendingWithdrawals: ListCompositeType<ContainerType<{
|
|
716
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
717
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
718
|
+
builderIndex: import("@chainsafe/ssz").UintNumberType;
|
|
719
|
+
withdrawableEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
720
|
+
}>>;
|
|
721
|
+
latestBlockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
722
|
+
latestWithdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
723
|
+
}>;
|
|
724
|
+
export declare const DataColumnSidecar: ContainerType<{
|
|
725
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
726
|
+
column: ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
727
|
+
kzgCommitments: ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
728
|
+
kzgProofs: ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
729
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
730
|
+
}>;
|
|
731
|
+
export declare const DataColumnSidecars: ListCompositeType<ContainerType<{
|
|
732
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
733
|
+
column: ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
734
|
+
kzgCommitments: ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
735
|
+
kzgProofs: ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
736
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
737
|
+
}>>;
|
|
437
738
|
//# sourceMappingURL=sszTypes.d.ts.map
|