@lodestar/types 1.43.0-dev.9c8becae00 → 1.43.0-dev.9f5db5b9c7
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 +150 -23
- package/lib/gloas/sszTypes.d.ts.map +1 -1
- package/lib/gloas/sszTypes.js +25 -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 +290 -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 +38 -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;
|
|
@@ -59,6 +59,7 @@ export declare const IndexedPayloadAttestation: ContainerType<{
|
|
|
59
59
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
60
60
|
}>;
|
|
61
61
|
export declare const ProposerPreferences: ContainerType<{
|
|
62
|
+
dependentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
62
63
|
proposalSlot: import("@chainsafe/ssz").UintNumberType;
|
|
63
64
|
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
64
65
|
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
@@ -66,6 +67,7 @@ export declare const ProposerPreferences: ContainerType<{
|
|
|
66
67
|
}>;
|
|
67
68
|
export declare const SignedProposerPreferences: ContainerType<{
|
|
68
69
|
message: ContainerType<{
|
|
70
|
+
dependentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
69
71
|
proposalSlot: import("@chainsafe/ssz").UintNumberType;
|
|
70
72
|
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
71
73
|
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
@@ -85,6 +87,7 @@ export declare const ExecutionPayloadBid: ContainerType<{
|
|
|
85
87
|
value: import("@chainsafe/ssz").UintNumberType;
|
|
86
88
|
executionPayment: import("@chainsafe/ssz").UintNumberType;
|
|
87
89
|
blobKzgCommitments: ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
90
|
+
executionRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
88
91
|
}>;
|
|
89
92
|
export declare const SignedExecutionPayloadBid: ContainerType<{
|
|
90
93
|
message: ContainerType<{
|
|
@@ -99,9 +102,37 @@ export declare const SignedExecutionPayloadBid: ContainerType<{
|
|
|
99
102
|
value: import("@chainsafe/ssz").UintNumberType;
|
|
100
103
|
executionPayment: import("@chainsafe/ssz").UintNumberType;
|
|
101
104
|
blobKzgCommitments: ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
105
|
+
executionRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
102
106
|
}>;
|
|
103
107
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
104
108
|
}>;
|
|
109
|
+
export declare const BlockAccessList: ByteListType;
|
|
110
|
+
export declare const ExecutionPayload: ContainerType<{
|
|
111
|
+
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
112
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
113
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
114
|
+
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
115
|
+
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
116
|
+
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
117
|
+
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
118
|
+
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
119
|
+
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
120
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
121
|
+
extraData: ByteListType;
|
|
122
|
+
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
123
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
124
|
+
transactions: ListCompositeType<ByteListType>;
|
|
125
|
+
withdrawals: ListCompositeType<ContainerType<{
|
|
126
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
127
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
128
|
+
address: import("../index.ts").ExecutionAddressType;
|
|
129
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
130
|
+
}>>;
|
|
131
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
132
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
133
|
+
blockAccessList: ByteListType;
|
|
134
|
+
slotNumber: import("@chainsafe/ssz").UintNumberType;
|
|
135
|
+
}>;
|
|
105
136
|
export declare const ExecutionPayloadEnvelope: ContainerType<{
|
|
106
137
|
payload: ContainerType<{
|
|
107
138
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -114,10 +145,10 @@ export declare const ExecutionPayloadEnvelope: ContainerType<{
|
|
|
114
145
|
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
115
146
|
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
116
147
|
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
117
|
-
extraData:
|
|
148
|
+
extraData: ByteListType;
|
|
118
149
|
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
119
150
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
120
|
-
transactions: ListCompositeType<
|
|
151
|
+
transactions: ListCompositeType<ByteListType>;
|
|
121
152
|
withdrawals: ListCompositeType<ContainerType<{
|
|
122
153
|
index: import("@chainsafe/ssz").UintNumberType;
|
|
123
154
|
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -126,6 +157,8 @@ export declare const ExecutionPayloadEnvelope: ContainerType<{
|
|
|
126
157
|
}>>;
|
|
127
158
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
128
159
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
160
|
+
blockAccessList: ByteListType;
|
|
161
|
+
slotNumber: import("@chainsafe/ssz").UintNumberType;
|
|
129
162
|
}>;
|
|
130
163
|
executionRequests: ContainerType<{
|
|
131
164
|
deposits: ListCompositeType<ContainerType<{
|
|
@@ -148,8 +181,7 @@ export declare const ExecutionPayloadEnvelope: ContainerType<{
|
|
|
148
181
|
}>;
|
|
149
182
|
builderIndex: import("@chainsafe/ssz").UintNumberType;
|
|
150
183
|
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
151
|
-
|
|
152
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
184
|
+
parentBeaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
153
185
|
}>;
|
|
154
186
|
export declare const SignedExecutionPayloadEnvelope: ContainerType<{
|
|
155
187
|
message: ContainerType<{
|
|
@@ -164,10 +196,10 @@ export declare const SignedExecutionPayloadEnvelope: ContainerType<{
|
|
|
164
196
|
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
165
197
|
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
166
198
|
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
167
|
-
extraData:
|
|
199
|
+
extraData: ByteListType;
|
|
168
200
|
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
169
201
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
170
|
-
transactions: ListCompositeType<
|
|
202
|
+
transactions: ListCompositeType<ByteListType>;
|
|
171
203
|
withdrawals: ListCompositeType<ContainerType<{
|
|
172
204
|
index: import("@chainsafe/ssz").UintNumberType;
|
|
173
205
|
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -176,6 +208,8 @@ export declare const SignedExecutionPayloadEnvelope: ContainerType<{
|
|
|
176
208
|
}>>;
|
|
177
209
|
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
178
210
|
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
211
|
+
blockAccessList: ByteListType;
|
|
212
|
+
slotNumber: import("@chainsafe/ssz").UintNumberType;
|
|
179
213
|
}>;
|
|
180
214
|
executionRequests: ContainerType<{
|
|
181
215
|
deposits: ListCompositeType<ContainerType<{
|
|
@@ -198,8 +232,7 @@ export declare const SignedExecutionPayloadEnvelope: ContainerType<{
|
|
|
198
232
|
}>;
|
|
199
233
|
builderIndex: import("@chainsafe/ssz").UintNumberType;
|
|
200
234
|
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
201
|
-
|
|
202
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
235
|
+
parentBeaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
203
236
|
}>;
|
|
204
237
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
205
238
|
}>;
|
|
@@ -328,6 +361,7 @@ export declare const BeaconBlockBody: ContainerType<{
|
|
|
328
361
|
value: import("@chainsafe/ssz").UintNumberType;
|
|
329
362
|
executionPayment: import("@chainsafe/ssz").UintNumberType;
|
|
330
363
|
blobKzgCommitments: ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
364
|
+
executionRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
331
365
|
}>;
|
|
332
366
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
333
367
|
}>;
|
|
@@ -341,6 +375,25 @@ export declare const BeaconBlockBody: ContainerType<{
|
|
|
341
375
|
}>;
|
|
342
376
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
343
377
|
}>>;
|
|
378
|
+
parentExecutionRequests: ContainerType<{
|
|
379
|
+
deposits: ListCompositeType<ContainerType<{
|
|
380
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
381
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
382
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
383
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
384
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
385
|
+
}>>;
|
|
386
|
+
withdrawals: ListCompositeType<ContainerType<{
|
|
387
|
+
sourceAddress: import("../index.ts").ExecutionAddressType;
|
|
388
|
+
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
389
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
390
|
+
}>>;
|
|
391
|
+
consolidations: ListCompositeType<ContainerType<{
|
|
392
|
+
sourceAddress: import("../index.ts").ExecutionAddressType;
|
|
393
|
+
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
394
|
+
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
395
|
+
}>>;
|
|
396
|
+
}>;
|
|
344
397
|
}>;
|
|
345
398
|
export declare const BeaconBlock: ContainerType<{
|
|
346
399
|
slot: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -472,6 +525,7 @@ export declare const BeaconBlock: ContainerType<{
|
|
|
472
525
|
value: import("@chainsafe/ssz").UintNumberType;
|
|
473
526
|
executionPayment: import("@chainsafe/ssz").UintNumberType;
|
|
474
527
|
blobKzgCommitments: ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
528
|
+
executionRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
475
529
|
}>;
|
|
476
530
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
477
531
|
}>;
|
|
@@ -485,6 +539,25 @@ export declare const BeaconBlock: ContainerType<{
|
|
|
485
539
|
}>;
|
|
486
540
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
487
541
|
}>>;
|
|
542
|
+
parentExecutionRequests: ContainerType<{
|
|
543
|
+
deposits: ListCompositeType<ContainerType<{
|
|
544
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
545
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
546
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
547
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
548
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
549
|
+
}>>;
|
|
550
|
+
withdrawals: ListCompositeType<ContainerType<{
|
|
551
|
+
sourceAddress: import("../index.ts").ExecutionAddressType;
|
|
552
|
+
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
553
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
554
|
+
}>>;
|
|
555
|
+
consolidations: ListCompositeType<ContainerType<{
|
|
556
|
+
sourceAddress: import("../index.ts").ExecutionAddressType;
|
|
557
|
+
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
558
|
+
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
559
|
+
}>>;
|
|
560
|
+
}>;
|
|
488
561
|
}>;
|
|
489
562
|
}>;
|
|
490
563
|
export declare const SignedBeaconBlock: ContainerType<{
|
|
@@ -618,6 +691,7 @@ export declare const SignedBeaconBlock: ContainerType<{
|
|
|
618
691
|
value: import("@chainsafe/ssz").UintNumberType;
|
|
619
692
|
executionPayment: import("@chainsafe/ssz").UintNumberType;
|
|
620
693
|
blobKzgCommitments: ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
694
|
+
executionRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
621
695
|
}>;
|
|
622
696
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
623
697
|
}>;
|
|
@@ -631,6 +705,25 @@ export declare const SignedBeaconBlock: ContainerType<{
|
|
|
631
705
|
}>;
|
|
632
706
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
633
707
|
}>>;
|
|
708
|
+
parentExecutionRequests: ContainerType<{
|
|
709
|
+
deposits: ListCompositeType<ContainerType<{
|
|
710
|
+
pubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
711
|
+
withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
|
|
712
|
+
amount: import("@chainsafe/ssz").UintNumberType;
|
|
713
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
714
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
715
|
+
}>>;
|
|
716
|
+
withdrawals: ListCompositeType<ContainerType<{
|
|
717
|
+
sourceAddress: import("../index.ts").ExecutionAddressType;
|
|
718
|
+
validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
719
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
720
|
+
}>>;
|
|
721
|
+
consolidations: ListCompositeType<ContainerType<{
|
|
722
|
+
sourceAddress: import("../index.ts").ExecutionAddressType;
|
|
723
|
+
sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
724
|
+
targetPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
725
|
+
}>>;
|
|
726
|
+
}>;
|
|
634
727
|
}>;
|
|
635
728
|
}>;
|
|
636
729
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -693,19 +786,7 @@ export declare const BeaconState: ContainerType<{
|
|
|
693
786
|
pubkeys: VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
694
787
|
aggregatePubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
695
788
|
}>;
|
|
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
|
-
}>;
|
|
789
|
+
latestBlockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
709
790
|
nextWithdrawalIndex: import("@chainsafe/ssz").UintNumberType;
|
|
710
791
|
nextWithdrawalValidatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
711
792
|
historicalSummaries: ListCompositeType<ContainerType<{
|
|
@@ -758,7 +839,20 @@ export declare const BeaconState: ContainerType<{
|
|
|
758
839
|
amount: import("@chainsafe/ssz").UintNumberType;
|
|
759
840
|
builderIndex: import("@chainsafe/ssz").UintNumberType;
|
|
760
841
|
}>>;
|
|
761
|
-
|
|
842
|
+
latestExecutionPayloadBid: ContainerType<{
|
|
843
|
+
parentBlockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
844
|
+
parentBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
845
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
846
|
+
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
847
|
+
feeRecipient: import("../index.ts").ExecutionAddressType;
|
|
848
|
+
gasLimit: import("@chainsafe/ssz").UintBigintType;
|
|
849
|
+
builderIndex: import("@chainsafe/ssz").UintNumberType;
|
|
850
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
851
|
+
value: import("@chainsafe/ssz").UintNumberType;
|
|
852
|
+
executionPayment: import("@chainsafe/ssz").UintNumberType;
|
|
853
|
+
blobKzgCommitments: ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
854
|
+
executionRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
855
|
+
}>;
|
|
762
856
|
payloadExpectedWithdrawals: ListCompositeType<ContainerType<{
|
|
763
857
|
index: import("@chainsafe/ssz").UintNumberType;
|
|
764
858
|
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -785,4 +879,37 @@ export declare const ExecutionPayloadEnvelopesByRangeRequest: ContainerType<{
|
|
|
785
879
|
startSlot: import("@chainsafe/ssz").UintNumberType;
|
|
786
880
|
count: import("@chainsafe/ssz").UintNumberType;
|
|
787
881
|
}>;
|
|
882
|
+
export declare const PayloadAttributes: ContainerType<{
|
|
883
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
884
|
+
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
885
|
+
suggestedFeeRecipient: import("../index.ts").StringType<string>;
|
|
886
|
+
withdrawals: ListCompositeType<ContainerType<{
|
|
887
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
888
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
889
|
+
address: import("../index.ts").ExecutionAddressType;
|
|
890
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
891
|
+
}>>;
|
|
892
|
+
parentBeaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
893
|
+
slotNumber: import("@chainsafe/ssz").UintNumberType;
|
|
894
|
+
}>;
|
|
895
|
+
export declare const SSEPayloadAttributes: ContainerType<{
|
|
896
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
897
|
+
proposalSlot: import("@chainsafe/ssz").UintNumberType;
|
|
898
|
+
parentBlockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
899
|
+
parentBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
900
|
+
parentBlockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
901
|
+
payloadAttributes: ContainerType<{
|
|
902
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
903
|
+
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
904
|
+
suggestedFeeRecipient: import("../index.ts").StringType<string>;
|
|
905
|
+
withdrawals: ListCompositeType<ContainerType<{
|
|
906
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
907
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
908
|
+
address: import("../index.ts").ExecutionAddressType;
|
|
909
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
910
|
+
}>>;
|
|
911
|
+
parentBeaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
912
|
+
slotNumber: import("@chainsafe/ssz").UintNumberType;
|
|
913
|
+
}>;
|
|
914
|
+
}>;
|
|
788
915
|
//# 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;;;;;;EAS/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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EASpC,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";
|
|
@@ -51,6 +52,7 @@ export const IndexedPayloadAttestation = new ContainerType({
|
|
|
51
52
|
signature: BLSSignature,
|
|
52
53
|
}, { typeName: "IndexedPayloadAttestation", jsonCase: "eth2" });
|
|
53
54
|
export const ProposerPreferences = new ContainerType({
|
|
55
|
+
dependentRoot: Root,
|
|
54
56
|
proposalSlot: Slot,
|
|
55
57
|
validatorIndex: ValidatorIndex,
|
|
56
58
|
feeRecipient: ExecutionAddress,
|
|
@@ -72,18 +74,24 @@ export const ExecutionPayloadBid = new ContainerType({
|
|
|
72
74
|
value: UintNum64,
|
|
73
75
|
executionPayment: UintNum64,
|
|
74
76
|
blobKzgCommitments: denebSsz.BlobKzgCommitments,
|
|
77
|
+
executionRequestsRoot: Root,
|
|
75
78
|
}, { typeName: "ExecutionPayloadBid", jsonCase: "eth2" });
|
|
76
79
|
export const SignedExecutionPayloadBid = new ContainerType({
|
|
77
80
|
message: ExecutionPayloadBid,
|
|
78
81
|
signature: BLSSignature,
|
|
79
82
|
}, { typeName: "SignedExecutionPayloadBid", jsonCase: "eth2" });
|
|
83
|
+
export const BlockAccessList = new ByteListType(MAX_BYTES_PER_TRANSACTION);
|
|
84
|
+
export const ExecutionPayload = new ContainerType({
|
|
85
|
+
...electraSsz.ExecutionPayload.fields,
|
|
86
|
+
blockAccessList: BlockAccessList, // New in GLOAS:EIP-7928
|
|
87
|
+
slotNumber: Slot, // New in GLOAS:EIP-7843
|
|
88
|
+
}, { typeName: "ExecutionPayload", jsonCase: "eth2" });
|
|
80
89
|
export const ExecutionPayloadEnvelope = new ContainerType({
|
|
81
|
-
payload:
|
|
90
|
+
payload: ExecutionPayload,
|
|
82
91
|
executionRequests: electraSsz.ExecutionRequests,
|
|
83
92
|
builderIndex: BuilderIndex,
|
|
84
93
|
beaconBlockRoot: Root,
|
|
85
|
-
|
|
86
|
-
stateRoot: Root,
|
|
94
|
+
parentBeaconBlockRoot: Root,
|
|
87
95
|
}, { typeName: "ExecutionPayloadEnvelope", jsonCase: "eth2" });
|
|
88
96
|
export const SignedExecutionPayloadEnvelope = new ContainerType({
|
|
89
97
|
message: ExecutionPayloadEnvelope,
|
|
@@ -105,6 +113,7 @@ export const BeaconBlockBody = new ContainerType({
|
|
|
105
113
|
// executionRequests: ExecutionRequests, // Removed in GLOAS:EIP7732
|
|
106
114
|
signedExecutionPayloadBid: SignedExecutionPayloadBid, // New in GLOAS:EIP7732
|
|
107
115
|
payloadAttestations: new ListCompositeType(PayloadAttestation, MAX_PAYLOAD_ATTESTATIONS), // New in GLOAS:EIP7732
|
|
116
|
+
parentExecutionRequests: electraSsz.ExecutionRequests, // New in GLOAS:EIP7732
|
|
108
117
|
}, { typeName: "BeaconBlockBody", jsonCase: "eth2", cachePermanentRootStruct: true });
|
|
109
118
|
export const BeaconBlock = new ContainerType({
|
|
110
119
|
...fuluSsz.BeaconBlock.fields,
|
|
@@ -150,7 +159,7 @@ export const BeaconState = new ContainerType({
|
|
|
150
159
|
nextSyncCommittee: altairSsz.SyncCommittee,
|
|
151
160
|
// Execution
|
|
152
161
|
// latestExecutionPayloadHeader: ExecutionPayloadHeader, // Removed in GLOAS:EIP7732
|
|
153
|
-
|
|
162
|
+
latestBlockHash: Bytes32, // New in GLOAS:EIP7732
|
|
154
163
|
// Withdrawals
|
|
155
164
|
nextWithdrawalIndex: capellaSsz.BeaconState.fields.nextWithdrawalIndex,
|
|
156
165
|
nextWithdrawalValidatorIndex: capellaSsz.BeaconState.fields.nextWithdrawalValidatorIndex,
|
|
@@ -171,7 +180,7 @@ export const BeaconState = new ContainerType({
|
|
|
171
180
|
executionPayloadAvailability: new BitVectorType(SLOTS_PER_HISTORICAL_ROOT), // New in GLOAS:EIP7732
|
|
172
181
|
builderPendingPayments: new VectorCompositeType(BuilderPendingPayment, 2 * SLOTS_PER_EPOCH), // New in GLOAS:EIP7732
|
|
173
182
|
builderPendingWithdrawals: new ListCompositeType(BuilderPendingWithdrawal, BUILDER_PENDING_WITHDRAWALS_LIMIT), // New in GLOAS:EIP7732
|
|
174
|
-
|
|
183
|
+
latestExecutionPayloadBid: ExecutionPayloadBid, // New in GLOAS:EIP7732
|
|
175
184
|
payloadExpectedWithdrawals: capellaSsz.Withdrawals, // New in GLOAS:EIP7732
|
|
176
185
|
ptcWindow: PtcWindow, // New in GLOAS:EIP7732
|
|
177
186
|
}, { typeName: "BeaconState", jsonCase: "eth2" });
|
|
@@ -187,4 +196,13 @@ export const DataColumnSidecar = new ContainerType({
|
|
|
187
196
|
}, { typeName: "DataColumnSidecar", jsonCase: "eth2" });
|
|
188
197
|
export const DataColumnSidecars = new ListCompositeType(DataColumnSidecar, NUMBER_OF_COLUMNS);
|
|
189
198
|
export const ExecutionPayloadEnvelopesByRangeRequest = new ContainerType({ startSlot: Slot, count: UintNum64 }, { typeName: "ExecutionPayloadEnvelopesByRangeRequest", jsonCase: "eth2" });
|
|
199
|
+
// PayloadAttributes primarily for SSE event
|
|
200
|
+
export const PayloadAttributes = new ContainerType({
|
|
201
|
+
...denebSsz.PayloadAttributes.fields,
|
|
202
|
+
slotNumber: Slot,
|
|
203
|
+
}, { typeName: "PayloadAttributes", jsonCase: "eth2" });
|
|
204
|
+
export const SSEPayloadAttributes = new ContainerType({
|
|
205
|
+
...bellatrixSsz.SSEPayloadAttributesCommon.fields,
|
|
206
|
+
payloadAttributes: PayloadAttributes,
|
|
207
|
+
}, { typeName: "SSEPayloadAttributes", jsonCase: "eth2" });
|
|
190
208
|
//# 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"}
|