@lodestar/types 1.31.0-rc.1 → 1.32.0-dev.0be30f63a9
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/fulu/sszTypes.d.ts +109 -1
- package/lib/fulu/sszTypes.js +9 -3
- package/lib/fulu/sszTypes.js.map +1 -1
- package/lib/fulu/types.d.ts +2 -0
- package/lib/sszTypes.d.ts +216 -212
- package/lib/types.d.ts +1 -1
- package/package.json +3 -3
package/lib/fulu/sszTypes.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ByteVectorType, ContainerType, ListBasicType, ListCompositeType, VectorCompositeType } from "@chainsafe/ssz";
|
|
1
|
+
import { ByteVectorType, ContainerType, ListBasicType, ListCompositeType, VectorBasicType, VectorCompositeType } from "@chainsafe/ssz";
|
|
2
2
|
export declare const Metadata: ContainerType<{
|
|
3
3
|
custodyGroupCount: import("@chainsafe/ssz").UintNumberType;
|
|
4
4
|
seqNumber: import("@chainsafe/ssz").UintBigintType;
|
|
@@ -9,6 +9,7 @@ export declare const Cell: ByteVectorType;
|
|
|
9
9
|
export declare const DataColumn: ListCompositeType<ByteVectorType>;
|
|
10
10
|
export declare const ExtendedMatrix: ListCompositeType<ByteVectorType>;
|
|
11
11
|
export declare const KzgCommitmentsInclusionProof: VectorCompositeType<ByteVectorType>;
|
|
12
|
+
export declare const ProposerLookahead: VectorBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
12
13
|
export declare const DataColumnSidecar: ContainerType<{
|
|
13
14
|
index: import("@chainsafe/ssz").UintNumberType;
|
|
14
15
|
column: ListCompositeType<ByteVectorType>;
|
|
@@ -62,4 +63,111 @@ export declare const DataColumnSidecarsByRangeRequest: ContainerType<{
|
|
|
62
63
|
count: import("@chainsafe/ssz").UintNumberType;
|
|
63
64
|
columns: ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
64
65
|
}>;
|
|
66
|
+
export declare const BeaconState: ContainerType<{
|
|
67
|
+
proposerLookahead: VectorBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
68
|
+
genesisTime: import("@chainsafe/ssz").UintNumberType;
|
|
69
|
+
genesisValidatorsRoot: ByteVectorType;
|
|
70
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
71
|
+
fork: ContainerType<{
|
|
72
|
+
previousVersion: ByteVectorType;
|
|
73
|
+
currentVersion: ByteVectorType;
|
|
74
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
75
|
+
}>;
|
|
76
|
+
latestBlockHeader: ContainerType<{
|
|
77
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
78
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
79
|
+
parentRoot: ByteVectorType;
|
|
80
|
+
stateRoot: ByteVectorType;
|
|
81
|
+
bodyRoot: ByteVectorType;
|
|
82
|
+
}>;
|
|
83
|
+
blockRoots: VectorCompositeType<ByteVectorType>;
|
|
84
|
+
stateRoots: VectorCompositeType<ByteVectorType>;
|
|
85
|
+
historicalRoots: ListCompositeType<ByteVectorType>;
|
|
86
|
+
eth1Data: ContainerType<{
|
|
87
|
+
depositRoot: ByteVectorType;
|
|
88
|
+
depositCount: import("@chainsafe/ssz").UintNumberType;
|
|
89
|
+
blockHash: ByteVectorType;
|
|
90
|
+
}>;
|
|
91
|
+
eth1DataVotes: ListCompositeType<ContainerType<{
|
|
92
|
+
depositRoot: ByteVectorType;
|
|
93
|
+
depositCount: import("@chainsafe/ssz").UintNumberType;
|
|
94
|
+
blockHash: ByteVectorType;
|
|
95
|
+
}>>;
|
|
96
|
+
eth1DepositIndex: import("@chainsafe/ssz").UintNumberType;
|
|
97
|
+
validators: ListCompositeType<import("../phase0/validator.js").ValidatorNodeStructType>;
|
|
98
|
+
balances: import("@chainsafe/ssz").ListUintNum64Type;
|
|
99
|
+
randaoMixes: VectorCompositeType<ByteVectorType>;
|
|
100
|
+
slashings: VectorBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
101
|
+
previousEpochParticipation: ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
102
|
+
currentEpochParticipation: ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
103
|
+
justificationBits: import("@chainsafe/ssz").BitVectorType;
|
|
104
|
+
previousJustifiedCheckpoint: ContainerType<{
|
|
105
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
106
|
+
root: ByteVectorType;
|
|
107
|
+
}>;
|
|
108
|
+
currentJustifiedCheckpoint: ContainerType<{
|
|
109
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
110
|
+
root: ByteVectorType;
|
|
111
|
+
}>;
|
|
112
|
+
finalizedCheckpoint: ContainerType<{
|
|
113
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
114
|
+
root: ByteVectorType;
|
|
115
|
+
}>;
|
|
116
|
+
inactivityScores: ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
117
|
+
currentSyncCommittee: ContainerType<{
|
|
118
|
+
pubkeys: VectorCompositeType<ByteVectorType>;
|
|
119
|
+
aggregatePubkey: ByteVectorType;
|
|
120
|
+
}>;
|
|
121
|
+
nextSyncCommittee: ContainerType<{
|
|
122
|
+
pubkeys: VectorCompositeType<ByteVectorType>;
|
|
123
|
+
aggregatePubkey: ByteVectorType;
|
|
124
|
+
}>;
|
|
125
|
+
latestExecutionPayloadHeader: ContainerType<{
|
|
126
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
127
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
128
|
+
withdrawalsRoot: ByteVectorType;
|
|
129
|
+
transactionsRoot: ByteVectorType;
|
|
130
|
+
parentHash: ByteVectorType;
|
|
131
|
+
feeRecipient: import("../utils/executionAddress.js").ExecutionAddressType;
|
|
132
|
+
stateRoot: ByteVectorType;
|
|
133
|
+
receiptsRoot: ByteVectorType;
|
|
134
|
+
logsBloom: ByteVectorType;
|
|
135
|
+
prevRandao: ByteVectorType;
|
|
136
|
+
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
137
|
+
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
138
|
+
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
139
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
140
|
+
extraData: import("@chainsafe/ssz").ByteListType;
|
|
141
|
+
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
142
|
+
blockHash: ByteVectorType;
|
|
143
|
+
}>;
|
|
144
|
+
nextWithdrawalIndex: import("@chainsafe/ssz").UintNumberType;
|
|
145
|
+
nextWithdrawalValidatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
146
|
+
historicalSummaries: ListCompositeType<ContainerType<{
|
|
147
|
+
blockSummaryRoot: ByteVectorType;
|
|
148
|
+
stateSummaryRoot: ByteVectorType;
|
|
149
|
+
}>>;
|
|
150
|
+
depositRequestsStartIndex: import("@chainsafe/ssz").UintBigintType;
|
|
151
|
+
depositBalanceToConsume: import("@chainsafe/ssz").UintBigintType;
|
|
152
|
+
exitBalanceToConsume: import("@chainsafe/ssz").UintBigintType;
|
|
153
|
+
earliestExitEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
154
|
+
consolidationBalanceToConsume: import("@chainsafe/ssz").UintBigintType;
|
|
155
|
+
earliestConsolidationEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
156
|
+
pendingDeposits: ListCompositeType<ContainerType<{
|
|
157
|
+
pubkey: ByteVectorType;
|
|
158
|
+
withdrawalCredentials: ByteVectorType;
|
|
159
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
160
|
+
signature: ByteVectorType;
|
|
161
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
162
|
+
}>>;
|
|
163
|
+
pendingPartialWithdrawals: ListCompositeType<ContainerType<{
|
|
164
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
165
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
166
|
+
withdrawableEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
167
|
+
}>>;
|
|
168
|
+
pendingConsolidations: ListCompositeType<ContainerType<{
|
|
169
|
+
sourceIndex: import("@chainsafe/ssz").UintNumberType;
|
|
170
|
+
targetIndex: import("@chainsafe/ssz").UintNumberType;
|
|
171
|
+
}>>;
|
|
172
|
+
}>;
|
|
65
173
|
//# sourceMappingURL=sszTypes.d.ts.map
|
package/lib/fulu/sszTypes.js
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
import { ByteVectorType, ContainerType, ListBasicType, ListCompositeType, VectorCompositeType } from "@chainsafe/ssz";
|
|
2
|
-
import { BYTES_PER_FIELD_ELEMENT, FIELD_ELEMENTS_PER_CELL, KZG_COMMITMENTS_INCLUSION_PROOF_DEPTH, MAX_BLOB_COMMITMENTS_PER_BLOCK, MAX_REQUEST_DATA_COLUMN_SIDECARS, NUMBER_OF_COLUMNS, } from "@lodestar/params";
|
|
1
|
+
import { ByteVectorType, ContainerType, ListBasicType, ListCompositeType, VectorBasicType, VectorCompositeType, } from "@chainsafe/ssz";
|
|
2
|
+
import { BYTES_PER_FIELD_ELEMENT, FIELD_ELEMENTS_PER_CELL, KZG_COMMITMENTS_INCLUSION_PROOF_DEPTH, MAX_BLOB_COMMITMENTS_PER_BLOCK, MAX_REQUEST_DATA_COLUMN_SIDECARS, MIN_SEED_LOOKAHEAD, NUMBER_OF_COLUMNS, SLOTS_PER_EPOCH, } from "@lodestar/params";
|
|
3
3
|
import { ssz as altairSsz } from "../altair/index.js";
|
|
4
4
|
import { ssz as denebSsz } from "../deneb/index.js";
|
|
5
|
+
import { ssz as electraSsz } from "../electra/index.js";
|
|
5
6
|
import { ssz as phase0Ssz } from "../phase0/index.js";
|
|
6
7
|
import { ssz as primitiveSsz } from "../primitive/index.js";
|
|
7
|
-
const { Root, ColumnIndex, RowIndex, Bytes32, Slot, UintNum64 } = primitiveSsz;
|
|
8
|
+
const { Root, ColumnIndex, RowIndex, Bytes32, Slot, UintNum64, ValidatorIndex } = primitiveSsz;
|
|
8
9
|
export const Metadata = new ContainerType({
|
|
9
10
|
...altairSsz.Metadata.fields,
|
|
10
11
|
custodyGroupCount: UintNum64,
|
|
@@ -13,6 +14,7 @@ export const Cell = new ByteVectorType(BYTES_PER_FIELD_ELEMENT * FIELD_ELEMENTS_
|
|
|
13
14
|
export const DataColumn = new ListCompositeType(Cell, MAX_BLOB_COMMITMENTS_PER_BLOCK);
|
|
14
15
|
export const ExtendedMatrix = new ListCompositeType(Cell, MAX_BLOB_COMMITMENTS_PER_BLOCK * NUMBER_OF_COLUMNS);
|
|
15
16
|
export const KzgCommitmentsInclusionProof = new VectorCompositeType(Bytes32, KZG_COMMITMENTS_INCLUSION_PROOF_DEPTH);
|
|
17
|
+
export const ProposerLookahead = new VectorBasicType(ValidatorIndex, (MIN_SEED_LOOKAHEAD + 1) * SLOTS_PER_EPOCH);
|
|
16
18
|
export const DataColumnSidecar = new ContainerType({
|
|
17
19
|
index: ColumnIndex,
|
|
18
20
|
column: DataColumn,
|
|
@@ -38,4 +40,8 @@ export const DataColumnSidecarsByRangeRequest = new ContainerType({
|
|
|
38
40
|
count: UintNum64,
|
|
39
41
|
columns: new ListBasicType(ColumnIndex, NUMBER_OF_COLUMNS),
|
|
40
42
|
}, { typeName: "DataColumnSidecarsByRangeRequest", jsonCase: "eth2" });
|
|
43
|
+
export const BeaconState = new ContainerType({
|
|
44
|
+
...electraSsz.BeaconState.fields,
|
|
45
|
+
proposerLookahead: ProposerLookahead, // New in FULU:EIP7917
|
|
46
|
+
}, { typeName: "BeaconState", jsonCase: "eth2" });
|
|
41
47
|
//# sourceMappingURL=sszTypes.js.map
|
package/lib/fulu/sszTypes.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sszTypes.js","sourceRoot":"","sources":["../../src/fulu/sszTypes.ts"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"sszTypes.js","sourceRoot":"","sources":["../../src/fulu/sszTypes.ts"],"names":[],"mappings":"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"}
|
package/lib/fulu/types.d.ts
CHANGED
|
@@ -11,4 +11,6 @@ export type MatrixEntry = ValueOf<typeof ssz.MatrixEntry>;
|
|
|
11
11
|
export type DataColumnIdentifier = ValueOf<typeof ssz.DataColumnIdentifier>;
|
|
12
12
|
export type DataColumnSidecarsByRootRequest = ValueOf<typeof ssz.DataColumnSidecarsByRootRequest>;
|
|
13
13
|
export type DataColumnSidecarsByRangeRequest = ValueOf<typeof ssz.DataColumnSidecarsByRangeRequest>;
|
|
14
|
+
export type BeaconState = ValueOf<typeof ssz.BeaconState>;
|
|
15
|
+
export type ProposerLookahead = ValueOf<typeof ssz.ProposerLookahead>;
|
|
14
16
|
//# sourceMappingURL=types.d.ts.map
|
package/lib/sszTypes.d.ts
CHANGED
|
@@ -10257,6 +10257,7 @@ declare const typesByFork: {
|
|
|
10257
10257
|
DataColumn: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
10258
10258
|
ExtendedMatrix: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
10259
10259
|
KzgCommitmentsInclusionProof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
10260
|
+
ProposerLookahead: import("@chainsafe/ssz").VectorBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
10260
10261
|
DataColumnSidecar: ContainerType<{
|
|
10261
10262
|
index: import("@chainsafe/ssz").UintNumberType;
|
|
10262
10263
|
column: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
@@ -10310,6 +10311,113 @@ declare const typesByFork: {
|
|
|
10310
10311
|
count: import("@chainsafe/ssz").UintNumberType;
|
|
10311
10312
|
columns: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
10312
10313
|
}>;
|
|
10314
|
+
BeaconState: ContainerType<{
|
|
10315
|
+
proposerLookahead: import("@chainsafe/ssz").VectorBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
10316
|
+
genesisTime: import("@chainsafe/ssz").UintNumberType;
|
|
10317
|
+
genesisValidatorsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10318
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
10319
|
+
fork: ContainerType<{
|
|
10320
|
+
previousVersion: import("@chainsafe/ssz").ByteVectorType;
|
|
10321
|
+
currentVersion: import("@chainsafe/ssz").ByteVectorType;
|
|
10322
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
10323
|
+
}>;
|
|
10324
|
+
latestBlockHeader: ContainerType<{
|
|
10325
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
10326
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
10327
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10328
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10329
|
+
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10330
|
+
}>;
|
|
10331
|
+
blockRoots: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
10332
|
+
stateRoots: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
10333
|
+
historicalRoots: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
10334
|
+
eth1Data: ContainerType<{
|
|
10335
|
+
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10336
|
+
depositCount: import("@chainsafe/ssz").UintNumberType;
|
|
10337
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
10338
|
+
}>;
|
|
10339
|
+
eth1DataVotes: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
10340
|
+
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10341
|
+
depositCount: import("@chainsafe/ssz").UintNumberType;
|
|
10342
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
10343
|
+
}>>;
|
|
10344
|
+
eth1DepositIndex: import("@chainsafe/ssz").UintNumberType;
|
|
10345
|
+
validators: import("@chainsafe/ssz").ListCompositeType<import("./phase0/validator.js").ValidatorNodeStructType>;
|
|
10346
|
+
balances: import("@chainsafe/ssz").ListUintNum64Type;
|
|
10347
|
+
randaoMixes: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
10348
|
+
slashings: import("@chainsafe/ssz").VectorBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
10349
|
+
previousEpochParticipation: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
10350
|
+
currentEpochParticipation: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
10351
|
+
justificationBits: import("@chainsafe/ssz").BitVectorType;
|
|
10352
|
+
previousJustifiedCheckpoint: ContainerType<{
|
|
10353
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
10354
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
10355
|
+
}>;
|
|
10356
|
+
currentJustifiedCheckpoint: ContainerType<{
|
|
10357
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
10358
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
10359
|
+
}>;
|
|
10360
|
+
finalizedCheckpoint: ContainerType<{
|
|
10361
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
10362
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
10363
|
+
}>;
|
|
10364
|
+
inactivityScores: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
10365
|
+
currentSyncCommittee: ContainerType<{
|
|
10366
|
+
pubkeys: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
10367
|
+
aggregatePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
10368
|
+
}>;
|
|
10369
|
+
nextSyncCommittee: ContainerType<{
|
|
10370
|
+
pubkeys: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
10371
|
+
aggregatePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
10372
|
+
}>;
|
|
10373
|
+
latestExecutionPayloadHeader: ContainerType<{
|
|
10374
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
10375
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
10376
|
+
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10377
|
+
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10378
|
+
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
10379
|
+
feeRecipient: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
10380
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10381
|
+
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10382
|
+
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
10383
|
+
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
10384
|
+
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
10385
|
+
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
10386
|
+
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
10387
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
10388
|
+
extraData: import("@chainsafe/ssz").ByteListType;
|
|
10389
|
+
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
10390
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
10391
|
+
}>;
|
|
10392
|
+
nextWithdrawalIndex: import("@chainsafe/ssz").UintNumberType;
|
|
10393
|
+
nextWithdrawalValidatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
10394
|
+
historicalSummaries: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
10395
|
+
blockSummaryRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10396
|
+
stateSummaryRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
10397
|
+
}>>;
|
|
10398
|
+
depositRequestsStartIndex: import("@chainsafe/ssz").UintBigintType;
|
|
10399
|
+
depositBalanceToConsume: import("@chainsafe/ssz").UintBigintType;
|
|
10400
|
+
exitBalanceToConsume: import("@chainsafe/ssz").UintBigintType;
|
|
10401
|
+
earliestExitEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
10402
|
+
consolidationBalanceToConsume: import("@chainsafe/ssz").UintBigintType;
|
|
10403
|
+
earliestConsolidationEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
10404
|
+
pendingDeposits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
10405
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
10406
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
10407
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
10408
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
10409
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
10410
|
+
}>>;
|
|
10411
|
+
pendingPartialWithdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
10412
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
10413
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
10414
|
+
withdrawableEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
10415
|
+
}>>;
|
|
10416
|
+
pendingConsolidations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
10417
|
+
sourceIndex: import("@chainsafe/ssz").UintNumberType;
|
|
10418
|
+
targetIndex: import("@chainsafe/ssz").UintNumberType;
|
|
10419
|
+
}>>;
|
|
10420
|
+
}>;
|
|
10313
10421
|
AggregationBits: import("@chainsafe/ssz").BitListType;
|
|
10314
10422
|
CommitteeBits: import("@chainsafe/ssz").BitVectorType;
|
|
10315
10423
|
AttestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
@@ -11640,112 +11748,6 @@ declare const typesByFork: {
|
|
|
11640
11748
|
sourceIndex: import("@chainsafe/ssz").UintNumberType;
|
|
11641
11749
|
targetIndex: import("@chainsafe/ssz").UintNumberType;
|
|
11642
11750
|
}>>;
|
|
11643
|
-
BeaconState: ContainerType<{
|
|
11644
|
-
genesisTime: import("@chainsafe/ssz").UintNumberType;
|
|
11645
|
-
genesisValidatorsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
11646
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
11647
|
-
fork: ContainerType<{
|
|
11648
|
-
previousVersion: import("@chainsafe/ssz").ByteVectorType;
|
|
11649
|
-
currentVersion: import("@chainsafe/ssz").ByteVectorType;
|
|
11650
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
11651
|
-
}>;
|
|
11652
|
-
latestBlockHeader: ContainerType<{
|
|
11653
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
11654
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
11655
|
-
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
11656
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
11657
|
-
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
11658
|
-
}>;
|
|
11659
|
-
blockRoots: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
11660
|
-
stateRoots: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
11661
|
-
historicalRoots: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
11662
|
-
eth1Data: ContainerType<{
|
|
11663
|
-
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
11664
|
-
depositCount: import("@chainsafe/ssz").UintNumberType;
|
|
11665
|
-
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
11666
|
-
}>;
|
|
11667
|
-
eth1DataVotes: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
11668
|
-
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
11669
|
-
depositCount: import("@chainsafe/ssz").UintNumberType;
|
|
11670
|
-
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
11671
|
-
}>>;
|
|
11672
|
-
eth1DepositIndex: import("@chainsafe/ssz").UintNumberType;
|
|
11673
|
-
validators: import("@chainsafe/ssz").ListCompositeType<import("./phase0/validator.js").ValidatorNodeStructType>;
|
|
11674
|
-
balances: import("@chainsafe/ssz").ListUintNum64Type;
|
|
11675
|
-
randaoMixes: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
11676
|
-
slashings: import("@chainsafe/ssz").VectorBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
11677
|
-
previousEpochParticipation: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
11678
|
-
currentEpochParticipation: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
11679
|
-
justificationBits: import("@chainsafe/ssz").BitVectorType;
|
|
11680
|
-
previousJustifiedCheckpoint: ContainerType<{
|
|
11681
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
11682
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
11683
|
-
}>;
|
|
11684
|
-
currentJustifiedCheckpoint: ContainerType<{
|
|
11685
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
11686
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
11687
|
-
}>;
|
|
11688
|
-
finalizedCheckpoint: ContainerType<{
|
|
11689
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
11690
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
11691
|
-
}>;
|
|
11692
|
-
inactivityScores: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
11693
|
-
currentSyncCommittee: ContainerType<{
|
|
11694
|
-
pubkeys: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
11695
|
-
aggregatePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
11696
|
-
}>;
|
|
11697
|
-
nextSyncCommittee: ContainerType<{
|
|
11698
|
-
pubkeys: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
11699
|
-
aggregatePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
11700
|
-
}>;
|
|
11701
|
-
latestExecutionPayloadHeader: ContainerType<{
|
|
11702
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
11703
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
11704
|
-
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
11705
|
-
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
11706
|
-
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
11707
|
-
feeRecipient: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
11708
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
11709
|
-
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
11710
|
-
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
11711
|
-
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
11712
|
-
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
11713
|
-
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
11714
|
-
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
11715
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
11716
|
-
extraData: import("@chainsafe/ssz").ByteListType;
|
|
11717
|
-
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
11718
|
-
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
11719
|
-
}>;
|
|
11720
|
-
nextWithdrawalIndex: import("@chainsafe/ssz").UintNumberType;
|
|
11721
|
-
nextWithdrawalValidatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
11722
|
-
historicalSummaries: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
11723
|
-
blockSummaryRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
11724
|
-
stateSummaryRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
11725
|
-
}>>;
|
|
11726
|
-
depositRequestsStartIndex: import("@chainsafe/ssz").UintBigintType;
|
|
11727
|
-
depositBalanceToConsume: import("@chainsafe/ssz").UintBigintType;
|
|
11728
|
-
exitBalanceToConsume: import("@chainsafe/ssz").UintBigintType;
|
|
11729
|
-
earliestExitEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
11730
|
-
consolidationBalanceToConsume: import("@chainsafe/ssz").UintBigintType;
|
|
11731
|
-
earliestConsolidationEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
11732
|
-
pendingDeposits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
11733
|
-
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
11734
|
-
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
11735
|
-
amount: import("@chainsafe/ssz").UintNumberType;
|
|
11736
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
11737
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
11738
|
-
}>>;
|
|
11739
|
-
pendingPartialWithdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
11740
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
11741
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
11742
|
-
withdrawableEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
11743
|
-
}>>;
|
|
11744
|
-
pendingConsolidations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
11745
|
-
sourceIndex: import("@chainsafe/ssz").UintNumberType;
|
|
11746
|
-
targetIndex: import("@chainsafe/ssz").UintNumberType;
|
|
11747
|
-
}>>;
|
|
11748
|
-
}>;
|
|
11749
11751
|
LightClientBootstrap: ContainerType<{
|
|
11750
11752
|
header: ContainerType<{
|
|
11751
11753
|
beacon: ContainerType<{
|
|
@@ -23198,6 +23200,7 @@ export declare const fulu: {
|
|
|
23198
23200
|
DataColumn: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
23199
23201
|
ExtendedMatrix: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
23200
23202
|
KzgCommitmentsInclusionProof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
23203
|
+
ProposerLookahead: import("@chainsafe/ssz").VectorBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
23201
23204
|
DataColumnSidecar: ContainerType<{
|
|
23202
23205
|
index: import("@chainsafe/ssz").UintNumberType;
|
|
23203
23206
|
column: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
@@ -23251,6 +23254,113 @@ export declare const fulu: {
|
|
|
23251
23254
|
count: import("@chainsafe/ssz").UintNumberType;
|
|
23252
23255
|
columns: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
23253
23256
|
}>;
|
|
23257
|
+
BeaconState: ContainerType<{
|
|
23258
|
+
proposerLookahead: import("@chainsafe/ssz").VectorBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
23259
|
+
genesisTime: import("@chainsafe/ssz").UintNumberType;
|
|
23260
|
+
genesisValidatorsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23261
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
23262
|
+
fork: ContainerType<{
|
|
23263
|
+
previousVersion: import("@chainsafe/ssz").ByteVectorType;
|
|
23264
|
+
currentVersion: import("@chainsafe/ssz").ByteVectorType;
|
|
23265
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
23266
|
+
}>;
|
|
23267
|
+
latestBlockHeader: ContainerType<{
|
|
23268
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
23269
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
23270
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23271
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23272
|
+
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23273
|
+
}>;
|
|
23274
|
+
blockRoots: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
23275
|
+
stateRoots: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
23276
|
+
historicalRoots: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
23277
|
+
eth1Data: ContainerType<{
|
|
23278
|
+
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23279
|
+
depositCount: import("@chainsafe/ssz").UintNumberType;
|
|
23280
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
23281
|
+
}>;
|
|
23282
|
+
eth1DataVotes: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
23283
|
+
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23284
|
+
depositCount: import("@chainsafe/ssz").UintNumberType;
|
|
23285
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
23286
|
+
}>>;
|
|
23287
|
+
eth1DepositIndex: import("@chainsafe/ssz").UintNumberType;
|
|
23288
|
+
validators: import("@chainsafe/ssz").ListCompositeType<import("./phase0/validator.js").ValidatorNodeStructType>;
|
|
23289
|
+
balances: import("@chainsafe/ssz").ListUintNum64Type;
|
|
23290
|
+
randaoMixes: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
23291
|
+
slashings: import("@chainsafe/ssz").VectorBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
23292
|
+
previousEpochParticipation: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
23293
|
+
currentEpochParticipation: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
23294
|
+
justificationBits: import("@chainsafe/ssz").BitVectorType;
|
|
23295
|
+
previousJustifiedCheckpoint: ContainerType<{
|
|
23296
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
23297
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
23298
|
+
}>;
|
|
23299
|
+
currentJustifiedCheckpoint: ContainerType<{
|
|
23300
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
23301
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
23302
|
+
}>;
|
|
23303
|
+
finalizedCheckpoint: ContainerType<{
|
|
23304
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
23305
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
23306
|
+
}>;
|
|
23307
|
+
inactivityScores: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
23308
|
+
currentSyncCommittee: ContainerType<{
|
|
23309
|
+
pubkeys: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
23310
|
+
aggregatePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
23311
|
+
}>;
|
|
23312
|
+
nextSyncCommittee: ContainerType<{
|
|
23313
|
+
pubkeys: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
23314
|
+
aggregatePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
23315
|
+
}>;
|
|
23316
|
+
latestExecutionPayloadHeader: ContainerType<{
|
|
23317
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
23318
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
23319
|
+
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23320
|
+
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23321
|
+
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
23322
|
+
feeRecipient: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
23323
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23324
|
+
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23325
|
+
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
23326
|
+
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
23327
|
+
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
23328
|
+
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
23329
|
+
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
23330
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
23331
|
+
extraData: import("@chainsafe/ssz").ByteListType;
|
|
23332
|
+
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
23333
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
23334
|
+
}>;
|
|
23335
|
+
nextWithdrawalIndex: import("@chainsafe/ssz").UintNumberType;
|
|
23336
|
+
nextWithdrawalValidatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
23337
|
+
historicalSummaries: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
23338
|
+
blockSummaryRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23339
|
+
stateSummaryRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
23340
|
+
}>>;
|
|
23341
|
+
depositRequestsStartIndex: import("@chainsafe/ssz").UintBigintType;
|
|
23342
|
+
depositBalanceToConsume: import("@chainsafe/ssz").UintBigintType;
|
|
23343
|
+
exitBalanceToConsume: import("@chainsafe/ssz").UintBigintType;
|
|
23344
|
+
earliestExitEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
23345
|
+
consolidationBalanceToConsume: import("@chainsafe/ssz").UintBigintType;
|
|
23346
|
+
earliestConsolidationEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
23347
|
+
pendingDeposits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
23348
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
23349
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
23350
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
23351
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
23352
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
23353
|
+
}>>;
|
|
23354
|
+
pendingPartialWithdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
23355
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
23356
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
23357
|
+
withdrawableEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
23358
|
+
}>>;
|
|
23359
|
+
pendingConsolidations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
23360
|
+
sourceIndex: import("@chainsafe/ssz").UintNumberType;
|
|
23361
|
+
targetIndex: import("@chainsafe/ssz").UintNumberType;
|
|
23362
|
+
}>>;
|
|
23363
|
+
}>;
|
|
23254
23364
|
AggregationBits: import("@chainsafe/ssz").BitListType;
|
|
23255
23365
|
CommitteeBits: import("@chainsafe/ssz").BitVectorType;
|
|
23256
23366
|
AttestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
@@ -24581,112 +24691,6 @@ export declare const fulu: {
|
|
|
24581
24691
|
sourceIndex: import("@chainsafe/ssz").UintNumberType;
|
|
24582
24692
|
targetIndex: import("@chainsafe/ssz").UintNumberType;
|
|
24583
24693
|
}>>;
|
|
24584
|
-
BeaconState: ContainerType<{
|
|
24585
|
-
genesisTime: import("@chainsafe/ssz").UintNumberType;
|
|
24586
|
-
genesisValidatorsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
24587
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
24588
|
-
fork: ContainerType<{
|
|
24589
|
-
previousVersion: import("@chainsafe/ssz").ByteVectorType;
|
|
24590
|
-
currentVersion: import("@chainsafe/ssz").ByteVectorType;
|
|
24591
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
24592
|
-
}>;
|
|
24593
|
-
latestBlockHeader: ContainerType<{
|
|
24594
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
24595
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
24596
|
-
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
24597
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
24598
|
-
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
24599
|
-
}>;
|
|
24600
|
-
blockRoots: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
24601
|
-
stateRoots: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
24602
|
-
historicalRoots: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
24603
|
-
eth1Data: ContainerType<{
|
|
24604
|
-
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
24605
|
-
depositCount: import("@chainsafe/ssz").UintNumberType;
|
|
24606
|
-
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
24607
|
-
}>;
|
|
24608
|
-
eth1DataVotes: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
24609
|
-
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
24610
|
-
depositCount: import("@chainsafe/ssz").UintNumberType;
|
|
24611
|
-
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
24612
|
-
}>>;
|
|
24613
|
-
eth1DepositIndex: import("@chainsafe/ssz").UintNumberType;
|
|
24614
|
-
validators: import("@chainsafe/ssz").ListCompositeType<import("./phase0/validator.js").ValidatorNodeStructType>;
|
|
24615
|
-
balances: import("@chainsafe/ssz").ListUintNum64Type;
|
|
24616
|
-
randaoMixes: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
24617
|
-
slashings: import("@chainsafe/ssz").VectorBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
24618
|
-
previousEpochParticipation: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
24619
|
-
currentEpochParticipation: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
24620
|
-
justificationBits: import("@chainsafe/ssz").BitVectorType;
|
|
24621
|
-
previousJustifiedCheckpoint: ContainerType<{
|
|
24622
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
24623
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
24624
|
-
}>;
|
|
24625
|
-
currentJustifiedCheckpoint: ContainerType<{
|
|
24626
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
24627
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
24628
|
-
}>;
|
|
24629
|
-
finalizedCheckpoint: ContainerType<{
|
|
24630
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
24631
|
-
root: import("@chainsafe/ssz").ByteVectorType;
|
|
24632
|
-
}>;
|
|
24633
|
-
inactivityScores: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
24634
|
-
currentSyncCommittee: ContainerType<{
|
|
24635
|
-
pubkeys: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
24636
|
-
aggregatePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
24637
|
-
}>;
|
|
24638
|
-
nextSyncCommittee: ContainerType<{
|
|
24639
|
-
pubkeys: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
24640
|
-
aggregatePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
24641
|
-
}>;
|
|
24642
|
-
latestExecutionPayloadHeader: ContainerType<{
|
|
24643
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
24644
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
24645
|
-
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
24646
|
-
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
24647
|
-
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
24648
|
-
feeRecipient: import("./utils/executionAddress.js").ExecutionAddressType;
|
|
24649
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
24650
|
-
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
24651
|
-
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
24652
|
-
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
24653
|
-
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
24654
|
-
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
24655
|
-
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
24656
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
24657
|
-
extraData: import("@chainsafe/ssz").ByteListType;
|
|
24658
|
-
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
24659
|
-
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
24660
|
-
}>;
|
|
24661
|
-
nextWithdrawalIndex: import("@chainsafe/ssz").UintNumberType;
|
|
24662
|
-
nextWithdrawalValidatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
24663
|
-
historicalSummaries: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
24664
|
-
blockSummaryRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
24665
|
-
stateSummaryRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
24666
|
-
}>>;
|
|
24667
|
-
depositRequestsStartIndex: import("@chainsafe/ssz").UintBigintType;
|
|
24668
|
-
depositBalanceToConsume: import("@chainsafe/ssz").UintBigintType;
|
|
24669
|
-
exitBalanceToConsume: import("@chainsafe/ssz").UintBigintType;
|
|
24670
|
-
earliestExitEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
24671
|
-
consolidationBalanceToConsume: import("@chainsafe/ssz").UintBigintType;
|
|
24672
|
-
earliestConsolidationEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
24673
|
-
pendingDeposits: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
24674
|
-
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
24675
|
-
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
24676
|
-
amount: import("@chainsafe/ssz").UintNumberType;
|
|
24677
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
24678
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
24679
|
-
}>>;
|
|
24680
|
-
pendingPartialWithdrawals: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
24681
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
24682
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
24683
|
-
withdrawableEpoch: import("@chainsafe/ssz").UintNumberType;
|
|
24684
|
-
}>>;
|
|
24685
|
-
pendingConsolidations: import("@chainsafe/ssz").ListCompositeType<ContainerType<{
|
|
24686
|
-
sourceIndex: import("@chainsafe/ssz").UintNumberType;
|
|
24687
|
-
targetIndex: import("@chainsafe/ssz").UintNumberType;
|
|
24688
|
-
}>>;
|
|
24689
|
-
}>;
|
|
24690
24694
|
LightClientBootstrap: ContainerType<{
|
|
24691
24695
|
header: ContainerType<{
|
|
24692
24696
|
beacon: ContainerType<{
|
package/lib/types.d.ts
CHANGED
|
@@ -225,7 +225,7 @@ type TypesByFork = {
|
|
|
225
225
|
SignedBeaconBlockHeader: phase0.SignedBeaconBlockHeader;
|
|
226
226
|
BeaconBlock: electra.BeaconBlock;
|
|
227
227
|
BeaconBlockBody: electra.BeaconBlockBody;
|
|
228
|
-
BeaconState:
|
|
228
|
+
BeaconState: fulu.BeaconState;
|
|
229
229
|
SignedBeaconBlock: electra.SignedBeaconBlock;
|
|
230
230
|
Metadata: fulu.Metadata;
|
|
231
231
|
LightClientHeader: deneb.LightClientHeader;
|
package/package.json
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"bugs": {
|
|
12
12
|
"url": "https://github.com/ChainSafe/lodestar/issues"
|
|
13
13
|
},
|
|
14
|
-
"version": "1.
|
|
14
|
+
"version": "1.32.0-dev.0be30f63a9",
|
|
15
15
|
"type": "module",
|
|
16
16
|
"exports": {
|
|
17
17
|
".": {
|
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
"types": "lib/index.d.ts",
|
|
70
70
|
"dependencies": {
|
|
71
71
|
"@chainsafe/ssz": "^1.2.1",
|
|
72
|
-
"@lodestar/params": "1.
|
|
72
|
+
"@lodestar/params": "1.32.0-dev.0be30f63a9",
|
|
73
73
|
"ethereum-cryptography": "^2.0.0"
|
|
74
74
|
},
|
|
75
75
|
"keywords": [
|
|
@@ -78,5 +78,5 @@
|
|
|
78
78
|
"beacon",
|
|
79
79
|
"blockchain"
|
|
80
80
|
],
|
|
81
|
-
"gitHead": "
|
|
81
|
+
"gitHead": "265cd23ba8df72578024403a74d9ab0aadff6733"
|
|
82
82
|
}
|