@lodestar/types 1.43.0-dev.9c8becae00 → 1.43.0-dev.a140dd987e
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 +146 -23
- package/lib/gloas/sszTypes.d.ts.map +1 -1
- package/lib/gloas/sszTypes.js +23 -7
- package/lib/gloas/sszTypes.js.map +1 -1
- package/lib/gloas/types.d.ts +4 -0
- package/lib/gloas/types.d.ts.map +1 -1
- package/lib/sszTypes.d.ts +282 -146
- package/lib/sszTypes.d.ts.map +1 -1
- package/lib/types.d.ts +2 -2
- package/lib/types.d.ts.map +1 -1
- package/package.json +3 -3
- package/src/gloas/sszTypes.ts +36 -5
- package/src/gloas/types.ts +4 -0
- package/src/types.ts +2 -2
package/lib/gloas/sszTypes.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BitVectorType, ContainerType, ListBasicType, ListCompositeType, VectorBasicType, VectorCompositeType } from "@chainsafe/ssz";
|
|
1
|
+
import { BitVectorType, ByteListType, ContainerType, ListBasicType, ListCompositeType, VectorBasicType, VectorCompositeType } from "@chainsafe/ssz";
|
|
2
2
|
export declare const Builder: ContainerType<{
|
|
3
3
|
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
4
4
|
version: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -85,6 +85,7 @@ export declare const ExecutionPayloadBid: ContainerType<{
|
|
|
85
85
|
value: import("@chainsafe/ssz").UintNumberType;
|
|
86
86
|
executionPayment: import("@chainsafe/ssz").UintNumberType;
|
|
87
87
|
blobKzgCommitments: ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
88
|
+
executionRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
88
89
|
}>;
|
|
89
90
|
export declare const SignedExecutionPayloadBid: ContainerType<{
|
|
90
91
|
message: ContainerType<{
|
|
@@ -99,9 +100,37 @@ export declare const SignedExecutionPayloadBid: ContainerType<{
|
|
|
99
100
|
value: import("@chainsafe/ssz").UintNumberType;
|
|
100
101
|
executionPayment: import("@chainsafe/ssz").UintNumberType;
|
|
101
102
|
blobKzgCommitments: ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
103
|
+
executionRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
102
104
|
}>;
|
|
103
105
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
104
106
|
}>;
|
|
107
|
+
export declare const BlockAccessList: ByteListType;
|
|
108
|
+
export declare const ExecutionPayload: ContainerType<{
|
|
109
|
+
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
110
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
111
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
112
|
+
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
113
|
+
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
114
|
+
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
115
|
+
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
116
|
+
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
117
|
+
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
118
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
119
|
+
extraData: ByteListType;
|
|
120
|
+
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
121
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
122
|
+
transactions: ListCompositeType<ByteListType>;
|
|
123
|
+
withdrawals: ListCompositeType<ContainerType<{
|
|
124
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
125
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
126
|
+
address: import("../index.ts").ExecutionAddressType;
|
|
127
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
128
|
+
}>>;
|
|
129
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
130
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
131
|
+
blockAccessList: ByteListType;
|
|
132
|
+
slotNumber: import("@chainsafe/ssz").UintNumberType;
|
|
133
|
+
}>;
|
|
105
134
|
export declare const ExecutionPayloadEnvelope: ContainerType<{
|
|
106
135
|
payload: ContainerType<{
|
|
107
136
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -114,10 +143,10 @@ export declare const ExecutionPayloadEnvelope: ContainerType<{
|
|
|
114
143
|
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
115
144
|
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
116
145
|
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
117
|
-
extraData:
|
|
146
|
+
extraData: ByteListType;
|
|
118
147
|
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
119
148
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
120
|
-
transactions: ListCompositeType<
|
|
149
|
+
transactions: ListCompositeType<ByteListType>;
|
|
121
150
|
withdrawals: ListCompositeType<ContainerType<{
|
|
122
151
|
index: import("@chainsafe/ssz").UintNumberType;
|
|
123
152
|
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -126,6 +155,8 @@ export declare const ExecutionPayloadEnvelope: ContainerType<{
|
|
|
126
155
|
}>>;
|
|
127
156
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
128
157
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
158
|
+
blockAccessList: ByteListType;
|
|
159
|
+
slotNumber: import("@chainsafe/ssz").UintNumberType;
|
|
129
160
|
}>;
|
|
130
161
|
executionRequests: ContainerType<{
|
|
131
162
|
deposits: ListCompositeType<ContainerType<{
|
|
@@ -148,8 +179,6 @@ export declare const ExecutionPayloadEnvelope: ContainerType<{
|
|
|
148
179
|
}>;
|
|
149
180
|
builderIndex: import("@chainsafe/ssz").UintNumberType;
|
|
150
181
|
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
151
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
152
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
153
182
|
}>;
|
|
154
183
|
export declare const SignedExecutionPayloadEnvelope: ContainerType<{
|
|
155
184
|
message: ContainerType<{
|
|
@@ -164,10 +193,10 @@ export declare const SignedExecutionPayloadEnvelope: ContainerType<{
|
|
|
164
193
|
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
165
194
|
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
166
195
|
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
167
|
-
extraData:
|
|
196
|
+
extraData: ByteListType;
|
|
168
197
|
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
169
198
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
170
|
-
transactions: ListCompositeType<
|
|
199
|
+
transactions: ListCompositeType<ByteListType>;
|
|
171
200
|
withdrawals: ListCompositeType<ContainerType<{
|
|
172
201
|
index: import("@chainsafe/ssz").UintNumberType;
|
|
173
202
|
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -176,6 +205,8 @@ export declare const SignedExecutionPayloadEnvelope: ContainerType<{
|
|
|
176
205
|
}>>;
|
|
177
206
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
178
207
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
208
|
+
blockAccessList: ByteListType;
|
|
209
|
+
slotNumber: import("@chainsafe/ssz").UintNumberType;
|
|
179
210
|
}>;
|
|
180
211
|
executionRequests: ContainerType<{
|
|
181
212
|
deposits: ListCompositeType<ContainerType<{
|
|
@@ -198,8 +229,6 @@ export declare const SignedExecutionPayloadEnvelope: ContainerType<{
|
|
|
198
229
|
}>;
|
|
199
230
|
builderIndex: import("@chainsafe/ssz").UintNumberType;
|
|
200
231
|
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
201
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
202
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
203
232
|
}>;
|
|
204
233
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
205
234
|
}>;
|
|
@@ -328,6 +357,7 @@ export declare const BeaconBlockBody: ContainerType<{
|
|
|
328
357
|
value: import("@chainsafe/ssz").UintNumberType;
|
|
329
358
|
executionPayment: import("@chainsafe/ssz").UintNumberType;
|
|
330
359
|
blobKzgCommitments: ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
360
|
+
executionRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
331
361
|
}>;
|
|
332
362
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
333
363
|
}>;
|
|
@@ -341,6 +371,25 @@ export declare const BeaconBlockBody: ContainerType<{
|
|
|
341
371
|
}>;
|
|
342
372
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
343
373
|
}>>;
|
|
374
|
+
parentExecutionRequests: ContainerType<{
|
|
375
|
+
deposits: ListCompositeType<ContainerType<{
|
|
376
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
377
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
378
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
379
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
380
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
381
|
+
}>>;
|
|
382
|
+
withdrawals: ListCompositeType<ContainerType<{
|
|
383
|
+
sourceAddress: import("../index.ts").ExecutionAddressType;
|
|
384
|
+
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
385
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
386
|
+
}>>;
|
|
387
|
+
consolidations: ListCompositeType<ContainerType<{
|
|
388
|
+
sourceAddress: import("../index.ts").ExecutionAddressType;
|
|
389
|
+
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
390
|
+
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
391
|
+
}>>;
|
|
392
|
+
}>;
|
|
344
393
|
}>;
|
|
345
394
|
export declare const BeaconBlock: ContainerType<{
|
|
346
395
|
slot: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -472,6 +521,7 @@ export declare const BeaconBlock: ContainerType<{
|
|
|
472
521
|
value: import("@chainsafe/ssz").UintNumberType;
|
|
473
522
|
executionPayment: import("@chainsafe/ssz").UintNumberType;
|
|
474
523
|
blobKzgCommitments: ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
524
|
+
executionRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
475
525
|
}>;
|
|
476
526
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
477
527
|
}>;
|
|
@@ -485,6 +535,25 @@ export declare const BeaconBlock: ContainerType<{
|
|
|
485
535
|
}>;
|
|
486
536
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
487
537
|
}>>;
|
|
538
|
+
parentExecutionRequests: ContainerType<{
|
|
539
|
+
deposits: ListCompositeType<ContainerType<{
|
|
540
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
541
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
542
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
543
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
544
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
545
|
+
}>>;
|
|
546
|
+
withdrawals: ListCompositeType<ContainerType<{
|
|
547
|
+
sourceAddress: import("../index.ts").ExecutionAddressType;
|
|
548
|
+
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
549
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
550
|
+
}>>;
|
|
551
|
+
consolidations: ListCompositeType<ContainerType<{
|
|
552
|
+
sourceAddress: import("../index.ts").ExecutionAddressType;
|
|
553
|
+
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
554
|
+
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
555
|
+
}>>;
|
|
556
|
+
}>;
|
|
488
557
|
}>;
|
|
489
558
|
}>;
|
|
490
559
|
export declare const SignedBeaconBlock: ContainerType<{
|
|
@@ -618,6 +687,7 @@ export declare const SignedBeaconBlock: ContainerType<{
|
|
|
618
687
|
value: import("@chainsafe/ssz").UintNumberType;
|
|
619
688
|
executionPayment: import("@chainsafe/ssz").UintNumberType;
|
|
620
689
|
blobKzgCommitments: ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
690
|
+
executionRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
621
691
|
}>;
|
|
622
692
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
623
693
|
}>;
|
|
@@ -631,6 +701,25 @@ export declare const SignedBeaconBlock: ContainerType<{
|
|
|
631
701
|
}>;
|
|
632
702
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
633
703
|
}>>;
|
|
704
|
+
parentExecutionRequests: ContainerType<{
|
|
705
|
+
deposits: ListCompositeType<ContainerType<{
|
|
706
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
707
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
708
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
709
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
710
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
711
|
+
}>>;
|
|
712
|
+
withdrawals: ListCompositeType<ContainerType<{
|
|
713
|
+
sourceAddress: import("../index.ts").ExecutionAddressType;
|
|
714
|
+
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
715
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
716
|
+
}>>;
|
|
717
|
+
consolidations: ListCompositeType<ContainerType<{
|
|
718
|
+
sourceAddress: import("../index.ts").ExecutionAddressType;
|
|
719
|
+
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
720
|
+
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
721
|
+
}>>;
|
|
722
|
+
}>;
|
|
634
723
|
}>;
|
|
635
724
|
}>;
|
|
636
725
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -693,19 +782,7 @@ export declare const BeaconState: ContainerType<{
|
|
|
693
782
|
pubkeys: VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
694
783
|
aggregatePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
695
784
|
}>;
|
|
696
|
-
|
|
697
|
-
parentBlockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
698
|
-
parentBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
699
|
-
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
700
|
-
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
701
|
-
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
702
|
-
gasLimit: import("@chainsafe/ssz").UintBigintType;
|
|
703
|
-
builderIndex: import("@chainsafe/ssz").UintNumberType;
|
|
704
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
705
|
-
value: import("@chainsafe/ssz").UintNumberType;
|
|
706
|
-
executionPayment: import("@chainsafe/ssz").UintNumberType;
|
|
707
|
-
blobKzgCommitments: ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
708
|
-
}>;
|
|
785
|
+
latestBlockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
709
786
|
nextWithdrawalIndex: import("@chainsafe/ssz").UintNumberType;
|
|
710
787
|
nextWithdrawalValidatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
711
788
|
historicalSummaries: ListCompositeType<ContainerType<{
|
|
@@ -758,7 +835,20 @@ export declare const BeaconState: ContainerType<{
|
|
|
758
835
|
amount: import("@chainsafe/ssz").UintNumberType;
|
|
759
836
|
builderIndex: import("@chainsafe/ssz").UintNumberType;
|
|
760
837
|
}>>;
|
|
761
|
-
|
|
838
|
+
latestExecutionPayloadBid: ContainerType<{
|
|
839
|
+
parentBlockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
840
|
+
parentBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
841
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
842
|
+
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
843
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
844
|
+
gasLimit: import("@chainsafe/ssz").UintBigintType;
|
|
845
|
+
builderIndex: import("@chainsafe/ssz").UintNumberType;
|
|
846
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
847
|
+
value: import("@chainsafe/ssz").UintNumberType;
|
|
848
|
+
executionPayment: import("@chainsafe/ssz").UintNumberType;
|
|
849
|
+
blobKzgCommitments: ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
850
|
+
executionRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
851
|
+
}>;
|
|
762
852
|
payloadExpectedWithdrawals: ListCompositeType<ContainerType<{
|
|
763
853
|
index: import("@chainsafe/ssz").UintNumberType;
|
|
764
854
|
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -785,4 +875,37 @@ export declare const ExecutionPayloadEnvelopesByRangeRequest: ContainerType<{
|
|
|
785
875
|
startSlot: import("@chainsafe/ssz").UintNumberType;
|
|
786
876
|
count: import("@chainsafe/ssz").UintNumberType;
|
|
787
877
|
}>;
|
|
878
|
+
export declare const PayloadAttributes: ContainerType<{
|
|
879
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
880
|
+
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
881
|
+
suggestedFeeRecipient: import("../index.ts").StringType<string>;
|
|
882
|
+
withdrawals: ListCompositeType<ContainerType<{
|
|
883
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
884
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
885
|
+
address: import("../index.ts").ExecutionAddressType;
|
|
886
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
887
|
+
}>>;
|
|
888
|
+
parentBeaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
889
|
+
slotNumber: import("@chainsafe/ssz").UintNumberType;
|
|
890
|
+
}>;
|
|
891
|
+
export declare const SSEPayloadAttributes: ContainerType<{
|
|
892
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
893
|
+
proposalSlot: import("@chainsafe/ssz").UintNumberType;
|
|
894
|
+
parentBlockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
895
|
+
parentBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
896
|
+
parentBlockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
897
|
+
payloadAttributes: ContainerType<{
|
|
898
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
899
|
+
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
900
|
+
suggestedFeeRecipient: import("../index.ts").StringType<string>;
|
|
901
|
+
withdrawals: ListCompositeType<ContainerType<{
|
|
902
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
903
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
904
|
+
address: import("../index.ts").ExecutionAddressType;
|
|
905
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
906
|
+
}>>;
|
|
907
|
+
parentBeaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
908
|
+
slotNumber: import("@chainsafe/ssz").UintNumberType;
|
|
909
|
+
}>;
|
|
910
|
+
}>;
|
|
788
911
|
//# sourceMappingURL=sszTypes.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sszTypes.d.ts","sourceRoot":"","sources":["../../src/gloas/sszTypes.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,aAAa,EACb,aAAa,EACb,aAAa,EACb,iBAAiB,EACjB,eAAe,EACf,mBAAmB,EACpB,MAAM,gBAAgB,CAAC;
|
|
1
|
+
{"version":3,"file":"sszTypes.d.ts","sourceRoot":"","sources":["../../src/gloas/sszTypes.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,aAAa,EACb,YAAY,EACZ,aAAa,EACb,aAAa,EACb,iBAAiB,EACjB,eAAe,EACf,mBAAmB,EACpB,MAAM,gBAAgB,CAAC;AA0CxB,eAAO,MAAM,OAAO;;;;;;;EAUnB,CAAC;AAEF,eAAO,MAAM,wBAAwB;;;;EAOpC,CAAC;AAEF,eAAO,MAAM,qBAAqB;;;;;;;EAMjC,CAAC;AAEF,eAAO,MAAM,0BAA0B,0DAAgD,CAAC;AACxF,eAAO,MAAM,SAAS,+EAGrB,CAAC;AAEF,eAAO,MAAM,sBAAsB;;;;;EAQlC,CAAC;AAEF,eAAO,MAAM,kBAAkB;;;;;;;;;EAO9B,CAAC;AAEF,eAAO,MAAM,yBAAyB;;;;;;;;;EAOrC,CAAC;AAEF,eAAO,MAAM,yBAAyB;;;;;;;;;EAOrC,CAAC;AAEF,eAAO,MAAM,mBAAmB;;;;;EAQ/B,CAAC;AAEF,eAAO,MAAM,yBAAyB;;;;;;;;EAMrC,CAAC;AAEF,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;EAgB/B,CAAC;AAEF,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;EAMrC,CAAC;AAEF,eAAO,MAAM,eAAe,cAA8C,CAAC;AAE3E,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;EAO5B,CAAC;AAEF,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAQpC,CAAC;AAEF,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAM1C,CAAC;AAEF,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAoB3B,CAAC;AAEF,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAMvB,CAAC;AAEF,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAM7B,CAAC;AAEF,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA+DvB,CAAC;AAEF,eAAO,MAAM,iBAAiB;;;;;;EAY7B,CAAC;AAEF,eAAO,MAAM,kBAAkB;;;;;;GAA8D,CAAC;AAE9F,eAAO,MAAM,uCAAuC;;;EAGnD,CAAC;AAGF,eAAO,MAAM,iBAAiB;;;;;;;;;;;;EAM7B,CAAC;AAEF,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;EAMhC,CAAC"}
|
package/lib/gloas/sszTypes.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import { BitVectorType, ContainerType, ListBasicType, ListCompositeType, VectorBasicType, VectorCompositeType, } from "@chainsafe/ssz";
|
|
2
|
-
import { BUILDER_PENDING_WITHDRAWALS_LIMIT, BUILDER_REGISTRY_LIMIT, HISTORICAL_ROOTS_LIMIT, MAX_PAYLOAD_ATTESTATIONS, MIN_SEED_LOOKAHEAD, NUMBER_OF_COLUMNS, PTC_SIZE, SLOTS_PER_EPOCH, SLOTS_PER_HISTORICAL_ROOT, } from "@lodestar/params";
|
|
1
|
+
import { BitVectorType, ByteListType, ContainerType, ListBasicType, ListCompositeType, VectorBasicType, VectorCompositeType, } from "@chainsafe/ssz";
|
|
2
|
+
import { BUILDER_PENDING_WITHDRAWALS_LIMIT, BUILDER_REGISTRY_LIMIT, HISTORICAL_ROOTS_LIMIT, MAX_BYTES_PER_TRANSACTION, MAX_PAYLOAD_ATTESTATIONS, MIN_SEED_LOOKAHEAD, NUMBER_OF_COLUMNS, PTC_SIZE, SLOTS_PER_EPOCH, SLOTS_PER_HISTORICAL_ROOT, } from "@lodestar/params";
|
|
3
3
|
import { ssz as altairSsz } from "../altair/index.js";
|
|
4
|
+
import { ssz as bellatrixSsz } from "../bellatrix/index.js";
|
|
4
5
|
import { ssz as capellaSsz } from "../capella/index.js";
|
|
5
6
|
import { ssz as denebSsz } from "../deneb/index.js";
|
|
6
7
|
import { ssz as electraSsz } from "../electra/index.js";
|
|
@@ -72,18 +73,23 @@ export const ExecutionPayloadBid = new ContainerType({
|
|
|
72
73
|
value: UintNum64,
|
|
73
74
|
executionPayment: UintNum64,
|
|
74
75
|
blobKzgCommitments: denebSsz.BlobKzgCommitments,
|
|
76
|
+
executionRequestsRoot: Root,
|
|
75
77
|
}, { typeName: "ExecutionPayloadBid", jsonCase: "eth2" });
|
|
76
78
|
export const SignedExecutionPayloadBid = new ContainerType({
|
|
77
79
|
message: ExecutionPayloadBid,
|
|
78
80
|
signature: BLSSignature,
|
|
79
81
|
}, { typeName: "SignedExecutionPayloadBid", jsonCase: "eth2" });
|
|
82
|
+
export const BlockAccessList = new ByteListType(MAX_BYTES_PER_TRANSACTION);
|
|
83
|
+
export const ExecutionPayload = new ContainerType({
|
|
84
|
+
...electraSsz.ExecutionPayload.fields,
|
|
85
|
+
blockAccessList: BlockAccessList, // New in GLOAS:EIP-7928
|
|
86
|
+
slotNumber: Slot, // New in GLOAS:EIP-7843
|
|
87
|
+
}, { typeName: "ExecutionPayload", jsonCase: "eth2" });
|
|
80
88
|
export const ExecutionPayloadEnvelope = new ContainerType({
|
|
81
|
-
payload:
|
|
89
|
+
payload: ExecutionPayload,
|
|
82
90
|
executionRequests: electraSsz.ExecutionRequests,
|
|
83
91
|
builderIndex: BuilderIndex,
|
|
84
92
|
beaconBlockRoot: Root,
|
|
85
|
-
slot: Slot,
|
|
86
|
-
stateRoot: Root,
|
|
87
93
|
}, { typeName: "ExecutionPayloadEnvelope", jsonCase: "eth2" });
|
|
88
94
|
export const SignedExecutionPayloadEnvelope = new ContainerType({
|
|
89
95
|
message: ExecutionPayloadEnvelope,
|
|
@@ -105,6 +111,7 @@ export const BeaconBlockBody = new ContainerType({
|
|
|
105
111
|
// executionRequests: ExecutionRequests, // Removed in GLOAS:EIP7732
|
|
106
112
|
signedExecutionPayloadBid: SignedExecutionPayloadBid, // New in GLOAS:EIP7732
|
|
107
113
|
payloadAttestations: new ListCompositeType(PayloadAttestation, MAX_PAYLOAD_ATTESTATIONS), // New in GLOAS:EIP7732
|
|
114
|
+
parentExecutionRequests: electraSsz.ExecutionRequests, // New in GLOAS:EIP7732
|
|
108
115
|
}, { typeName: "BeaconBlockBody", jsonCase: "eth2", cachePermanentRootStruct: true });
|
|
109
116
|
export const BeaconBlock = new ContainerType({
|
|
110
117
|
...fuluSsz.BeaconBlock.fields,
|
|
@@ -150,7 +157,7 @@ export const BeaconState = new ContainerType({
|
|
|
150
157
|
nextSyncCommittee: altairSsz.SyncCommittee,
|
|
151
158
|
// Execution
|
|
152
159
|
// latestExecutionPayloadHeader: ExecutionPayloadHeader, // Removed in GLOAS:EIP7732
|
|
153
|
-
|
|
160
|
+
latestBlockHash: Bytes32, // New in GLOAS:EIP7732
|
|
154
161
|
// Withdrawals
|
|
155
162
|
nextWithdrawalIndex: capellaSsz.BeaconState.fields.nextWithdrawalIndex,
|
|
156
163
|
nextWithdrawalValidatorIndex: capellaSsz.BeaconState.fields.nextWithdrawalValidatorIndex,
|
|
@@ -171,7 +178,7 @@ export const BeaconState = new ContainerType({
|
|
|
171
178
|
executionPayloadAvailability: new BitVectorType(SLOTS_PER_HISTORICAL_ROOT), // New in GLOAS:EIP7732
|
|
172
179
|
builderPendingPayments: new VectorCompositeType(BuilderPendingPayment, 2 * SLOTS_PER_EPOCH), // New in GLOAS:EIP7732
|
|
173
180
|
builderPendingWithdrawals: new ListCompositeType(BuilderPendingWithdrawal, BUILDER_PENDING_WITHDRAWALS_LIMIT), // New in GLOAS:EIP7732
|
|
174
|
-
|
|
181
|
+
latestExecutionPayloadBid: ExecutionPayloadBid, // New in GLOAS:EIP7732
|
|
175
182
|
payloadExpectedWithdrawals: capellaSsz.Withdrawals, // New in GLOAS:EIP7732
|
|
176
183
|
ptcWindow: PtcWindow, // New in GLOAS:EIP7732
|
|
177
184
|
}, { typeName: "BeaconState", jsonCase: "eth2" });
|
|
@@ -187,4 +194,13 @@ export const DataColumnSidecar = new ContainerType({
|
|
|
187
194
|
}, { typeName: "DataColumnSidecar", jsonCase: "eth2" });
|
|
188
195
|
export const DataColumnSidecars = new ListCompositeType(DataColumnSidecar, NUMBER_OF_COLUMNS);
|
|
189
196
|
export const ExecutionPayloadEnvelopesByRangeRequest = new ContainerType({ startSlot: Slot, count: UintNum64 }, { typeName: "ExecutionPayloadEnvelopesByRangeRequest", jsonCase: "eth2" });
|
|
197
|
+
// PayloadAttributes primarily for SSE event
|
|
198
|
+
export const PayloadAttributes = new ContainerType({
|
|
199
|
+
...denebSsz.PayloadAttributes.fields,
|
|
200
|
+
slotNumber: Slot,
|
|
201
|
+
}, { typeName: "PayloadAttributes", jsonCase: "eth2" });
|
|
202
|
+
export const SSEPayloadAttributes = new ContainerType({
|
|
203
|
+
...bellatrixSsz.SSEPayloadAttributesCommon.fields,
|
|
204
|
+
payloadAttributes: PayloadAttributes,
|
|
205
|
+
}, { typeName: "SSEPayloadAttributes", jsonCase: "eth2" });
|
|
190
206
|
//# sourceMappingURL=sszTypes.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sszTypes.js","sourceRoot":"","sources":["../../src/gloas/sszTypes.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"sszTypes.js","sourceRoot":"","sources":["../../src/gloas/sszTypes.ts"],"names":[],"mappings":"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"}
|
package/lib/gloas/types.d.ts
CHANGED
|
@@ -11,8 +11,10 @@ export type PayloadAttestationMessage = ValueOf<typeof ssz.PayloadAttestationMes
|
|
|
11
11
|
export type IndexedPayloadAttestation = ValueOf<typeof ssz.IndexedPayloadAttestation>;
|
|
12
12
|
export type ProposerPreferences = ValueOf<typeof ssz.ProposerPreferences>;
|
|
13
13
|
export type SignedProposerPreferences = ValueOf<typeof ssz.SignedProposerPreferences>;
|
|
14
|
+
export type ExecutionPayload = ValueOf<typeof ssz.ExecutionPayload>;
|
|
14
15
|
export type ExecutionPayloadBid = ValueOf<typeof ssz.ExecutionPayloadBid>;
|
|
15
16
|
export type SignedExecutionPayloadBid = ValueOf<typeof ssz.SignedExecutionPayloadBid>;
|
|
17
|
+
export type BlockAccessList = ValueOf<typeof ssz.BlockAccessList>;
|
|
16
18
|
export type ExecutionPayloadEnvelope = ValueOf<typeof ssz.ExecutionPayloadEnvelope>;
|
|
17
19
|
export type SignedExecutionPayloadEnvelope = ValueOf<typeof ssz.SignedExecutionPayloadEnvelope>;
|
|
18
20
|
export type BeaconBlockBody = ValueOf<typeof ssz.BeaconBlockBody>;
|
|
@@ -22,4 +24,6 @@ export type BeaconState = ValueOf<typeof ssz.BeaconState>;
|
|
|
22
24
|
export type DataColumnSidecar = ValueOf<typeof ssz.DataColumnSidecar>;
|
|
23
25
|
export type DataColumnSidecars = ValueOf<typeof ssz.DataColumnSidecars>;
|
|
24
26
|
export type ExecutionPayloadEnvelopesByRangeRequest = ValueOf<typeof ssz.ExecutionPayloadEnvelopesByRangeRequest>;
|
|
27
|
+
export type PayloadAttributes = ValueOf<typeof ssz.PayloadAttributes>;
|
|
28
|
+
export type SSEPayloadAttributes = ValueOf<typeof ssz.SSEPayloadAttributes>;
|
|
25
29
|
//# sourceMappingURL=types.d.ts.map
|
package/lib/gloas/types.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/gloas/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,OAAO,EAAC,MAAM,gBAAgB,CAAC;AACvC,OAAO,KAAK,GAAG,MAAM,eAAe,CAAC;AAErC,MAAM,MAAM,OAAO,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,OAAO,CAAC,CAAC;AAClD,MAAM,MAAM,wBAAwB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,wBAAwB,CAAC,CAAC;AACpF,MAAM,MAAM,qBAAqB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,qBAAqB,CAAC,CAAC;AAC9E,MAAM,MAAM,0BAA0B,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,0BAA0B,CAAC,CAAC;AACxF,MAAM,MAAM,SAAS,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,SAAS,CAAC,CAAC;AACtD,MAAM,MAAM,sBAAsB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,sBAAsB,CAAC,CAAC;AAChF,MAAM,MAAM,kBAAkB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,kBAAkB,CAAC,CAAC;AACxE,MAAM,MAAM,yBAAyB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,yBAAyB,CAAC,CAAC;AACtF,MAAM,MAAM,yBAAyB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,yBAAyB,CAAC,CAAC;AACtF,MAAM,MAAM,mBAAmB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,mBAAmB,CAAC,CAAC;AAC1E,MAAM,MAAM,yBAAyB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,yBAAyB,CAAC,CAAC;AACtF,MAAM,MAAM,mBAAmB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,mBAAmB,CAAC,CAAC;AAC1E,MAAM,MAAM,yBAAyB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,yBAAyB,CAAC,CAAC;AACtF,MAAM,MAAM,wBAAwB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,wBAAwB,CAAC,CAAC;AACpF,MAAM,MAAM,8BAA8B,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,8BAA8B,CAAC,CAAC;AAChG,MAAM,MAAM,eAAe,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,eAAe,CAAC,CAAC;AAClE,MAAM,MAAM,WAAW,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,WAAW,CAAC,CAAC;AAC1D,MAAM,MAAM,iBAAiB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,iBAAiB,CAAC,CAAC;AACtE,MAAM,MAAM,WAAW,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,WAAW,CAAC,CAAC;AAE1D,MAAM,MAAM,iBAAiB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,iBAAiB,CAAC,CAAC;AACtE,MAAM,MAAM,kBAAkB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,kBAAkB,CAAC,CAAC;AAExE,MAAM,MAAM,uCAAuC,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,uCAAuC,CAAC,CAAC"}
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/gloas/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,OAAO,EAAC,MAAM,gBAAgB,CAAC;AACvC,OAAO,KAAK,GAAG,MAAM,eAAe,CAAC;AAErC,MAAM,MAAM,OAAO,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,OAAO,CAAC,CAAC;AAClD,MAAM,MAAM,wBAAwB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,wBAAwB,CAAC,CAAC;AACpF,MAAM,MAAM,qBAAqB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,qBAAqB,CAAC,CAAC;AAC9E,MAAM,MAAM,0BAA0B,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,0BAA0B,CAAC,CAAC;AACxF,MAAM,MAAM,SAAS,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,SAAS,CAAC,CAAC;AACtD,MAAM,MAAM,sBAAsB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,sBAAsB,CAAC,CAAC;AAChF,MAAM,MAAM,kBAAkB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,kBAAkB,CAAC,CAAC;AACxE,MAAM,MAAM,yBAAyB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,yBAAyB,CAAC,CAAC;AACtF,MAAM,MAAM,yBAAyB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,yBAAyB,CAAC,CAAC;AACtF,MAAM,MAAM,mBAAmB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,mBAAmB,CAAC,CAAC;AAC1E,MAAM,MAAM,yBAAyB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,yBAAyB,CAAC,CAAC;AACtF,MAAM,MAAM,gBAAgB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,gBAAgB,CAAC,CAAC;AACpE,MAAM,MAAM,mBAAmB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,mBAAmB,CAAC,CAAC;AAC1E,MAAM,MAAM,yBAAyB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,yBAAyB,CAAC,CAAC;AACtF,MAAM,MAAM,eAAe,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,eAAe,CAAC,CAAC;AAClE,MAAM,MAAM,wBAAwB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,wBAAwB,CAAC,CAAC;AACpF,MAAM,MAAM,8BAA8B,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,8BAA8B,CAAC,CAAC;AAChG,MAAM,MAAM,eAAe,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,eAAe,CAAC,CAAC;AAClE,MAAM,MAAM,WAAW,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,WAAW,CAAC,CAAC;AAC1D,MAAM,MAAM,iBAAiB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,iBAAiB,CAAC,CAAC;AACtE,MAAM,MAAM,WAAW,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,WAAW,CAAC,CAAC;AAE1D,MAAM,MAAM,iBAAiB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,iBAAiB,CAAC,CAAC;AACtE,MAAM,MAAM,kBAAkB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,kBAAkB,CAAC,CAAC;AAExE,MAAM,MAAM,uCAAuC,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,uCAAuC,CAAC,CAAC;AAClH,MAAM,MAAM,iBAAiB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,iBAAiB,CAAC,CAAC;AACtE,MAAM,MAAM,oBAAoB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,oBAAoB,CAAC,CAAC"}
|