@lodestar/types 1.43.0-dev.6641fd750e → 1.43.0-dev.7622a1076c

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.
@@ -1,4 +1,4 @@
1
- import { BitVectorType, ContainerType, ListBasicType, ListCompositeType, 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;
@@ -20,6 +20,8 @@ export declare const BuilderPendingPayment: ContainerType<{
20
20
  builderIndex: import("@chainsafe/ssz").UintNumberType;
21
21
  }>;
22
22
  }>;
23
+ export declare const PayloadTimelinessCommittee: VectorBasicType<import("@chainsafe/ssz").UintNumberType>;
24
+ export declare const PtcWindow: VectorCompositeType<VectorBasicType<import("@chainsafe/ssz").UintNumberType>>;
23
25
  export declare const PayloadAttestationData: ContainerType<{
24
26
  beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
25
27
  slot: import("@chainsafe/ssz").UintNumberType;
@@ -83,6 +85,7 @@ export declare const ExecutionPayloadBid: ContainerType<{
83
85
  value: import("@chainsafe/ssz").UintNumberType;
84
86
  executionPayment: import("@chainsafe/ssz").UintNumberType;
85
87
  blobKzgCommitments: ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
88
+ executionRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
86
89
  }>;
87
90
  export declare const SignedExecutionPayloadBid: ContainerType<{
88
91
  message: ContainerType<{
@@ -97,9 +100,37 @@ export declare const SignedExecutionPayloadBid: ContainerType<{
97
100
  value: import("@chainsafe/ssz").UintNumberType;
98
101
  executionPayment: import("@chainsafe/ssz").UintNumberType;
99
102
  blobKzgCommitments: ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
103
+ executionRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
100
104
  }>;
101
105
  signature: import("@chainsafe/ssz").ByteVectorType;
102
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
+ }>;
103
134
  export declare const ExecutionPayloadEnvelope: ContainerType<{
104
135
  payload: ContainerType<{
105
136
  parentHash: import("@chainsafe/ssz").ByteVectorType;
@@ -112,10 +143,10 @@ export declare const ExecutionPayloadEnvelope: ContainerType<{
112
143
  gasLimit: import("@chainsafe/ssz").UintNumberType;
113
144
  gasUsed: import("@chainsafe/ssz").UintNumberType;
114
145
  timestamp: import("@chainsafe/ssz").UintNumberType;
115
- extraData: import("@chainsafe/ssz").ByteListType;
146
+ extraData: ByteListType;
116
147
  baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
117
148
  blockHash: import("@chainsafe/ssz").ByteVectorType;
118
- transactions: ListCompositeType<import("@chainsafe/ssz").ByteListType>;
149
+ transactions: ListCompositeType<ByteListType>;
119
150
  withdrawals: ListCompositeType<ContainerType<{
120
151
  index: import("@chainsafe/ssz").UintNumberType;
121
152
  validatorIndex: import("@chainsafe/ssz").UintNumberType;
@@ -124,6 +155,8 @@ export declare const ExecutionPayloadEnvelope: ContainerType<{
124
155
  }>>;
125
156
  blobGasUsed: import("@chainsafe/ssz").UintBigintType;
126
157
  excessBlobGas: import("@chainsafe/ssz").UintBigintType;
158
+ blockAccessList: ByteListType;
159
+ slotNumber: import("@chainsafe/ssz").UintNumberType;
127
160
  }>;
128
161
  executionRequests: ContainerType<{
129
162
  deposits: ListCompositeType<ContainerType<{
@@ -146,8 +179,6 @@ export declare const ExecutionPayloadEnvelope: ContainerType<{
146
179
  }>;
147
180
  builderIndex: import("@chainsafe/ssz").UintNumberType;
148
181
  beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
149
- slot: import("@chainsafe/ssz").UintNumberType;
150
- stateRoot: import("@chainsafe/ssz").ByteVectorType;
151
182
  }>;
152
183
  export declare const SignedExecutionPayloadEnvelope: ContainerType<{
153
184
  message: ContainerType<{
@@ -162,10 +193,10 @@ export declare const SignedExecutionPayloadEnvelope: ContainerType<{
162
193
  gasLimit: import("@chainsafe/ssz").UintNumberType;
163
194
  gasUsed: import("@chainsafe/ssz").UintNumberType;
164
195
  timestamp: import("@chainsafe/ssz").UintNumberType;
165
- extraData: import("@chainsafe/ssz").ByteListType;
196
+ extraData: ByteListType;
166
197
  baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
167
198
  blockHash: import("@chainsafe/ssz").ByteVectorType;
168
- transactions: ListCompositeType<import("@chainsafe/ssz").ByteListType>;
199
+ transactions: ListCompositeType<ByteListType>;
169
200
  withdrawals: ListCompositeType<ContainerType<{
170
201
  index: import("@chainsafe/ssz").UintNumberType;
171
202
  validatorIndex: import("@chainsafe/ssz").UintNumberType;
@@ -174,6 +205,8 @@ export declare const SignedExecutionPayloadEnvelope: ContainerType<{
174
205
  }>>;
175
206
  blobGasUsed: import("@chainsafe/ssz").UintBigintType;
176
207
  excessBlobGas: import("@chainsafe/ssz").UintBigintType;
208
+ blockAccessList: ByteListType;
209
+ slotNumber: import("@chainsafe/ssz").UintNumberType;
177
210
  }>;
178
211
  executionRequests: ContainerType<{
179
212
  deposits: ListCompositeType<ContainerType<{
@@ -196,8 +229,6 @@ export declare const SignedExecutionPayloadEnvelope: ContainerType<{
196
229
  }>;
197
230
  builderIndex: import("@chainsafe/ssz").UintNumberType;
198
231
  beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
199
- slot: import("@chainsafe/ssz").UintNumberType;
200
- stateRoot: import("@chainsafe/ssz").ByteVectorType;
201
232
  }>;
202
233
  signature: import("@chainsafe/ssz").ByteVectorType;
203
234
  }>;
@@ -326,6 +357,7 @@ export declare const BeaconBlockBody: ContainerType<{
326
357
  value: import("@chainsafe/ssz").UintNumberType;
327
358
  executionPayment: import("@chainsafe/ssz").UintNumberType;
328
359
  blobKzgCommitments: ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
360
+ executionRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
329
361
  }>;
330
362
  signature: import("@chainsafe/ssz").ByteVectorType;
331
363
  }>;
@@ -339,6 +371,25 @@ export declare const BeaconBlockBody: ContainerType<{
339
371
  }>;
340
372
  signature: import("@chainsafe/ssz").ByteVectorType;
341
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
+ }>;
342
393
  }>;
343
394
  export declare const BeaconBlock: ContainerType<{
344
395
  slot: import("@chainsafe/ssz").UintNumberType;
@@ -470,6 +521,7 @@ export declare const BeaconBlock: ContainerType<{
470
521
  value: import("@chainsafe/ssz").UintNumberType;
471
522
  executionPayment: import("@chainsafe/ssz").UintNumberType;
472
523
  blobKzgCommitments: ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
524
+ executionRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
473
525
  }>;
474
526
  signature: import("@chainsafe/ssz").ByteVectorType;
475
527
  }>;
@@ -483,6 +535,25 @@ export declare const BeaconBlock: ContainerType<{
483
535
  }>;
484
536
  signature: import("@chainsafe/ssz").ByteVectorType;
485
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
+ }>;
486
557
  }>;
487
558
  }>;
488
559
  export declare const SignedBeaconBlock: ContainerType<{
@@ -616,6 +687,7 @@ export declare const SignedBeaconBlock: ContainerType<{
616
687
  value: import("@chainsafe/ssz").UintNumberType;
617
688
  executionPayment: import("@chainsafe/ssz").UintNumberType;
618
689
  blobKzgCommitments: ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
690
+ executionRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
619
691
  }>;
620
692
  signature: import("@chainsafe/ssz").ByteVectorType;
621
693
  }>;
@@ -629,6 +701,25 @@ export declare const SignedBeaconBlock: ContainerType<{
629
701
  }>;
630
702
  signature: import("@chainsafe/ssz").ByteVectorType;
631
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
+ }>;
632
723
  }>;
633
724
  }>;
634
725
  signature: import("@chainsafe/ssz").ByteVectorType;
@@ -666,7 +757,7 @@ export declare const BeaconState: ContainerType<{
666
757
  validators: ListCompositeType<import("../phase0/validator.ts").ValidatorNodeStructType>;
667
758
  balances: import("@chainsafe/ssz").ListUintNum64Type;
668
759
  randaoMixes: VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
669
- slashings: import("@chainsafe/ssz").VectorBasicType<import("@chainsafe/ssz").UintNumberType>;
760
+ slashings: VectorBasicType<import("@chainsafe/ssz").UintNumberType>;
670
761
  previousEpochParticipation: ListBasicType<import("@chainsafe/ssz").UintNumberType>;
671
762
  currentEpochParticipation: ListBasicType<import("@chainsafe/ssz").UintNumberType>;
672
763
  justificationBits: BitVectorType;
@@ -691,19 +782,7 @@ export declare const BeaconState: ContainerType<{
691
782
  pubkeys: VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
692
783
  aggregatePubkey: import("@chainsafe/ssz").ByteVectorType;
693
784
  }>;
694
- latestExecutionPayloadBid: ContainerType<{
695
- parentBlockHash: import("@chainsafe/ssz").ByteVectorType;
696
- parentBlockRoot: import("@chainsafe/ssz").ByteVectorType;
697
- blockHash: import("@chainsafe/ssz").ByteVectorType;
698
- prevRandao: import("@chainsafe/ssz").ByteVectorType;
699
- feeRecipient: import("../index.ts").ExecutionAddressType;
700
- gasLimit: import("@chainsafe/ssz").UintBigintType;
701
- builderIndex: import("@chainsafe/ssz").UintNumberType;
702
- slot: import("@chainsafe/ssz").UintNumberType;
703
- value: import("@chainsafe/ssz").UintNumberType;
704
- executionPayment: import("@chainsafe/ssz").UintNumberType;
705
- blobKzgCommitments: ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
706
- }>;
785
+ latestBlockHash: import("@chainsafe/ssz").ByteVectorType;
707
786
  nextWithdrawalIndex: import("@chainsafe/ssz").UintNumberType;
708
787
  nextWithdrawalValidatorIndex: import("@chainsafe/ssz").UintNumberType;
709
788
  historicalSummaries: ListCompositeType<ContainerType<{
@@ -732,7 +811,7 @@ export declare const BeaconState: ContainerType<{
732
811
  sourceIndex: import("@chainsafe/ssz").UintNumberType;
733
812
  targetIndex: import("@chainsafe/ssz").UintNumberType;
734
813
  }>>;
735
- proposerLookahead: import("@chainsafe/ssz").VectorBasicType<import("@chainsafe/ssz").UintNumberType>;
814
+ proposerLookahead: VectorBasicType<import("@chainsafe/ssz").UintNumberType>;
736
815
  builders: ListCompositeType<ContainerType<{
737
816
  pubkey: import("@chainsafe/ssz").ByteVectorType;
738
817
  version: import("@chainsafe/ssz").UintNumberType;
@@ -756,13 +835,27 @@ export declare const BeaconState: ContainerType<{
756
835
  amount: import("@chainsafe/ssz").UintNumberType;
757
836
  builderIndex: import("@chainsafe/ssz").UintNumberType;
758
837
  }>>;
759
- latestBlockHash: import("@chainsafe/ssz").ByteVectorType;
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
+ }>;
760
852
  payloadExpectedWithdrawals: ListCompositeType<ContainerType<{
761
853
  index: import("@chainsafe/ssz").UintNumberType;
762
854
  validatorIndex: import("@chainsafe/ssz").UintNumberType;
763
855
  address: import("../index.ts").ExecutionAddressType;
764
856
  amount: import("@chainsafe/ssz").UintBigintType;
765
857
  }>>;
858
+ ptcWindow: VectorCompositeType<VectorBasicType<import("@chainsafe/ssz").UintNumberType>>;
766
859
  }>;
767
860
  export declare const DataColumnSidecar: ContainerType<{
768
861
  index: import("@chainsafe/ssz").UintNumberType;
@@ -782,4 +875,37 @@ export declare const ExecutionPayloadEnvelopesByRangeRequest: ContainerType<{
782
875
  startSlot: import("@chainsafe/ssz").UintNumberType;
783
876
  count: import("@chainsafe/ssz").UintNumberType;
784
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
+ }>;
785
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,EAAC,aAAa,EAAE,aAAa,EAAE,aAAa,EAAE,iBAAiB,EAAE,mBAAmB,EAAC,MAAM,gBAAgB,CAAC;AAuCnH,eAAO,MAAM,OAAO;;;;;;;EAUnB,CAAC;AAEF,eAAO,MAAM,wBAAwB;;;;EAOpC,CAAC;AAEF,eAAO,MAAM,qBAAqB;;;;;;;EAMjC,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;;;;;;;;;;;;EAe/B,CAAC;AAEF,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;EAMrC,CAAC;AAEF,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAUpC,CAAC;AAEF,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAM1C,CAAC;AAEF,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAmB3B,CAAC;AAEF,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAMvB,CAAC;AAEF,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAM7B,CAAC;AAEF,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA8DvB,CAAC;AAEF,eAAO,MAAM,iBAAiB;;;;;;EAY7B,CAAC;AAEF,eAAO,MAAM,kBAAkB;;;;;;GAA8D,CAAC;AAE9F,eAAO,MAAM,uCAAuC;;;EAGnD,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"}
@@ -1,6 +1,7 @@
1
- import { BitVectorType, ContainerType, ListBasicType, ListCompositeType, VectorCompositeType } from "@chainsafe/ssz";
2
- import { BUILDER_PENDING_WITHDRAWALS_LIMIT, BUILDER_REGISTRY_LIMIT, HISTORICAL_ROOTS_LIMIT, MAX_PAYLOAD_ATTESTATIONS, 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";
@@ -27,6 +28,8 @@ export const BuilderPendingPayment = new ContainerType({
27
28
  weight: UintNum64,
28
29
  withdrawal: BuilderPendingWithdrawal,
29
30
  }, { typeName: "BuilderPendingPayment", jsonCase: "eth2" });
31
+ export const PayloadTimelinessCommittee = new VectorBasicType(ValidatorIndex, PTC_SIZE);
32
+ export const PtcWindow = new VectorCompositeType(PayloadTimelinessCommittee, (2 + MIN_SEED_LOOKAHEAD) * SLOTS_PER_EPOCH);
30
33
  export const PayloadAttestationData = new ContainerType({
31
34
  beaconBlockRoot: Root,
32
35
  slot: Slot,
@@ -70,18 +73,23 @@ export const ExecutionPayloadBid = new ContainerType({
70
73
  value: UintNum64,
71
74
  executionPayment: UintNum64,
72
75
  blobKzgCommitments: denebSsz.BlobKzgCommitments,
76
+ executionRequestsRoot: Root,
73
77
  }, { typeName: "ExecutionPayloadBid", jsonCase: "eth2" });
74
78
  export const SignedExecutionPayloadBid = new ContainerType({
75
79
  message: ExecutionPayloadBid,
76
80
  signature: BLSSignature,
77
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" });
78
88
  export const ExecutionPayloadEnvelope = new ContainerType({
79
- payload: electraSsz.ExecutionPayload,
89
+ payload: ExecutionPayload,
80
90
  executionRequests: electraSsz.ExecutionRequests,
81
91
  builderIndex: BuilderIndex,
82
92
  beaconBlockRoot: Root,
83
- slot: Slot,
84
- stateRoot: Root,
85
93
  }, { typeName: "ExecutionPayloadEnvelope", jsonCase: "eth2" });
86
94
  export const SignedExecutionPayloadEnvelope = new ContainerType({
87
95
  message: ExecutionPayloadEnvelope,
@@ -103,6 +111,7 @@ export const BeaconBlockBody = new ContainerType({
103
111
  // executionRequests: ExecutionRequests, // Removed in GLOAS:EIP7732
104
112
  signedExecutionPayloadBid: SignedExecutionPayloadBid, // New in GLOAS:EIP7732
105
113
  payloadAttestations: new ListCompositeType(PayloadAttestation, MAX_PAYLOAD_ATTESTATIONS), // New in GLOAS:EIP7732
114
+ parentExecutionRequests: electraSsz.ExecutionRequests, // New in GLOAS:EIP7732
106
115
  }, { typeName: "BeaconBlockBody", jsonCase: "eth2", cachePermanentRootStruct: true });
107
116
  export const BeaconBlock = new ContainerType({
108
117
  ...fuluSsz.BeaconBlock.fields,
@@ -148,7 +157,7 @@ export const BeaconState = new ContainerType({
148
157
  nextSyncCommittee: altairSsz.SyncCommittee,
149
158
  // Execution
150
159
  // latestExecutionPayloadHeader: ExecutionPayloadHeader, // Removed in GLOAS:EIP7732
151
- latestExecutionPayloadBid: ExecutionPayloadBid, // New in GLOAS:EIP7732
160
+ latestBlockHash: Bytes32, // New in GLOAS:EIP7732
152
161
  // Withdrawals
153
162
  nextWithdrawalIndex: capellaSsz.BeaconState.fields.nextWithdrawalIndex,
154
163
  nextWithdrawalValidatorIndex: capellaSsz.BeaconState.fields.nextWithdrawalValidatorIndex,
@@ -169,8 +178,9 @@ export const BeaconState = new ContainerType({
169
178
  executionPayloadAvailability: new BitVectorType(SLOTS_PER_HISTORICAL_ROOT), // New in GLOAS:EIP7732
170
179
  builderPendingPayments: new VectorCompositeType(BuilderPendingPayment, 2 * SLOTS_PER_EPOCH), // New in GLOAS:EIP7732
171
180
  builderPendingWithdrawals: new ListCompositeType(BuilderPendingWithdrawal, BUILDER_PENDING_WITHDRAWALS_LIMIT), // New in GLOAS:EIP7732
172
- latestBlockHash: Bytes32, // New in GLOAS:EIP7732
181
+ latestExecutionPayloadBid: ExecutionPayloadBid, // New in GLOAS:EIP7732
173
182
  payloadExpectedWithdrawals: capellaSsz.Withdrawals, // New in GLOAS:EIP7732
183
+ ptcWindow: PtcWindow, // New in GLOAS:EIP7732
174
184
  }, { typeName: "BeaconState", jsonCase: "eth2" });
175
185
  export const DataColumnSidecar = new ContainerType({
176
186
  index: fuluSsz.DataColumnSidecar.fields.index,
@@ -184,4 +194,13 @@ export const DataColumnSidecar = new ContainerType({
184
194
  }, { typeName: "DataColumnSidecar", jsonCase: "eth2" });
185
195
  export const DataColumnSidecars = new ListCompositeType(DataColumnSidecar, NUMBER_OF_COLUMNS);
186
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" });
187
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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"}
@@ -3,14 +3,18 @@ import * as ssz from "./sszTypes.js";
3
3
  export type Builder = ValueOf<typeof ssz.Builder>;
4
4
  export type BuilderPendingWithdrawal = ValueOf<typeof ssz.BuilderPendingWithdrawal>;
5
5
  export type BuilderPendingPayment = ValueOf<typeof ssz.BuilderPendingPayment>;
6
+ export type PayloadTimelinessCommittee = ValueOf<typeof ssz.PayloadTimelinessCommittee>;
7
+ export type PtcWindow = ValueOf<typeof ssz.PtcWindow>;
6
8
  export type PayloadAttestationData = ValueOf<typeof ssz.PayloadAttestationData>;
7
9
  export type PayloadAttestation = ValueOf<typeof ssz.PayloadAttestation>;
8
10
  export type PayloadAttestationMessage = ValueOf<typeof ssz.PayloadAttestationMessage>;
9
11
  export type IndexedPayloadAttestation = ValueOf<typeof ssz.IndexedPayloadAttestation>;
10
12
  export type ProposerPreferences = ValueOf<typeof ssz.ProposerPreferences>;
11
13
  export type SignedProposerPreferences = ValueOf<typeof ssz.SignedProposerPreferences>;
14
+ export type ExecutionPayload = ValueOf<typeof ssz.ExecutionPayload>;
12
15
  export type ExecutionPayloadBid = ValueOf<typeof ssz.ExecutionPayloadBid>;
13
16
  export type SignedExecutionPayloadBid = ValueOf<typeof ssz.SignedExecutionPayloadBid>;
17
+ export type BlockAccessList = ValueOf<typeof ssz.BlockAccessList>;
14
18
  export type ExecutionPayloadEnvelope = ValueOf<typeof ssz.ExecutionPayloadEnvelope>;
15
19
  export type SignedExecutionPayloadEnvelope = ValueOf<typeof ssz.SignedExecutionPayloadEnvelope>;
16
20
  export type BeaconBlockBody = ValueOf<typeof ssz.BeaconBlockBody>;
@@ -20,4 +24,6 @@ export type BeaconState = ValueOf<typeof ssz.BeaconState>;
20
24
  export type DataColumnSidecar = ValueOf<typeof ssz.DataColumnSidecar>;
21
25
  export type DataColumnSidecars = ValueOf<typeof ssz.DataColumnSidecars>;
22
26
  export type ExecutionPayloadEnvelopesByRangeRequest = ValueOf<typeof ssz.ExecutionPayloadEnvelopesByRangeRequest>;
27
+ export type PayloadAttributes = ValueOf<typeof ssz.PayloadAttributes>;
28
+ export type SSEPayloadAttributes = ValueOf<typeof ssz.SSEPayloadAttributes>;
23
29
  //# sourceMappingURL=types.d.ts.map
@@ -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,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"}