@graphprotocol/go 10.5.2

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.
Files changed (65) hide show
  1. package/dist/AnnouncementBanner/AnnouncementBanner.d.ts +19 -0
  2. package/dist/AnnouncementBanner/AnnouncementBanner.d.ts.map +1 -0
  3. package/dist/AnnouncementBanner/AnnouncementBanner.js +116 -0
  4. package/dist/AnnouncementBanner/index.d.ts +2 -0
  5. package/dist/AnnouncementBanner/index.d.ts.map +1 -0
  6. package/dist/CookieBanner/CookieBanner.d.ts +17 -0
  7. package/dist/CookieBanner/CookieBanner.d.ts.map +1 -0
  8. package/dist/CookieBanner/CookieBanner.js +195 -0
  9. package/dist/CookieBanner/index.d.ts +2 -0
  10. package/dist/CookieBanner/index.d.ts.map +1 -0
  11. package/dist/FeaturedSubgraphs/FeaturedSubgraphsGrid.d.ts +4 -0
  12. package/dist/FeaturedSubgraphs/FeaturedSubgraphsGrid.d.ts.map +1 -0
  13. package/dist/FeaturedSubgraphs/FeaturedSubgraphsGrid.js +42 -0
  14. package/dist/FeaturedSubgraphs/generated/gql.d.ts +42 -0
  15. package/dist/FeaturedSubgraphs/generated/gql.d.ts.map +1 -0
  16. package/dist/FeaturedSubgraphs/generated/gql.js +11 -0
  17. package/dist/FeaturedSubgraphs/generated/graphql.d.ts +10835 -0
  18. package/dist/FeaturedSubgraphs/generated/graphql.d.ts.map +1 -0
  19. package/dist/FeaturedSubgraphs/generated/graphql.js +403 -0
  20. package/dist/FeaturedSubgraphs/generated/index.d.ts +2 -0
  21. package/dist/FeaturedSubgraphs/generated/index.d.ts.map +1 -0
  22. package/dist/FeaturedSubgraphs/index.d.ts +3 -0
  23. package/dist/FeaturedSubgraphs/index.d.ts.map +1 -0
  24. package/dist/FeaturedSubgraphs/useFeaturedSubgrahsQuery.d.ts +28 -0
  25. package/dist/FeaturedSubgraphs/useFeaturedSubgrahsQuery.d.ts.map +1 -0
  26. package/dist/FeaturedSubgraphs/useFeaturedSubgrahsQuery.js +109 -0
  27. package/dist/GlobalFooter/GlobalFooter.d.ts +28 -0
  28. package/dist/GlobalFooter/GlobalFooter.d.ts.map +1 -0
  29. package/dist/GlobalFooter/GlobalFooter.js +300 -0
  30. package/dist/GlobalFooter/index.d.ts +2 -0
  31. package/dist/GlobalFooter/index.d.ts.map +1 -0
  32. package/dist/GlobalHeader/GlobalHeader.d.ts +4477 -0
  33. package/dist/GlobalHeader/GlobalHeader.d.ts.map +1 -0
  34. package/dist/GlobalHeader/GlobalHeader.js +1045 -0
  35. package/dist/GlobalHeader/index.d.ts +2 -0
  36. package/dist/GlobalHeader/index.d.ts.map +1 -0
  37. package/dist/MarketingNavbar/MarketingNavbar.d.ts +9 -0
  38. package/dist/MarketingNavbar/MarketingNavbar.d.ts.map +1 -0
  39. package/dist/MarketingNavbar/MarketingNavbar.js +566 -0
  40. package/dist/MarketingNavbar/index.d.ts +2 -0
  41. package/dist/MarketingNavbar/index.d.ts.map +1 -0
  42. package/dist/NPSForm/NPSForm.d.ts +20 -0
  43. package/dist/NPSForm/NPSForm.d.ts.map +1 -0
  44. package/dist/NPSForm/NPSForm.js +205 -0
  45. package/dist/NPSForm/index.d.ts +2 -0
  46. package/dist/NPSForm/index.d.ts.map +1 -0
  47. package/dist/NetworkIcon/NetworkIcon.d.ts +11 -0
  48. package/dist/NetworkIcon/NetworkIcon.d.ts.map +1 -0
  49. package/dist/NetworkIcon/NetworkIcon.js +443 -0
  50. package/dist/NetworkIcon/index.d.ts +2 -0
  51. package/dist/NetworkIcon/index.d.ts.map +1 -0
  52. package/dist/SupportModal/SupportModal.d.ts +6 -0
  53. package/dist/SupportModal/SupportModal.d.ts.map +1 -0
  54. package/dist/SupportModal/SupportModal.js +310 -0
  55. package/dist/SupportModal/index.d.ts +2 -0
  56. package/dist/SupportModal/index.d.ts.map +1 -0
  57. package/dist/SupportModal/submitToZendesk.d.ts +12 -0
  58. package/dist/SupportModal/submitToZendesk.d.ts.map +1 -0
  59. package/dist/SupportModal/submitToZendesk.js +26 -0
  60. package/dist/index.d.ts +10 -0
  61. package/dist/index.d.ts.map +1 -0
  62. package/dist/index.js +23 -0
  63. package/dist/jsx/src/jsx-runtime.js +10 -0
  64. package/dist/jsx/src/parseProps.js +48 -0
  65. package/package.json +95 -0
@@ -0,0 +1,4477 @@
1
+ import { DistributiveOmit } from '@graphprotocol/common';
2
+ import { ButtonOrLinkElement, ButtonOrLinkHref, ButtonProps, LinkProps, LocaleSwitcherProps } from '@graphprotocol/gds';
3
+ import { HTMLAttributes, MouseEvent, ReactNode } from 'react';
4
+ import { SupportModalProps } from '../SupportModal';
5
+ type NavItem<ExtraProps = Record<string, unknown>> = {
6
+ id?: string;
7
+ label: ReactNode;
8
+ description?: ReactNode;
9
+ active?: boolean | RegExp;
10
+ disabled?: boolean;
11
+ } & ({
12
+ href: NonNullable<ButtonOrLinkHref>;
13
+ subItems?: never;
14
+ onClick?: (event: MouseEvent) => void;
15
+ } | {
16
+ href?: never;
17
+ subItems: NavItem<ExtraProps>[];
18
+ onClick?: (event: MouseEvent) => void;
19
+ } | {
20
+ href?: never;
21
+ subItems?: never;
22
+ onClick: (event: MouseEvent) => void;
23
+ }) & ExtraProps;
24
+ type Product = {
25
+ isDefault?: boolean;
26
+ name: ReactNode;
27
+ tag?: ReactNode;
28
+ description?: ReactNode;
29
+ href: string;
30
+ navItems?: NavItem[];
31
+ };
32
+ type Products = Record<string, Product>;
33
+ type OptionallyResponsiveContent = ReactNode | (ReactNode | null)[];
34
+ declare const DEFAULT_PRODUCTS: import('@graphprotocol/gds').Translatable<{
35
+ ar: {
36
+ components: {
37
+ appLauncher: {
38
+ apps: string;
39
+ };
40
+ copyButton: {
41
+ copy: string;
42
+ copied: string;
43
+ };
44
+ cookieBanner: {
45
+ header: string;
46
+ description: string;
47
+ privacyPolicy: string;
48
+ essentialsOnly: string;
49
+ allowAll: string;
50
+ save: string;
51
+ updateSettings: string;
52
+ };
53
+ globalFooter: {
54
+ home: string;
55
+ blog: string;
56
+ jobs: string;
57
+ docs: string;
58
+ pastEvents: string;
59
+ status: string;
60
+ testnet: string;
61
+ privacyPolicy: string;
62
+ termsOfService: string;
63
+ brandAssets: string;
64
+ partnershipRequests: string;
65
+ forum: string;
66
+ security: string;
67
+ newsletterInvalidEmail: string;
68
+ newsletterError: string;
69
+ newsletterSuccess: string;
70
+ };
71
+ globalHeader: {
72
+ home: string;
73
+ products: string;
74
+ pricing: string;
75
+ ecosystem: string;
76
+ blog: string;
77
+ jobs: string;
78
+ docs: string;
79
+ language: string;
80
+ support: string;
81
+ connect: string;
82
+ back: string;
83
+ goBackToMainNavigation: string;
84
+ mainNavigation: string;
85
+ openMenu: string;
86
+ privacyPolicy: string;
87
+ };
88
+ loadingIndicator: {
89
+ loading: string;
90
+ };
91
+ localeSwitcher: {
92
+ language: string;
93
+ };
94
+ marketingNavbar: {
95
+ products: {
96
+ title: string;
97
+ subgraphs: {
98
+ title: string;
99
+ description: string;
100
+ graphExplorer: {
101
+ description: string;
102
+ };
103
+ subgraphStudio: {
104
+ description: string;
105
+ };
106
+ aside: {
107
+ title: string;
108
+ findSubgraphs: string;
109
+ buildSubgraphs: string;
110
+ substreamsPoweredSubgraphs: string;
111
+ };
112
+ };
113
+ substreams: {
114
+ title: string;
115
+ description: string;
116
+ substreamsDev: {
117
+ description: string;
118
+ };
119
+ theGraphMarket: {
120
+ description: string;
121
+ };
122
+ aside: {
123
+ title: string;
124
+ whatAreSubstreams: string;
125
+ buildSubstreams: string;
126
+ neverMissData: string;
127
+ chainsAndEndpoints: string;
128
+ };
129
+ };
130
+ };
131
+ networks: {
132
+ title: string;
133
+ seeAll: string;
134
+ };
135
+ participate: {
136
+ title: string;
137
+ developers: {
138
+ title: string;
139
+ docs: string;
140
+ subgraphQuickStart: string;
141
+ substreamsQuickStart: string;
142
+ };
143
+ delegators: {
144
+ title: string;
145
+ delegate: string;
146
+ whatIsTheGraph: string;
147
+ whatIsDelegating: string;
148
+ };
149
+ indexers: {
150
+ title: string;
151
+ graphNode: string;
152
+ firehose: string;
153
+ graphcast: string;
154
+ docs: string;
155
+ };
156
+ };
157
+ ecosystem: {
158
+ title: string;
159
+ coreDevs: {
160
+ title: string;
161
+ };
162
+ daos: {
163
+ title: string;
164
+ infraDAO: string;
165
+ buildersDAO: string;
166
+ advocatesDAO: string;
167
+ };
168
+ apps: {
169
+ title: string;
170
+ geo: string;
171
+ };
172
+ events: {
173
+ title: string;
174
+ };
175
+ governance: {
176
+ title: string;
177
+ };
178
+ grants: {
179
+ title: string;
180
+ };
181
+ jobs: {
182
+ title: string;
183
+ };
184
+ };
185
+ resources: {
186
+ title: string;
187
+ learn: {
188
+ title: string;
189
+ whatIsTheGraph: string;
190
+ blog: string;
191
+ basecamp: string;
192
+ academy: string;
193
+ };
194
+ planning: {
195
+ title: string;
196
+ forum: string;
197
+ gipProcess: string;
198
+ writeAGip: string;
199
+ roadmap: string;
200
+ };
201
+ podcastsAndVideos: {
202
+ title: string;
203
+ grtiq: string;
204
+ youtube: string;
205
+ };
206
+ brand: {
207
+ title: string;
208
+ };
209
+ };
210
+ pricing: {
211
+ title: string;
212
+ studio: {
213
+ title: string;
214
+ };
215
+ substreams: {
216
+ title: string;
217
+ };
218
+ };
219
+ docs: {
220
+ title: string;
221
+ };
222
+ };
223
+ };
224
+ };
225
+ cs: {
226
+ components: {
227
+ appLauncher: {
228
+ apps: string;
229
+ };
230
+ copyButton: {
231
+ copy: string;
232
+ copied: string;
233
+ };
234
+ cookieBanner: {
235
+ header: string;
236
+ description: string;
237
+ privacyPolicy: string;
238
+ essentialsOnly: string;
239
+ allowAll: string;
240
+ save: string;
241
+ updateSettings: string;
242
+ };
243
+ globalFooter: {
244
+ home: string;
245
+ blog: string;
246
+ jobs: string;
247
+ docs: string;
248
+ pastEvents: string;
249
+ status: string;
250
+ testnet: string;
251
+ privacyPolicy: string;
252
+ termsOfService: string;
253
+ brandAssets: string;
254
+ partnershipRequests: string;
255
+ forum: string;
256
+ security: string;
257
+ newsletterInvalidEmail: string;
258
+ newsletterError: string;
259
+ newsletterSuccess: string;
260
+ };
261
+ globalHeader: {
262
+ home: string;
263
+ products: string;
264
+ pricing: string;
265
+ ecosystem: string;
266
+ blog: string;
267
+ jobs: string;
268
+ docs: string;
269
+ language: string;
270
+ support: string;
271
+ connect: string;
272
+ back: string;
273
+ goBackToMainNavigation: string;
274
+ mainNavigation: string;
275
+ openMenu: string;
276
+ privacyPolicy: string;
277
+ };
278
+ loadingIndicator: {
279
+ loading: string;
280
+ };
281
+ localeSwitcher: {
282
+ language: string;
283
+ };
284
+ marketingNavbar: {
285
+ products: {
286
+ title: string;
287
+ subgraphs: {
288
+ title: string;
289
+ description: string;
290
+ graphExplorer: {
291
+ description: string;
292
+ };
293
+ subgraphStudio: {
294
+ description: string;
295
+ };
296
+ aside: {
297
+ title: string;
298
+ findSubgraphs: string;
299
+ buildSubgraphs: string;
300
+ substreamsPoweredSubgraphs: string;
301
+ };
302
+ };
303
+ substreams: {
304
+ title: string;
305
+ description: string;
306
+ substreamsDev: {
307
+ description: string;
308
+ };
309
+ theGraphMarket: {
310
+ description: string;
311
+ };
312
+ aside: {
313
+ title: string;
314
+ whatAreSubstreams: string;
315
+ buildSubstreams: string;
316
+ neverMissData: string;
317
+ chainsAndEndpoints: string;
318
+ };
319
+ };
320
+ };
321
+ networks: {
322
+ title: string;
323
+ seeAll: string;
324
+ };
325
+ participate: {
326
+ title: string;
327
+ developers: {
328
+ title: string;
329
+ docs: string;
330
+ subgraphQuickStart: string;
331
+ substreamsQuickStart: string;
332
+ };
333
+ delegators: {
334
+ title: string;
335
+ delegate: string;
336
+ whatIsTheGraph: string;
337
+ whatIsDelegating: string;
338
+ };
339
+ indexers: {
340
+ title: string;
341
+ graphNode: string;
342
+ firehose: string;
343
+ graphcast: string;
344
+ docs: string;
345
+ };
346
+ };
347
+ ecosystem: {
348
+ title: string;
349
+ coreDevs: {
350
+ title: string;
351
+ };
352
+ daos: {
353
+ title: string;
354
+ infraDAO: string;
355
+ buildersDAO: string;
356
+ advocatesDAO: string;
357
+ };
358
+ apps: {
359
+ title: string;
360
+ geo: string;
361
+ };
362
+ events: {
363
+ title: string;
364
+ };
365
+ governance: {
366
+ title: string;
367
+ };
368
+ grants: {
369
+ title: string;
370
+ };
371
+ jobs: {
372
+ title: string;
373
+ };
374
+ };
375
+ resources: {
376
+ title: string;
377
+ learn: {
378
+ title: string;
379
+ whatIsTheGraph: string;
380
+ blog: string;
381
+ basecamp: string;
382
+ academy: string;
383
+ };
384
+ planning: {
385
+ title: string;
386
+ forum: string;
387
+ gipProcess: string;
388
+ writeAGip: string;
389
+ roadmap: string;
390
+ };
391
+ podcastsAndVideos: {
392
+ title: string;
393
+ grtiq: string;
394
+ youtube: string;
395
+ };
396
+ brand: {
397
+ title: string;
398
+ };
399
+ };
400
+ pricing: {
401
+ title: string;
402
+ studio: {
403
+ title: string;
404
+ };
405
+ substreams: {
406
+ title: string;
407
+ };
408
+ };
409
+ docs: {
410
+ title: string;
411
+ };
412
+ };
413
+ };
414
+ };
415
+ de: {
416
+ components: {
417
+ appLauncher: {
418
+ apps: string;
419
+ };
420
+ copyButton: {
421
+ copy: string;
422
+ copied: string;
423
+ };
424
+ cookieBanner: {
425
+ header: string;
426
+ description: string;
427
+ privacyPolicy: string;
428
+ essentialsOnly: string;
429
+ allowAll: string;
430
+ save: string;
431
+ updateSettings: string;
432
+ };
433
+ globalFooter: {
434
+ home: string;
435
+ blog: string;
436
+ jobs: string;
437
+ docs: string;
438
+ pastEvents: string;
439
+ status: string;
440
+ testnet: string;
441
+ privacyPolicy: string;
442
+ termsOfService: string;
443
+ brandAssets: string;
444
+ partnershipRequests: string;
445
+ forum: string;
446
+ security: string;
447
+ newsletterInvalidEmail: string;
448
+ newsletterError: string;
449
+ newsletterSuccess: string;
450
+ };
451
+ globalHeader: {
452
+ home: string;
453
+ products: string;
454
+ pricing: string;
455
+ ecosystem: string;
456
+ blog: string;
457
+ jobs: string;
458
+ docs: string;
459
+ language: string;
460
+ support: string;
461
+ connect: string;
462
+ back: string;
463
+ goBackToMainNavigation: string;
464
+ mainNavigation: string;
465
+ openMenu: string;
466
+ privacyPolicy: string;
467
+ };
468
+ loadingIndicator: {
469
+ loading: string;
470
+ };
471
+ localeSwitcher: {
472
+ language: string;
473
+ };
474
+ marketingNavbar: {
475
+ products: {
476
+ title: string;
477
+ subgraphs: {
478
+ title: string;
479
+ description: string;
480
+ graphExplorer: {
481
+ description: string;
482
+ };
483
+ subgraphStudio: {
484
+ description: string;
485
+ };
486
+ aside: {
487
+ title: string;
488
+ findSubgraphs: string;
489
+ buildSubgraphs: string;
490
+ substreamsPoweredSubgraphs: string;
491
+ };
492
+ };
493
+ substreams: {
494
+ title: string;
495
+ description: string;
496
+ substreamsDev: {
497
+ description: string;
498
+ };
499
+ theGraphMarket: {
500
+ description: string;
501
+ };
502
+ aside: {
503
+ title: string;
504
+ whatAreSubstreams: string;
505
+ buildSubstreams: string;
506
+ neverMissData: string;
507
+ chainsAndEndpoints: string;
508
+ };
509
+ };
510
+ };
511
+ networks: {
512
+ title: string;
513
+ seeAll: string;
514
+ };
515
+ participate: {
516
+ title: string;
517
+ developers: {
518
+ title: string;
519
+ docs: string;
520
+ subgraphQuickStart: string;
521
+ substreamsQuickStart: string;
522
+ };
523
+ delegators: {
524
+ title: string;
525
+ delegate: string;
526
+ whatIsTheGraph: string;
527
+ whatIsDelegating: string;
528
+ };
529
+ indexers: {
530
+ title: string;
531
+ graphNode: string;
532
+ firehose: string;
533
+ graphcast: string;
534
+ docs: string;
535
+ };
536
+ };
537
+ ecosystem: {
538
+ title: string;
539
+ coreDevs: {
540
+ title: string;
541
+ };
542
+ daos: {
543
+ title: string;
544
+ infraDAO: string;
545
+ buildersDAO: string;
546
+ advocatesDAO: string;
547
+ };
548
+ apps: {
549
+ title: string;
550
+ geo: string;
551
+ };
552
+ events: {
553
+ title: string;
554
+ };
555
+ governance: {
556
+ title: string;
557
+ };
558
+ grants: {
559
+ title: string;
560
+ };
561
+ jobs: {
562
+ title: string;
563
+ };
564
+ };
565
+ resources: {
566
+ title: string;
567
+ learn: {
568
+ title: string;
569
+ whatIsTheGraph: string;
570
+ blog: string;
571
+ basecamp: string;
572
+ academy: string;
573
+ };
574
+ planning: {
575
+ title: string;
576
+ forum: string;
577
+ gipProcess: string;
578
+ writeAGip: string;
579
+ roadmap: string;
580
+ };
581
+ podcastsAndVideos: {
582
+ title: string;
583
+ grtiq: string;
584
+ youtube: string;
585
+ };
586
+ brand: {
587
+ title: string;
588
+ };
589
+ };
590
+ pricing: {
591
+ title: string;
592
+ studio: {
593
+ title: string;
594
+ };
595
+ substreams: {
596
+ title: string;
597
+ };
598
+ };
599
+ docs: {
600
+ title: string;
601
+ };
602
+ };
603
+ };
604
+ };
605
+ en: {
606
+ components: {
607
+ appLauncher: {
608
+ apps: string;
609
+ };
610
+ copyButton: {
611
+ copy: string;
612
+ copied: string;
613
+ };
614
+ cookieBanner: {
615
+ header: string;
616
+ description: string;
617
+ privacyPolicy: string;
618
+ essentialsOnly: string;
619
+ allowAll: string;
620
+ save: string;
621
+ updateSettings: string;
622
+ };
623
+ globalFooter: {
624
+ home: string;
625
+ blog: string;
626
+ jobs: string;
627
+ docs: string;
628
+ pastEvents: string;
629
+ status: string;
630
+ testnet: string;
631
+ privacyPolicy: string;
632
+ termsOfService: string;
633
+ brandAssets: string;
634
+ partnershipRequests: string;
635
+ forum: string;
636
+ security: string;
637
+ newsletterInvalidEmail: string;
638
+ newsletterError: string;
639
+ newsletterSuccess: string;
640
+ };
641
+ globalHeader: {
642
+ home: string;
643
+ products: string;
644
+ pricing: string;
645
+ ecosystem: string;
646
+ blog: string;
647
+ jobs: string;
648
+ docs: string;
649
+ language: string;
650
+ support: string;
651
+ connect: string;
652
+ back: string;
653
+ goBackToMainNavigation: string;
654
+ mainNavigation: string;
655
+ openMenu: string;
656
+ privacyPolicy: string;
657
+ };
658
+ loadingIndicator: {
659
+ loading: string;
660
+ };
661
+ localeSwitcher: {
662
+ language: string;
663
+ };
664
+ marketingNavbar: {
665
+ products: {
666
+ title: string;
667
+ subgraphs: {
668
+ title: string;
669
+ description: string;
670
+ overview: {
671
+ title: string;
672
+ description: string;
673
+ };
674
+ graphExplorer: {
675
+ description: string;
676
+ };
677
+ subgraphStudio: {
678
+ description: string;
679
+ };
680
+ aside: {
681
+ title: string;
682
+ findSubgraphs: string;
683
+ buildSubgraphs: string;
684
+ substreamsPoweredSubgraphs: string;
685
+ };
686
+ };
687
+ substreams: {
688
+ title: string;
689
+ description: string;
690
+ overview: {
691
+ title: string;
692
+ description: string;
693
+ };
694
+ substreamsDev: {
695
+ description: string;
696
+ };
697
+ theGraphMarket: {
698
+ description: string;
699
+ };
700
+ aside: {
701
+ title: string;
702
+ whatAreSubstreams: string;
703
+ buildSubstreams: string;
704
+ neverMissData: string;
705
+ chainsAndEndpoints: string;
706
+ };
707
+ };
708
+ amp: {
709
+ title: string;
710
+ description: string;
711
+ };
712
+ };
713
+ networks: {
714
+ title: string;
715
+ seeAll: string;
716
+ };
717
+ participate: {
718
+ title: string;
719
+ developers: {
720
+ title: string;
721
+ docs: string;
722
+ subgraphQuickStart: string;
723
+ substreamsQuickStart: string;
724
+ };
725
+ delegators: {
726
+ title: string;
727
+ delegate: string;
728
+ whatIsTheGraph: string;
729
+ whatIsDelegating: string;
730
+ };
731
+ indexers: {
732
+ title: string;
733
+ graphNode: string;
734
+ firehose: string;
735
+ graphcast: string;
736
+ docs: string;
737
+ };
738
+ };
739
+ ecosystem: {
740
+ title: string;
741
+ coreDevs: {
742
+ title: string;
743
+ };
744
+ daos: {
745
+ title: string;
746
+ infraDAO: string;
747
+ buildersDAO: string;
748
+ advocatesDAO: string;
749
+ };
750
+ apps: {
751
+ title: string;
752
+ geo: string;
753
+ };
754
+ events: {
755
+ title: string;
756
+ };
757
+ governance: {
758
+ title: string;
759
+ };
760
+ grants: {
761
+ title: string;
762
+ };
763
+ jobs: {
764
+ title: string;
765
+ };
766
+ };
767
+ resources: {
768
+ title: string;
769
+ learn: {
770
+ title: string;
771
+ whatIsTheGraph: string;
772
+ blog: string;
773
+ basecamp: string;
774
+ academy: string;
775
+ };
776
+ planning: {
777
+ title: string;
778
+ forum: string;
779
+ gipProcess: string;
780
+ writeAGip: string;
781
+ };
782
+ podcastsAndVideos: {
783
+ title: string;
784
+ grtiq: string;
785
+ youtube: string;
786
+ };
787
+ brand: {
788
+ title: string;
789
+ };
790
+ };
791
+ pricing: {
792
+ title: string;
793
+ studio: {
794
+ title: string;
795
+ };
796
+ substreams: {
797
+ title: string;
798
+ };
799
+ };
800
+ docs: {
801
+ title: string;
802
+ };
803
+ };
804
+ };
805
+ };
806
+ es: {
807
+ components: {
808
+ appLauncher: {
809
+ apps: string;
810
+ };
811
+ copyButton: {
812
+ copy: string;
813
+ copied: string;
814
+ };
815
+ cookieBanner: {
816
+ header: string;
817
+ description: string;
818
+ privacyPolicy: string;
819
+ essentialsOnly: string;
820
+ allowAll: string;
821
+ save: string;
822
+ updateSettings: string;
823
+ };
824
+ globalFooter: {
825
+ home: string;
826
+ blog: string;
827
+ jobs: string;
828
+ docs: string;
829
+ pastEvents: string;
830
+ status: string;
831
+ testnet: string;
832
+ privacyPolicy: string;
833
+ termsOfService: string;
834
+ brandAssets: string;
835
+ partnershipRequests: string;
836
+ forum: string;
837
+ security: string;
838
+ newsletterInvalidEmail: string;
839
+ newsletterError: string;
840
+ newsletterSuccess: string;
841
+ };
842
+ globalHeader: {
843
+ home: string;
844
+ products: string;
845
+ pricing: string;
846
+ ecosystem: string;
847
+ blog: string;
848
+ jobs: string;
849
+ docs: string;
850
+ language: string;
851
+ support: string;
852
+ connect: string;
853
+ back: string;
854
+ goBackToMainNavigation: string;
855
+ mainNavigation: string;
856
+ openMenu: string;
857
+ privacyPolicy: string;
858
+ };
859
+ loadingIndicator: {
860
+ loading: string;
861
+ };
862
+ localeSwitcher: {
863
+ language: string;
864
+ };
865
+ marketingNavbar: {
866
+ products: {
867
+ title: string;
868
+ subgraphs: {
869
+ title: string;
870
+ description: string;
871
+ graphExplorer: {
872
+ description: string;
873
+ };
874
+ subgraphStudio: {
875
+ description: string;
876
+ };
877
+ aside: {
878
+ title: string;
879
+ findSubgraphs: string;
880
+ buildSubgraphs: string;
881
+ substreamsPoweredSubgraphs: string;
882
+ };
883
+ };
884
+ substreams: {
885
+ title: string;
886
+ description: string;
887
+ substreamsDev: {
888
+ description: string;
889
+ };
890
+ theGraphMarket: {
891
+ description: string;
892
+ };
893
+ aside: {
894
+ title: string;
895
+ whatAreSubstreams: string;
896
+ buildSubstreams: string;
897
+ neverMissData: string;
898
+ chainsAndEndpoints: string;
899
+ };
900
+ };
901
+ };
902
+ networks: {
903
+ title: string;
904
+ seeAll: string;
905
+ };
906
+ participate: {
907
+ title: string;
908
+ developers: {
909
+ title: string;
910
+ docs: string;
911
+ subgraphQuickStart: string;
912
+ substreamsQuickStart: string;
913
+ };
914
+ delegators: {
915
+ title: string;
916
+ delegate: string;
917
+ whatIsTheGraph: string;
918
+ whatIsDelegating: string;
919
+ };
920
+ indexers: {
921
+ title: string;
922
+ graphNode: string;
923
+ firehose: string;
924
+ graphcast: string;
925
+ docs: string;
926
+ };
927
+ };
928
+ ecosystem: {
929
+ title: string;
930
+ coreDevs: {
931
+ title: string;
932
+ };
933
+ daos: {
934
+ title: string;
935
+ infraDAO: string;
936
+ buildersDAO: string;
937
+ advocatesDAO: string;
938
+ };
939
+ apps: {
940
+ title: string;
941
+ geo: string;
942
+ };
943
+ events: {
944
+ title: string;
945
+ };
946
+ governance: {
947
+ title: string;
948
+ };
949
+ grants: {
950
+ title: string;
951
+ };
952
+ jobs: {
953
+ title: string;
954
+ };
955
+ };
956
+ resources: {
957
+ title: string;
958
+ learn: {
959
+ title: string;
960
+ whatIsTheGraph: string;
961
+ blog: string;
962
+ basecamp: string;
963
+ academy: string;
964
+ };
965
+ planning: {
966
+ title: string;
967
+ forum: string;
968
+ gipProcess: string;
969
+ writeAGip: string;
970
+ roadmap: string;
971
+ };
972
+ podcastsAndVideos: {
973
+ title: string;
974
+ grtiq: string;
975
+ youtube: string;
976
+ };
977
+ brand: {
978
+ title: string;
979
+ };
980
+ };
981
+ pricing: {
982
+ title: string;
983
+ studio: {
984
+ title: string;
985
+ };
986
+ substreams: {
987
+ title: string;
988
+ };
989
+ };
990
+ docs: {
991
+ title: string;
992
+ };
993
+ };
994
+ };
995
+ };
996
+ fr: {
997
+ components: {
998
+ appLauncher: {
999
+ apps: string;
1000
+ };
1001
+ copyButton: {
1002
+ copy: string;
1003
+ copied: string;
1004
+ };
1005
+ cookieBanner: {
1006
+ header: string;
1007
+ description: string;
1008
+ privacyPolicy: string;
1009
+ essentialsOnly: string;
1010
+ allowAll: string;
1011
+ save: string;
1012
+ updateSettings: string;
1013
+ };
1014
+ globalFooter: {
1015
+ home: string;
1016
+ blog: string;
1017
+ jobs: string;
1018
+ docs: string;
1019
+ pastEvents: string;
1020
+ status: string;
1021
+ testnet: string;
1022
+ privacyPolicy: string;
1023
+ termsOfService: string;
1024
+ brandAssets: string;
1025
+ partnershipRequests: string;
1026
+ forum: string;
1027
+ security: string;
1028
+ newsletterInvalidEmail: string;
1029
+ newsletterError: string;
1030
+ newsletterSuccess: string;
1031
+ };
1032
+ globalHeader: {
1033
+ home: string;
1034
+ products: string;
1035
+ pricing: string;
1036
+ ecosystem: string;
1037
+ blog: string;
1038
+ jobs: string;
1039
+ docs: string;
1040
+ language: string;
1041
+ support: string;
1042
+ connect: string;
1043
+ back: string;
1044
+ goBackToMainNavigation: string;
1045
+ mainNavigation: string;
1046
+ openMenu: string;
1047
+ privacyPolicy: string;
1048
+ };
1049
+ loadingIndicator: {
1050
+ loading: string;
1051
+ };
1052
+ localeSwitcher: {
1053
+ language: string;
1054
+ };
1055
+ marketingNavbar: {
1056
+ products: {
1057
+ title: string;
1058
+ subgraphs: {
1059
+ title: string;
1060
+ description: string;
1061
+ graphExplorer: {
1062
+ description: string;
1063
+ };
1064
+ subgraphStudio: {
1065
+ description: string;
1066
+ };
1067
+ aside: {
1068
+ title: string;
1069
+ findSubgraphs: string;
1070
+ buildSubgraphs: string;
1071
+ substreamsPoweredSubgraphs: string;
1072
+ };
1073
+ };
1074
+ substreams: {
1075
+ title: string;
1076
+ description: string;
1077
+ substreamsDev: {
1078
+ description: string;
1079
+ };
1080
+ theGraphMarket: {
1081
+ description: string;
1082
+ };
1083
+ aside: {
1084
+ title: string;
1085
+ whatAreSubstreams: string;
1086
+ buildSubstreams: string;
1087
+ neverMissData: string;
1088
+ chainsAndEndpoints: string;
1089
+ };
1090
+ };
1091
+ };
1092
+ networks: {
1093
+ title: string;
1094
+ seeAll: string;
1095
+ };
1096
+ participate: {
1097
+ title: string;
1098
+ developers: {
1099
+ title: string;
1100
+ docs: string;
1101
+ subgraphQuickStart: string;
1102
+ substreamsQuickStart: string;
1103
+ };
1104
+ delegators: {
1105
+ title: string;
1106
+ delegate: string;
1107
+ whatIsTheGraph: string;
1108
+ whatIsDelegating: string;
1109
+ };
1110
+ indexers: {
1111
+ title: string;
1112
+ graphNode: string;
1113
+ firehose: string;
1114
+ graphcast: string;
1115
+ docs: string;
1116
+ };
1117
+ };
1118
+ ecosystem: {
1119
+ title: string;
1120
+ coreDevs: {
1121
+ title: string;
1122
+ };
1123
+ daos: {
1124
+ title: string;
1125
+ infraDAO: string;
1126
+ buildersDAO: string;
1127
+ advocatesDAO: string;
1128
+ };
1129
+ apps: {
1130
+ title: string;
1131
+ geo: string;
1132
+ };
1133
+ events: {
1134
+ title: string;
1135
+ };
1136
+ governance: {
1137
+ title: string;
1138
+ };
1139
+ grants: {
1140
+ title: string;
1141
+ };
1142
+ jobs: {
1143
+ title: string;
1144
+ };
1145
+ };
1146
+ resources: {
1147
+ title: string;
1148
+ learn: {
1149
+ title: string;
1150
+ whatIsTheGraph: string;
1151
+ blog: string;
1152
+ basecamp: string;
1153
+ academy: string;
1154
+ };
1155
+ planning: {
1156
+ title: string;
1157
+ forum: string;
1158
+ gipProcess: string;
1159
+ writeAGip: string;
1160
+ roadmap: string;
1161
+ };
1162
+ podcastsAndVideos: {
1163
+ title: string;
1164
+ grtiq: string;
1165
+ youtube: string;
1166
+ };
1167
+ brand: {
1168
+ title: string;
1169
+ };
1170
+ };
1171
+ pricing: {
1172
+ title: string;
1173
+ studio: {
1174
+ title: string;
1175
+ };
1176
+ substreams: {
1177
+ title: string;
1178
+ };
1179
+ };
1180
+ docs: {
1181
+ title: string;
1182
+ };
1183
+ };
1184
+ };
1185
+ };
1186
+ hi: {
1187
+ components: {
1188
+ appLauncher: {
1189
+ apps: string;
1190
+ };
1191
+ copyButton: {
1192
+ copy: string;
1193
+ copied: string;
1194
+ };
1195
+ cookieBanner: {
1196
+ header: string;
1197
+ description: string;
1198
+ privacyPolicy: string;
1199
+ essentialsOnly: string;
1200
+ allowAll: string;
1201
+ save: string;
1202
+ updateSettings: string;
1203
+ };
1204
+ globalFooter: {
1205
+ home: string;
1206
+ blog: string;
1207
+ jobs: string;
1208
+ docs: string;
1209
+ pastEvents: string;
1210
+ status: string;
1211
+ testnet: string;
1212
+ privacyPolicy: string;
1213
+ termsOfService: string;
1214
+ brandAssets: string;
1215
+ partnershipRequests: string;
1216
+ forum: string;
1217
+ security: string;
1218
+ newsletterInvalidEmail: string;
1219
+ newsletterError: string;
1220
+ newsletterSuccess: string;
1221
+ };
1222
+ globalHeader: {
1223
+ home: string;
1224
+ products: string;
1225
+ pricing: string;
1226
+ ecosystem: string;
1227
+ blog: string;
1228
+ jobs: string;
1229
+ docs: string;
1230
+ language: string;
1231
+ support: string;
1232
+ connect: string;
1233
+ back: string;
1234
+ goBackToMainNavigation: string;
1235
+ mainNavigation: string;
1236
+ openMenu: string;
1237
+ privacyPolicy: string;
1238
+ };
1239
+ loadingIndicator: {
1240
+ loading: string;
1241
+ };
1242
+ localeSwitcher: {
1243
+ language: string;
1244
+ };
1245
+ marketingNavbar: {
1246
+ products: {
1247
+ title: string;
1248
+ subgraphs: {
1249
+ title: string;
1250
+ description: string;
1251
+ graphExplorer: {
1252
+ description: string;
1253
+ };
1254
+ subgraphStudio: {
1255
+ description: string;
1256
+ };
1257
+ aside: {
1258
+ title: string;
1259
+ findSubgraphs: string;
1260
+ buildSubgraphs: string;
1261
+ substreamsPoweredSubgraphs: string;
1262
+ };
1263
+ };
1264
+ substreams: {
1265
+ title: string;
1266
+ description: string;
1267
+ substreamsDev: {
1268
+ description: string;
1269
+ };
1270
+ theGraphMarket: {
1271
+ description: string;
1272
+ };
1273
+ aside: {
1274
+ title: string;
1275
+ whatAreSubstreams: string;
1276
+ buildSubstreams: string;
1277
+ neverMissData: string;
1278
+ chainsAndEndpoints: string;
1279
+ };
1280
+ };
1281
+ };
1282
+ networks: {
1283
+ title: string;
1284
+ seeAll: string;
1285
+ };
1286
+ participate: {
1287
+ title: string;
1288
+ developers: {
1289
+ title: string;
1290
+ docs: string;
1291
+ subgraphQuickStart: string;
1292
+ substreamsQuickStart: string;
1293
+ };
1294
+ delegators: {
1295
+ title: string;
1296
+ delegate: string;
1297
+ whatIsTheGraph: string;
1298
+ whatIsDelegating: string;
1299
+ };
1300
+ indexers: {
1301
+ title: string;
1302
+ graphNode: string;
1303
+ firehose: string;
1304
+ graphcast: string;
1305
+ docs: string;
1306
+ };
1307
+ };
1308
+ ecosystem: {
1309
+ title: string;
1310
+ coreDevs: {
1311
+ title: string;
1312
+ };
1313
+ daos: {
1314
+ title: string;
1315
+ infraDAO: string;
1316
+ buildersDAO: string;
1317
+ advocatesDAO: string;
1318
+ };
1319
+ apps: {
1320
+ title: string;
1321
+ geo: string;
1322
+ };
1323
+ events: {
1324
+ title: string;
1325
+ };
1326
+ governance: {
1327
+ title: string;
1328
+ };
1329
+ grants: {
1330
+ title: string;
1331
+ };
1332
+ jobs: {
1333
+ title: string;
1334
+ };
1335
+ };
1336
+ resources: {
1337
+ title: string;
1338
+ learn: {
1339
+ title: string;
1340
+ whatIsTheGraph: string;
1341
+ blog: string;
1342
+ basecamp: string;
1343
+ academy: string;
1344
+ };
1345
+ planning: {
1346
+ title: string;
1347
+ forum: string;
1348
+ gipProcess: string;
1349
+ writeAGip: string;
1350
+ roadmap: string;
1351
+ };
1352
+ podcastsAndVideos: {
1353
+ title: string;
1354
+ grtiq: string;
1355
+ youtube: string;
1356
+ };
1357
+ brand: {
1358
+ title: string;
1359
+ };
1360
+ };
1361
+ pricing: {
1362
+ title: string;
1363
+ studio: {
1364
+ title: string;
1365
+ };
1366
+ substreams: {
1367
+ title: string;
1368
+ };
1369
+ };
1370
+ docs: {
1371
+ title: string;
1372
+ };
1373
+ };
1374
+ };
1375
+ };
1376
+ it: {
1377
+ components: {
1378
+ appLauncher: {
1379
+ apps: string;
1380
+ };
1381
+ copyButton: {
1382
+ copy: string;
1383
+ copied: string;
1384
+ };
1385
+ cookieBanner: {
1386
+ header: string;
1387
+ description: string;
1388
+ privacyPolicy: string;
1389
+ essentialsOnly: string;
1390
+ allowAll: string;
1391
+ save: string;
1392
+ updateSettings: string;
1393
+ };
1394
+ globalFooter: {
1395
+ home: string;
1396
+ blog: string;
1397
+ jobs: string;
1398
+ docs: string;
1399
+ pastEvents: string;
1400
+ status: string;
1401
+ testnet: string;
1402
+ privacyPolicy: string;
1403
+ termsOfService: string;
1404
+ brandAssets: string;
1405
+ partnershipRequests: string;
1406
+ forum: string;
1407
+ security: string;
1408
+ newsletterInvalidEmail: string;
1409
+ newsletterError: string;
1410
+ newsletterSuccess: string;
1411
+ };
1412
+ globalHeader: {
1413
+ home: string;
1414
+ products: string;
1415
+ pricing: string;
1416
+ ecosystem: string;
1417
+ blog: string;
1418
+ jobs: string;
1419
+ docs: string;
1420
+ language: string;
1421
+ support: string;
1422
+ connect: string;
1423
+ back: string;
1424
+ goBackToMainNavigation: string;
1425
+ mainNavigation: string;
1426
+ openMenu: string;
1427
+ privacyPolicy: string;
1428
+ };
1429
+ loadingIndicator: {
1430
+ loading: string;
1431
+ };
1432
+ localeSwitcher: {
1433
+ language: string;
1434
+ };
1435
+ marketingNavbar: {
1436
+ products: {
1437
+ title: string;
1438
+ subgraphs: {
1439
+ title: string;
1440
+ description: string;
1441
+ graphExplorer: {
1442
+ description: string;
1443
+ };
1444
+ subgraphStudio: {
1445
+ description: string;
1446
+ };
1447
+ aside: {
1448
+ title: string;
1449
+ findSubgraphs: string;
1450
+ buildSubgraphs: string;
1451
+ substreamsPoweredSubgraphs: string;
1452
+ };
1453
+ };
1454
+ substreams: {
1455
+ title: string;
1456
+ description: string;
1457
+ substreamsDev: {
1458
+ description: string;
1459
+ };
1460
+ theGraphMarket: {
1461
+ description: string;
1462
+ };
1463
+ aside: {
1464
+ title: string;
1465
+ whatAreSubstreams: string;
1466
+ buildSubstreams: string;
1467
+ neverMissData: string;
1468
+ chainsAndEndpoints: string;
1469
+ };
1470
+ };
1471
+ };
1472
+ networks: {
1473
+ title: string;
1474
+ seeAll: string;
1475
+ };
1476
+ participate: {
1477
+ title: string;
1478
+ developers: {
1479
+ title: string;
1480
+ docs: string;
1481
+ subgraphQuickStart: string;
1482
+ substreamsQuickStart: string;
1483
+ };
1484
+ delegators: {
1485
+ title: string;
1486
+ delegate: string;
1487
+ whatIsTheGraph: string;
1488
+ whatIsDelegating: string;
1489
+ };
1490
+ indexers: {
1491
+ title: string;
1492
+ graphNode: string;
1493
+ firehose: string;
1494
+ graphcast: string;
1495
+ docs: string;
1496
+ };
1497
+ };
1498
+ ecosystem: {
1499
+ title: string;
1500
+ coreDevs: {
1501
+ title: string;
1502
+ };
1503
+ daos: {
1504
+ title: string;
1505
+ infraDAO: string;
1506
+ buildersDAO: string;
1507
+ advocatesDAO: string;
1508
+ };
1509
+ apps: {
1510
+ title: string;
1511
+ geo: string;
1512
+ };
1513
+ events: {
1514
+ title: string;
1515
+ };
1516
+ governance: {
1517
+ title: string;
1518
+ };
1519
+ grants: {
1520
+ title: string;
1521
+ };
1522
+ jobs: {
1523
+ title: string;
1524
+ };
1525
+ };
1526
+ resources: {
1527
+ title: string;
1528
+ learn: {
1529
+ title: string;
1530
+ whatIsTheGraph: string;
1531
+ blog: string;
1532
+ basecamp: string;
1533
+ academy: string;
1534
+ };
1535
+ planning: {
1536
+ title: string;
1537
+ forum: string;
1538
+ gipProcess: string;
1539
+ writeAGip: string;
1540
+ roadmap: string;
1541
+ };
1542
+ podcastsAndVideos: {
1543
+ title: string;
1544
+ grtiq: string;
1545
+ youtube: string;
1546
+ };
1547
+ brand: {
1548
+ title: string;
1549
+ };
1550
+ };
1551
+ pricing: {
1552
+ title: string;
1553
+ studio: {
1554
+ title: string;
1555
+ };
1556
+ substreams: {
1557
+ title: string;
1558
+ };
1559
+ };
1560
+ docs: {
1561
+ title: string;
1562
+ };
1563
+ };
1564
+ };
1565
+ };
1566
+ ja: {
1567
+ components: {
1568
+ appLauncher: {
1569
+ apps: string;
1570
+ };
1571
+ copyButton: {
1572
+ copy: string;
1573
+ copied: string;
1574
+ };
1575
+ cookieBanner: {
1576
+ header: string;
1577
+ description: string;
1578
+ privacyPolicy: string;
1579
+ essentialsOnly: string;
1580
+ allowAll: string;
1581
+ save: string;
1582
+ updateSettings: string;
1583
+ };
1584
+ globalFooter: {
1585
+ home: string;
1586
+ blog: string;
1587
+ jobs: string;
1588
+ docs: string;
1589
+ pastEvents: string;
1590
+ status: string;
1591
+ testnet: string;
1592
+ privacyPolicy: string;
1593
+ termsOfService: string;
1594
+ brandAssets: string;
1595
+ partnershipRequests: string;
1596
+ forum: string;
1597
+ security: string;
1598
+ newsletterInvalidEmail: string;
1599
+ newsletterError: string;
1600
+ newsletterSuccess: string;
1601
+ };
1602
+ globalHeader: {
1603
+ home: string;
1604
+ products: string;
1605
+ pricing: string;
1606
+ ecosystem: string;
1607
+ blog: string;
1608
+ jobs: string;
1609
+ docs: string;
1610
+ language: string;
1611
+ support: string;
1612
+ connect: string;
1613
+ back: string;
1614
+ goBackToMainNavigation: string;
1615
+ mainNavigation: string;
1616
+ openMenu: string;
1617
+ privacyPolicy: string;
1618
+ };
1619
+ loadingIndicator: {
1620
+ loading: string;
1621
+ };
1622
+ localeSwitcher: {
1623
+ language: string;
1624
+ };
1625
+ marketingNavbar: {
1626
+ products: {
1627
+ title: string;
1628
+ subgraphs: {
1629
+ title: string;
1630
+ description: string;
1631
+ graphExplorer: {
1632
+ description: string;
1633
+ };
1634
+ subgraphStudio: {
1635
+ description: string;
1636
+ };
1637
+ aside: {
1638
+ title: string;
1639
+ findSubgraphs: string;
1640
+ buildSubgraphs: string;
1641
+ substreamsPoweredSubgraphs: string;
1642
+ };
1643
+ };
1644
+ substreams: {
1645
+ title: string;
1646
+ description: string;
1647
+ substreamsDev: {
1648
+ description: string;
1649
+ };
1650
+ theGraphMarket: {
1651
+ description: string;
1652
+ };
1653
+ aside: {
1654
+ title: string;
1655
+ whatAreSubstreams: string;
1656
+ buildSubstreams: string;
1657
+ neverMissData: string;
1658
+ chainsAndEndpoints: string;
1659
+ };
1660
+ };
1661
+ };
1662
+ networks: {
1663
+ title: string;
1664
+ seeAll: string;
1665
+ };
1666
+ participate: {
1667
+ title: string;
1668
+ developers: {
1669
+ title: string;
1670
+ docs: string;
1671
+ subgraphQuickStart: string;
1672
+ substreamsQuickStart: string;
1673
+ };
1674
+ delegators: {
1675
+ title: string;
1676
+ delegate: string;
1677
+ whatIsTheGraph: string;
1678
+ whatIsDelegating: string;
1679
+ };
1680
+ indexers: {
1681
+ title: string;
1682
+ graphNode: string;
1683
+ firehose: string;
1684
+ graphcast: string;
1685
+ docs: string;
1686
+ };
1687
+ };
1688
+ ecosystem: {
1689
+ title: string;
1690
+ coreDevs: {
1691
+ title: string;
1692
+ };
1693
+ daos: {
1694
+ title: string;
1695
+ infraDAO: string;
1696
+ buildersDAO: string;
1697
+ advocatesDAO: string;
1698
+ };
1699
+ apps: {
1700
+ title: string;
1701
+ geo: string;
1702
+ };
1703
+ events: {
1704
+ title: string;
1705
+ };
1706
+ governance: {
1707
+ title: string;
1708
+ };
1709
+ grants: {
1710
+ title: string;
1711
+ };
1712
+ jobs: {
1713
+ title: string;
1714
+ };
1715
+ };
1716
+ resources: {
1717
+ title: string;
1718
+ learn: {
1719
+ title: string;
1720
+ whatIsTheGraph: string;
1721
+ blog: string;
1722
+ basecamp: string;
1723
+ academy: string;
1724
+ };
1725
+ planning: {
1726
+ title: string;
1727
+ forum: string;
1728
+ gipProcess: string;
1729
+ writeAGip: string;
1730
+ roadmap: string;
1731
+ };
1732
+ podcastsAndVideos: {
1733
+ title: string;
1734
+ grtiq: string;
1735
+ youtube: string;
1736
+ };
1737
+ brand: {
1738
+ title: string;
1739
+ };
1740
+ };
1741
+ pricing: {
1742
+ title: string;
1743
+ studio: {
1744
+ title: string;
1745
+ };
1746
+ substreams: {
1747
+ title: string;
1748
+ };
1749
+ };
1750
+ docs: {
1751
+ title: string;
1752
+ };
1753
+ };
1754
+ };
1755
+ };
1756
+ ko: {
1757
+ components: {
1758
+ appLauncher: {
1759
+ apps: string;
1760
+ };
1761
+ copyButton: {
1762
+ copy: string;
1763
+ copied: string;
1764
+ };
1765
+ cookieBanner: {
1766
+ header: string;
1767
+ description: string;
1768
+ privacyPolicy: string;
1769
+ essentialsOnly: string;
1770
+ allowAll: string;
1771
+ save: string;
1772
+ updateSettings: string;
1773
+ };
1774
+ globalFooter: {
1775
+ home: string;
1776
+ blog: string;
1777
+ jobs: string;
1778
+ docs: string;
1779
+ pastEvents: string;
1780
+ status: string;
1781
+ testnet: string;
1782
+ privacyPolicy: string;
1783
+ termsOfService: string;
1784
+ brandAssets: string;
1785
+ partnershipRequests: string;
1786
+ forum: string;
1787
+ security: string;
1788
+ newsletterInvalidEmail: string;
1789
+ newsletterError: string;
1790
+ newsletterSuccess: string;
1791
+ };
1792
+ globalHeader: {
1793
+ home: string;
1794
+ products: string;
1795
+ pricing: string;
1796
+ ecosystem: string;
1797
+ blog: string;
1798
+ jobs: string;
1799
+ docs: string;
1800
+ language: string;
1801
+ support: string;
1802
+ connect: string;
1803
+ back: string;
1804
+ goBackToMainNavigation: string;
1805
+ mainNavigation: string;
1806
+ openMenu: string;
1807
+ privacyPolicy: string;
1808
+ };
1809
+ loadingIndicator: {
1810
+ loading: string;
1811
+ };
1812
+ localeSwitcher: {
1813
+ language: string;
1814
+ };
1815
+ marketingNavbar: {
1816
+ products: {
1817
+ title: string;
1818
+ subgraphs: {
1819
+ title: string;
1820
+ description: string;
1821
+ graphExplorer: {
1822
+ description: string;
1823
+ };
1824
+ subgraphStudio: {
1825
+ description: string;
1826
+ };
1827
+ aside: {
1828
+ title: string;
1829
+ findSubgraphs: string;
1830
+ buildSubgraphs: string;
1831
+ substreamsPoweredSubgraphs: string;
1832
+ };
1833
+ };
1834
+ substreams: {
1835
+ title: string;
1836
+ description: string;
1837
+ substreamsDev: {
1838
+ description: string;
1839
+ };
1840
+ theGraphMarket: {
1841
+ description: string;
1842
+ };
1843
+ aside: {
1844
+ title: string;
1845
+ whatAreSubstreams: string;
1846
+ buildSubstreams: string;
1847
+ neverMissData: string;
1848
+ chainsAndEndpoints: string;
1849
+ };
1850
+ };
1851
+ };
1852
+ networks: {
1853
+ title: string;
1854
+ seeAll: string;
1855
+ };
1856
+ participate: {
1857
+ title: string;
1858
+ developers: {
1859
+ title: string;
1860
+ docs: string;
1861
+ subgraphQuickStart: string;
1862
+ substreamsQuickStart: string;
1863
+ };
1864
+ delegators: {
1865
+ title: string;
1866
+ delegate: string;
1867
+ whatIsTheGraph: string;
1868
+ whatIsDelegating: string;
1869
+ };
1870
+ indexers: {
1871
+ title: string;
1872
+ graphNode: string;
1873
+ firehose: string;
1874
+ graphcast: string;
1875
+ docs: string;
1876
+ };
1877
+ };
1878
+ ecosystem: {
1879
+ title: string;
1880
+ coreDevs: {
1881
+ title: string;
1882
+ };
1883
+ daos: {
1884
+ title: string;
1885
+ infraDAO: string;
1886
+ buildersDAO: string;
1887
+ advocatesDAO: string;
1888
+ };
1889
+ apps: {
1890
+ title: string;
1891
+ geo: string;
1892
+ };
1893
+ events: {
1894
+ title: string;
1895
+ };
1896
+ governance: {
1897
+ title: string;
1898
+ };
1899
+ grants: {
1900
+ title: string;
1901
+ };
1902
+ jobs: {
1903
+ title: string;
1904
+ };
1905
+ };
1906
+ resources: {
1907
+ title: string;
1908
+ learn: {
1909
+ title: string;
1910
+ whatIsTheGraph: string;
1911
+ blog: string;
1912
+ basecamp: string;
1913
+ academy: string;
1914
+ };
1915
+ planning: {
1916
+ title: string;
1917
+ forum: string;
1918
+ gipProcess: string;
1919
+ writeAGip: string;
1920
+ roadmap: string;
1921
+ };
1922
+ podcastsAndVideos: {
1923
+ title: string;
1924
+ grtiq: string;
1925
+ youtube: string;
1926
+ };
1927
+ brand: {
1928
+ title: string;
1929
+ };
1930
+ };
1931
+ pricing: {
1932
+ title: string;
1933
+ studio: {
1934
+ title: string;
1935
+ };
1936
+ substreams: {
1937
+ title: string;
1938
+ };
1939
+ };
1940
+ docs: {
1941
+ title: string;
1942
+ };
1943
+ };
1944
+ };
1945
+ };
1946
+ mr: {
1947
+ components: {
1948
+ appLauncher: {
1949
+ apps: string;
1950
+ };
1951
+ copyButton: {
1952
+ copy: string;
1953
+ copied: string;
1954
+ };
1955
+ cookieBanner: {
1956
+ header: string;
1957
+ description: string;
1958
+ privacyPolicy: string;
1959
+ essentialsOnly: string;
1960
+ allowAll: string;
1961
+ save: string;
1962
+ updateSettings: string;
1963
+ };
1964
+ globalFooter: {
1965
+ home: string;
1966
+ blog: string;
1967
+ jobs: string;
1968
+ docs: string;
1969
+ pastEvents: string;
1970
+ status: string;
1971
+ testnet: string;
1972
+ privacyPolicy: string;
1973
+ termsOfService: string;
1974
+ brandAssets: string;
1975
+ partnershipRequests: string;
1976
+ forum: string;
1977
+ security: string;
1978
+ newsletterInvalidEmail: string;
1979
+ newsletterError: string;
1980
+ newsletterSuccess: string;
1981
+ };
1982
+ globalHeader: {
1983
+ home: string;
1984
+ products: string;
1985
+ pricing: string;
1986
+ ecosystem: string;
1987
+ blog: string;
1988
+ jobs: string;
1989
+ docs: string;
1990
+ language: string;
1991
+ support: string;
1992
+ connect: string;
1993
+ back: string;
1994
+ goBackToMainNavigation: string;
1995
+ mainNavigation: string;
1996
+ openMenu: string;
1997
+ privacyPolicy: string;
1998
+ };
1999
+ loadingIndicator: {
2000
+ loading: string;
2001
+ };
2002
+ localeSwitcher: {
2003
+ language: string;
2004
+ };
2005
+ marketingNavbar: {
2006
+ products: {
2007
+ title: string;
2008
+ subgraphs: {
2009
+ title: string;
2010
+ description: string;
2011
+ graphExplorer: {
2012
+ description: string;
2013
+ };
2014
+ subgraphStudio: {
2015
+ description: string;
2016
+ };
2017
+ aside: {
2018
+ title: string;
2019
+ findSubgraphs: string;
2020
+ buildSubgraphs: string;
2021
+ substreamsPoweredSubgraphs: string;
2022
+ };
2023
+ };
2024
+ substreams: {
2025
+ title: string;
2026
+ description: string;
2027
+ substreamsDev: {
2028
+ description: string;
2029
+ };
2030
+ theGraphMarket: {
2031
+ description: string;
2032
+ };
2033
+ aside: {
2034
+ title: string;
2035
+ whatAreSubstreams: string;
2036
+ buildSubstreams: string;
2037
+ neverMissData: string;
2038
+ chainsAndEndpoints: string;
2039
+ };
2040
+ };
2041
+ };
2042
+ networks: {
2043
+ title: string;
2044
+ seeAll: string;
2045
+ };
2046
+ participate: {
2047
+ title: string;
2048
+ developers: {
2049
+ title: string;
2050
+ docs: string;
2051
+ subgraphQuickStart: string;
2052
+ substreamsQuickStart: string;
2053
+ };
2054
+ delegators: {
2055
+ title: string;
2056
+ delegate: string;
2057
+ whatIsTheGraph: string;
2058
+ whatIsDelegating: string;
2059
+ };
2060
+ indexers: {
2061
+ title: string;
2062
+ graphNode: string;
2063
+ firehose: string;
2064
+ graphcast: string;
2065
+ docs: string;
2066
+ };
2067
+ };
2068
+ ecosystem: {
2069
+ title: string;
2070
+ coreDevs: {
2071
+ title: string;
2072
+ };
2073
+ daos: {
2074
+ title: string;
2075
+ infraDAO: string;
2076
+ buildersDAO: string;
2077
+ advocatesDAO: string;
2078
+ };
2079
+ apps: {
2080
+ title: string;
2081
+ geo: string;
2082
+ };
2083
+ events: {
2084
+ title: string;
2085
+ };
2086
+ governance: {
2087
+ title: string;
2088
+ };
2089
+ grants: {
2090
+ title: string;
2091
+ };
2092
+ jobs: {
2093
+ title: string;
2094
+ };
2095
+ };
2096
+ resources: {
2097
+ title: string;
2098
+ learn: {
2099
+ title: string;
2100
+ whatIsTheGraph: string;
2101
+ blog: string;
2102
+ basecamp: string;
2103
+ academy: string;
2104
+ };
2105
+ planning: {
2106
+ title: string;
2107
+ forum: string;
2108
+ gipProcess: string;
2109
+ writeAGip: string;
2110
+ roadmap: string;
2111
+ };
2112
+ podcastsAndVideos: {
2113
+ title: string;
2114
+ grtiq: string;
2115
+ youtube: string;
2116
+ };
2117
+ brand: {
2118
+ title: string;
2119
+ };
2120
+ };
2121
+ pricing: {
2122
+ title: string;
2123
+ studio: {
2124
+ title: string;
2125
+ };
2126
+ substreams: {
2127
+ title: string;
2128
+ };
2129
+ };
2130
+ docs: {
2131
+ title: string;
2132
+ };
2133
+ };
2134
+ };
2135
+ };
2136
+ nl: {
2137
+ components: {
2138
+ appLauncher: {
2139
+ apps: string;
2140
+ };
2141
+ copyButton: {
2142
+ copy: string;
2143
+ copied: string;
2144
+ };
2145
+ cookieBanner: {
2146
+ header: string;
2147
+ description: string;
2148
+ privacyPolicy: string;
2149
+ essentialsOnly: string;
2150
+ allowAll: string;
2151
+ save: string;
2152
+ updateSettings: string;
2153
+ };
2154
+ globalFooter: {
2155
+ home: string;
2156
+ blog: string;
2157
+ jobs: string;
2158
+ docs: string;
2159
+ pastEvents: string;
2160
+ status: string;
2161
+ testnet: string;
2162
+ privacyPolicy: string;
2163
+ termsOfService: string;
2164
+ brandAssets: string;
2165
+ partnershipRequests: string;
2166
+ forum: string;
2167
+ security: string;
2168
+ newsletterInvalidEmail: string;
2169
+ newsletterError: string;
2170
+ newsletterSuccess: string;
2171
+ };
2172
+ globalHeader: {
2173
+ home: string;
2174
+ products: string;
2175
+ pricing: string;
2176
+ ecosystem: string;
2177
+ blog: string;
2178
+ jobs: string;
2179
+ docs: string;
2180
+ language: string;
2181
+ support: string;
2182
+ connect: string;
2183
+ back: string;
2184
+ goBackToMainNavigation: string;
2185
+ mainNavigation: string;
2186
+ openMenu: string;
2187
+ privacyPolicy: string;
2188
+ };
2189
+ loadingIndicator: {
2190
+ loading: string;
2191
+ };
2192
+ localeSwitcher: {
2193
+ language: string;
2194
+ };
2195
+ marketingNavbar: {
2196
+ products: {
2197
+ title: string;
2198
+ subgraphs: {
2199
+ title: string;
2200
+ description: string;
2201
+ graphExplorer: {
2202
+ description: string;
2203
+ };
2204
+ subgraphStudio: {
2205
+ description: string;
2206
+ };
2207
+ aside: {
2208
+ title: string;
2209
+ findSubgraphs: string;
2210
+ buildSubgraphs: string;
2211
+ substreamsPoweredSubgraphs: string;
2212
+ };
2213
+ };
2214
+ substreams: {
2215
+ title: string;
2216
+ description: string;
2217
+ substreamsDev: {
2218
+ description: string;
2219
+ };
2220
+ theGraphMarket: {
2221
+ description: string;
2222
+ };
2223
+ aside: {
2224
+ title: string;
2225
+ whatAreSubstreams: string;
2226
+ buildSubstreams: string;
2227
+ neverMissData: string;
2228
+ chainsAndEndpoints: string;
2229
+ };
2230
+ };
2231
+ };
2232
+ networks: {
2233
+ title: string;
2234
+ seeAll: string;
2235
+ };
2236
+ participate: {
2237
+ title: string;
2238
+ developers: {
2239
+ title: string;
2240
+ docs: string;
2241
+ subgraphQuickStart: string;
2242
+ substreamsQuickStart: string;
2243
+ };
2244
+ delegators: {
2245
+ title: string;
2246
+ delegate: string;
2247
+ whatIsTheGraph: string;
2248
+ whatIsDelegating: string;
2249
+ };
2250
+ indexers: {
2251
+ title: string;
2252
+ graphNode: string;
2253
+ firehose: string;
2254
+ graphcast: string;
2255
+ docs: string;
2256
+ };
2257
+ };
2258
+ ecosystem: {
2259
+ title: string;
2260
+ coreDevs: {
2261
+ title: string;
2262
+ };
2263
+ daos: {
2264
+ title: string;
2265
+ infraDAO: string;
2266
+ buildersDAO: string;
2267
+ advocatesDAO: string;
2268
+ };
2269
+ apps: {
2270
+ title: string;
2271
+ geo: string;
2272
+ };
2273
+ events: {
2274
+ title: string;
2275
+ };
2276
+ governance: {
2277
+ title: string;
2278
+ };
2279
+ grants: {
2280
+ title: string;
2281
+ };
2282
+ jobs: {
2283
+ title: string;
2284
+ };
2285
+ };
2286
+ resources: {
2287
+ title: string;
2288
+ learn: {
2289
+ title: string;
2290
+ whatIsTheGraph: string;
2291
+ blog: string;
2292
+ basecamp: string;
2293
+ academy: string;
2294
+ };
2295
+ planning: {
2296
+ title: string;
2297
+ forum: string;
2298
+ gipProcess: string;
2299
+ writeAGip: string;
2300
+ roadmap: string;
2301
+ };
2302
+ podcastsAndVideos: {
2303
+ title: string;
2304
+ grtiq: string;
2305
+ youtube: string;
2306
+ };
2307
+ brand: {
2308
+ title: string;
2309
+ };
2310
+ };
2311
+ pricing: {
2312
+ title: string;
2313
+ studio: {
2314
+ title: string;
2315
+ };
2316
+ substreams: {
2317
+ title: string;
2318
+ };
2319
+ };
2320
+ docs: {
2321
+ title: string;
2322
+ };
2323
+ };
2324
+ };
2325
+ };
2326
+ pl: {
2327
+ components: {
2328
+ appLauncher: {
2329
+ apps: string;
2330
+ };
2331
+ copyButton: {
2332
+ copy: string;
2333
+ copied: string;
2334
+ };
2335
+ cookieBanner: {
2336
+ header: string;
2337
+ description: string;
2338
+ privacyPolicy: string;
2339
+ essentialsOnly: string;
2340
+ allowAll: string;
2341
+ save: string;
2342
+ updateSettings: string;
2343
+ };
2344
+ globalFooter: {
2345
+ home: string;
2346
+ blog: string;
2347
+ jobs: string;
2348
+ docs: string;
2349
+ pastEvents: string;
2350
+ status: string;
2351
+ testnet: string;
2352
+ privacyPolicy: string;
2353
+ termsOfService: string;
2354
+ brandAssets: string;
2355
+ partnershipRequests: string;
2356
+ forum: string;
2357
+ security: string;
2358
+ newsletterInvalidEmail: string;
2359
+ newsletterError: string;
2360
+ newsletterSuccess: string;
2361
+ };
2362
+ globalHeader: {
2363
+ home: string;
2364
+ products: string;
2365
+ pricing: string;
2366
+ ecosystem: string;
2367
+ blog: string;
2368
+ jobs: string;
2369
+ docs: string;
2370
+ language: string;
2371
+ support: string;
2372
+ connect: string;
2373
+ back: string;
2374
+ goBackToMainNavigation: string;
2375
+ mainNavigation: string;
2376
+ openMenu: string;
2377
+ privacyPolicy: string;
2378
+ };
2379
+ loadingIndicator: {
2380
+ loading: string;
2381
+ };
2382
+ localeSwitcher: {
2383
+ language: string;
2384
+ };
2385
+ marketingNavbar: {
2386
+ products: {
2387
+ title: string;
2388
+ subgraphs: {
2389
+ title: string;
2390
+ description: string;
2391
+ graphExplorer: {
2392
+ description: string;
2393
+ };
2394
+ subgraphStudio: {
2395
+ description: string;
2396
+ };
2397
+ aside: {
2398
+ title: string;
2399
+ findSubgraphs: string;
2400
+ buildSubgraphs: string;
2401
+ substreamsPoweredSubgraphs: string;
2402
+ };
2403
+ };
2404
+ substreams: {
2405
+ title: string;
2406
+ description: string;
2407
+ substreamsDev: {
2408
+ description: string;
2409
+ };
2410
+ theGraphMarket: {
2411
+ description: string;
2412
+ };
2413
+ aside: {
2414
+ title: string;
2415
+ whatAreSubstreams: string;
2416
+ buildSubstreams: string;
2417
+ neverMissData: string;
2418
+ chainsAndEndpoints: string;
2419
+ };
2420
+ };
2421
+ };
2422
+ networks: {
2423
+ title: string;
2424
+ seeAll: string;
2425
+ };
2426
+ participate: {
2427
+ title: string;
2428
+ developers: {
2429
+ title: string;
2430
+ docs: string;
2431
+ subgraphQuickStart: string;
2432
+ substreamsQuickStart: string;
2433
+ };
2434
+ delegators: {
2435
+ title: string;
2436
+ delegate: string;
2437
+ whatIsTheGraph: string;
2438
+ whatIsDelegating: string;
2439
+ };
2440
+ indexers: {
2441
+ title: string;
2442
+ graphNode: string;
2443
+ firehose: string;
2444
+ graphcast: string;
2445
+ docs: string;
2446
+ };
2447
+ };
2448
+ ecosystem: {
2449
+ title: string;
2450
+ coreDevs: {
2451
+ title: string;
2452
+ };
2453
+ daos: {
2454
+ title: string;
2455
+ infraDAO: string;
2456
+ buildersDAO: string;
2457
+ advocatesDAO: string;
2458
+ };
2459
+ apps: {
2460
+ title: string;
2461
+ geo: string;
2462
+ };
2463
+ events: {
2464
+ title: string;
2465
+ };
2466
+ governance: {
2467
+ title: string;
2468
+ };
2469
+ grants: {
2470
+ title: string;
2471
+ };
2472
+ jobs: {
2473
+ title: string;
2474
+ };
2475
+ };
2476
+ resources: {
2477
+ title: string;
2478
+ learn: {
2479
+ title: string;
2480
+ whatIsTheGraph: string;
2481
+ blog: string;
2482
+ basecamp: string;
2483
+ academy: string;
2484
+ };
2485
+ planning: {
2486
+ title: string;
2487
+ forum: string;
2488
+ gipProcess: string;
2489
+ writeAGip: string;
2490
+ roadmap: string;
2491
+ };
2492
+ podcastsAndVideos: {
2493
+ title: string;
2494
+ grtiq: string;
2495
+ youtube: string;
2496
+ };
2497
+ brand: {
2498
+ title: string;
2499
+ };
2500
+ };
2501
+ pricing: {
2502
+ title: string;
2503
+ studio: {
2504
+ title: string;
2505
+ };
2506
+ substreams: {
2507
+ title: string;
2508
+ };
2509
+ };
2510
+ docs: {
2511
+ title: string;
2512
+ };
2513
+ };
2514
+ };
2515
+ };
2516
+ pt: {
2517
+ components: {
2518
+ appLauncher: {
2519
+ apps: string;
2520
+ };
2521
+ copyButton: {
2522
+ copy: string;
2523
+ copied: string;
2524
+ };
2525
+ cookieBanner: {
2526
+ header: string;
2527
+ description: string;
2528
+ privacyPolicy: string;
2529
+ essentialsOnly: string;
2530
+ allowAll: string;
2531
+ save: string;
2532
+ updateSettings: string;
2533
+ };
2534
+ globalFooter: {
2535
+ home: string;
2536
+ blog: string;
2537
+ jobs: string;
2538
+ docs: string;
2539
+ pastEvents: string;
2540
+ status: string;
2541
+ testnet: string;
2542
+ privacyPolicy: string;
2543
+ termsOfService: string;
2544
+ brandAssets: string;
2545
+ partnershipRequests: string;
2546
+ forum: string;
2547
+ security: string;
2548
+ newsletterInvalidEmail: string;
2549
+ newsletterError: string;
2550
+ newsletterSuccess: string;
2551
+ };
2552
+ globalHeader: {
2553
+ home: string;
2554
+ products: string;
2555
+ pricing: string;
2556
+ ecosystem: string;
2557
+ blog: string;
2558
+ jobs: string;
2559
+ docs: string;
2560
+ language: string;
2561
+ support: string;
2562
+ connect: string;
2563
+ back: string;
2564
+ goBackToMainNavigation: string;
2565
+ mainNavigation: string;
2566
+ openMenu: string;
2567
+ privacyPolicy: string;
2568
+ };
2569
+ loadingIndicator: {
2570
+ loading: string;
2571
+ };
2572
+ localeSwitcher: {
2573
+ language: string;
2574
+ };
2575
+ marketingNavbar: {
2576
+ products: {
2577
+ title: string;
2578
+ subgraphs: {
2579
+ title: string;
2580
+ description: string;
2581
+ graphExplorer: {
2582
+ description: string;
2583
+ };
2584
+ subgraphStudio: {
2585
+ description: string;
2586
+ };
2587
+ aside: {
2588
+ title: string;
2589
+ findSubgraphs: string;
2590
+ buildSubgraphs: string;
2591
+ substreamsPoweredSubgraphs: string;
2592
+ };
2593
+ };
2594
+ substreams: {
2595
+ title: string;
2596
+ description: string;
2597
+ substreamsDev: {
2598
+ description: string;
2599
+ };
2600
+ theGraphMarket: {
2601
+ description: string;
2602
+ };
2603
+ aside: {
2604
+ title: string;
2605
+ whatAreSubstreams: string;
2606
+ buildSubstreams: string;
2607
+ neverMissData: string;
2608
+ chainsAndEndpoints: string;
2609
+ };
2610
+ };
2611
+ };
2612
+ networks: {
2613
+ title: string;
2614
+ seeAll: string;
2615
+ };
2616
+ participate: {
2617
+ title: string;
2618
+ developers: {
2619
+ title: string;
2620
+ docs: string;
2621
+ subgraphQuickStart: string;
2622
+ substreamsQuickStart: string;
2623
+ };
2624
+ delegators: {
2625
+ title: string;
2626
+ delegate: string;
2627
+ whatIsTheGraph: string;
2628
+ whatIsDelegating: string;
2629
+ };
2630
+ indexers: {
2631
+ title: string;
2632
+ graphNode: string;
2633
+ firehose: string;
2634
+ graphcast: string;
2635
+ docs: string;
2636
+ };
2637
+ };
2638
+ ecosystem: {
2639
+ title: string;
2640
+ coreDevs: {
2641
+ title: string;
2642
+ };
2643
+ daos: {
2644
+ title: string;
2645
+ infraDAO: string;
2646
+ buildersDAO: string;
2647
+ advocatesDAO: string;
2648
+ };
2649
+ apps: {
2650
+ title: string;
2651
+ geo: string;
2652
+ };
2653
+ events: {
2654
+ title: string;
2655
+ };
2656
+ governance: {
2657
+ title: string;
2658
+ };
2659
+ grants: {
2660
+ title: string;
2661
+ };
2662
+ jobs: {
2663
+ title: string;
2664
+ };
2665
+ };
2666
+ resources: {
2667
+ title: string;
2668
+ learn: {
2669
+ title: string;
2670
+ whatIsTheGraph: string;
2671
+ blog: string;
2672
+ basecamp: string;
2673
+ academy: string;
2674
+ };
2675
+ planning: {
2676
+ title: string;
2677
+ forum: string;
2678
+ gipProcess: string;
2679
+ writeAGip: string;
2680
+ roadmap: string;
2681
+ };
2682
+ podcastsAndVideos: {
2683
+ title: string;
2684
+ grtiq: string;
2685
+ youtube: string;
2686
+ };
2687
+ brand: {
2688
+ title: string;
2689
+ };
2690
+ };
2691
+ pricing: {
2692
+ title: string;
2693
+ studio: {
2694
+ title: string;
2695
+ };
2696
+ substreams: {
2697
+ title: string;
2698
+ };
2699
+ };
2700
+ docs: {
2701
+ title: string;
2702
+ };
2703
+ };
2704
+ };
2705
+ };
2706
+ ro: {
2707
+ components: {
2708
+ appLauncher: {
2709
+ apps: string;
2710
+ };
2711
+ copyButton: {
2712
+ copy: string;
2713
+ copied: string;
2714
+ };
2715
+ cookieBanner: {
2716
+ header: string;
2717
+ description: string;
2718
+ privacyPolicy: string;
2719
+ essentialsOnly: string;
2720
+ allowAll: string;
2721
+ save: string;
2722
+ updateSettings: string;
2723
+ };
2724
+ globalFooter: {
2725
+ home: string;
2726
+ blog: string;
2727
+ jobs: string;
2728
+ docs: string;
2729
+ pastEvents: string;
2730
+ status: string;
2731
+ testnet: string;
2732
+ privacyPolicy: string;
2733
+ termsOfService: string;
2734
+ brandAssets: string;
2735
+ partnershipRequests: string;
2736
+ forum: string;
2737
+ security: string;
2738
+ newsletterInvalidEmail: string;
2739
+ newsletterError: string;
2740
+ newsletterSuccess: string;
2741
+ };
2742
+ globalHeader: {
2743
+ home: string;
2744
+ products: string;
2745
+ pricing: string;
2746
+ ecosystem: string;
2747
+ blog: string;
2748
+ jobs: string;
2749
+ docs: string;
2750
+ language: string;
2751
+ support: string;
2752
+ connect: string;
2753
+ back: string;
2754
+ goBackToMainNavigation: string;
2755
+ mainNavigation: string;
2756
+ openMenu: string;
2757
+ privacyPolicy: string;
2758
+ };
2759
+ loadingIndicator: {
2760
+ loading: string;
2761
+ };
2762
+ localeSwitcher: {
2763
+ language: string;
2764
+ };
2765
+ marketingNavbar: {
2766
+ products: {
2767
+ title: string;
2768
+ subgraphs: {
2769
+ title: string;
2770
+ description: string;
2771
+ graphExplorer: {
2772
+ description: string;
2773
+ };
2774
+ subgraphStudio: {
2775
+ description: string;
2776
+ };
2777
+ aside: {
2778
+ title: string;
2779
+ findSubgraphs: string;
2780
+ buildSubgraphs: string;
2781
+ substreamsPoweredSubgraphs: string;
2782
+ };
2783
+ };
2784
+ substreams: {
2785
+ title: string;
2786
+ description: string;
2787
+ substreamsDev: {
2788
+ description: string;
2789
+ };
2790
+ theGraphMarket: {
2791
+ description: string;
2792
+ };
2793
+ aside: {
2794
+ title: string;
2795
+ whatAreSubstreams: string;
2796
+ buildSubstreams: string;
2797
+ neverMissData: string;
2798
+ chainsAndEndpoints: string;
2799
+ };
2800
+ };
2801
+ };
2802
+ networks: {
2803
+ title: string;
2804
+ seeAll: string;
2805
+ };
2806
+ participate: {
2807
+ title: string;
2808
+ developers: {
2809
+ title: string;
2810
+ docs: string;
2811
+ subgraphQuickStart: string;
2812
+ substreamsQuickStart: string;
2813
+ };
2814
+ delegators: {
2815
+ title: string;
2816
+ delegate: string;
2817
+ whatIsTheGraph: string;
2818
+ whatIsDelegating: string;
2819
+ };
2820
+ indexers: {
2821
+ title: string;
2822
+ graphNode: string;
2823
+ firehose: string;
2824
+ graphcast: string;
2825
+ docs: string;
2826
+ };
2827
+ };
2828
+ ecosystem: {
2829
+ title: string;
2830
+ coreDevs: {
2831
+ title: string;
2832
+ };
2833
+ daos: {
2834
+ title: string;
2835
+ infraDAO: string;
2836
+ buildersDAO: string;
2837
+ advocatesDAO: string;
2838
+ };
2839
+ apps: {
2840
+ title: string;
2841
+ geo: string;
2842
+ };
2843
+ events: {
2844
+ title: string;
2845
+ };
2846
+ governance: {
2847
+ title: string;
2848
+ };
2849
+ grants: {
2850
+ title: string;
2851
+ };
2852
+ jobs: {
2853
+ title: string;
2854
+ };
2855
+ };
2856
+ resources: {
2857
+ title: string;
2858
+ learn: {
2859
+ title: string;
2860
+ whatIsTheGraph: string;
2861
+ blog: string;
2862
+ basecamp: string;
2863
+ academy: string;
2864
+ };
2865
+ planning: {
2866
+ title: string;
2867
+ forum: string;
2868
+ gipProcess: string;
2869
+ writeAGip: string;
2870
+ roadmap: string;
2871
+ };
2872
+ podcastsAndVideos: {
2873
+ title: string;
2874
+ grtiq: string;
2875
+ youtube: string;
2876
+ };
2877
+ brand: {
2878
+ title: string;
2879
+ };
2880
+ };
2881
+ pricing: {
2882
+ title: string;
2883
+ studio: {
2884
+ title: string;
2885
+ };
2886
+ substreams: {
2887
+ title: string;
2888
+ };
2889
+ };
2890
+ docs: {
2891
+ title: string;
2892
+ };
2893
+ };
2894
+ };
2895
+ };
2896
+ ru: {
2897
+ components: {
2898
+ appLauncher: {
2899
+ apps: string;
2900
+ };
2901
+ copyButton: {
2902
+ copy: string;
2903
+ copied: string;
2904
+ };
2905
+ cookieBanner: {
2906
+ header: string;
2907
+ description: string;
2908
+ privacyPolicy: string;
2909
+ essentialsOnly: string;
2910
+ allowAll: string;
2911
+ save: string;
2912
+ updateSettings: string;
2913
+ };
2914
+ globalFooter: {
2915
+ home: string;
2916
+ blog: string;
2917
+ jobs: string;
2918
+ docs: string;
2919
+ pastEvents: string;
2920
+ status: string;
2921
+ testnet: string;
2922
+ privacyPolicy: string;
2923
+ termsOfService: string;
2924
+ brandAssets: string;
2925
+ partnershipRequests: string;
2926
+ forum: string;
2927
+ security: string;
2928
+ newsletterInvalidEmail: string;
2929
+ newsletterError: string;
2930
+ newsletterSuccess: string;
2931
+ };
2932
+ globalHeader: {
2933
+ home: string;
2934
+ products: string;
2935
+ pricing: string;
2936
+ ecosystem: string;
2937
+ blog: string;
2938
+ jobs: string;
2939
+ docs: string;
2940
+ language: string;
2941
+ support: string;
2942
+ connect: string;
2943
+ back: string;
2944
+ goBackToMainNavigation: string;
2945
+ mainNavigation: string;
2946
+ openMenu: string;
2947
+ privacyPolicy: string;
2948
+ };
2949
+ loadingIndicator: {
2950
+ loading: string;
2951
+ };
2952
+ localeSwitcher: {
2953
+ language: string;
2954
+ };
2955
+ marketingNavbar: {
2956
+ products: {
2957
+ title: string;
2958
+ subgraphs: {
2959
+ title: string;
2960
+ description: string;
2961
+ graphExplorer: {
2962
+ description: string;
2963
+ };
2964
+ subgraphStudio: {
2965
+ description: string;
2966
+ };
2967
+ aside: {
2968
+ title: string;
2969
+ findSubgraphs: string;
2970
+ buildSubgraphs: string;
2971
+ substreamsPoweredSubgraphs: string;
2972
+ };
2973
+ };
2974
+ substreams: {
2975
+ title: string;
2976
+ description: string;
2977
+ substreamsDev: {
2978
+ description: string;
2979
+ };
2980
+ theGraphMarket: {
2981
+ description: string;
2982
+ };
2983
+ aside: {
2984
+ title: string;
2985
+ whatAreSubstreams: string;
2986
+ buildSubstreams: string;
2987
+ neverMissData: string;
2988
+ chainsAndEndpoints: string;
2989
+ };
2990
+ };
2991
+ };
2992
+ networks: {
2993
+ title: string;
2994
+ seeAll: string;
2995
+ };
2996
+ participate: {
2997
+ title: string;
2998
+ developers: {
2999
+ title: string;
3000
+ docs: string;
3001
+ subgraphQuickStart: string;
3002
+ substreamsQuickStart: string;
3003
+ };
3004
+ delegators: {
3005
+ title: string;
3006
+ delegate: string;
3007
+ whatIsTheGraph: string;
3008
+ whatIsDelegating: string;
3009
+ };
3010
+ indexers: {
3011
+ title: string;
3012
+ graphNode: string;
3013
+ firehose: string;
3014
+ graphcast: string;
3015
+ docs: string;
3016
+ };
3017
+ };
3018
+ ecosystem: {
3019
+ title: string;
3020
+ coreDevs: {
3021
+ title: string;
3022
+ };
3023
+ daos: {
3024
+ title: string;
3025
+ infraDAO: string;
3026
+ buildersDAO: string;
3027
+ advocatesDAO: string;
3028
+ };
3029
+ apps: {
3030
+ title: string;
3031
+ geo: string;
3032
+ };
3033
+ events: {
3034
+ title: string;
3035
+ };
3036
+ governance: {
3037
+ title: string;
3038
+ };
3039
+ grants: {
3040
+ title: string;
3041
+ };
3042
+ jobs: {
3043
+ title: string;
3044
+ };
3045
+ };
3046
+ resources: {
3047
+ title: string;
3048
+ learn: {
3049
+ title: string;
3050
+ whatIsTheGraph: string;
3051
+ blog: string;
3052
+ basecamp: string;
3053
+ academy: string;
3054
+ };
3055
+ planning: {
3056
+ title: string;
3057
+ forum: string;
3058
+ gipProcess: string;
3059
+ writeAGip: string;
3060
+ roadmap: string;
3061
+ };
3062
+ podcastsAndVideos: {
3063
+ title: string;
3064
+ grtiq: string;
3065
+ youtube: string;
3066
+ };
3067
+ brand: {
3068
+ title: string;
3069
+ };
3070
+ };
3071
+ pricing: {
3072
+ title: string;
3073
+ studio: {
3074
+ title: string;
3075
+ };
3076
+ substreams: {
3077
+ title: string;
3078
+ };
3079
+ };
3080
+ docs: {
3081
+ title: string;
3082
+ };
3083
+ };
3084
+ };
3085
+ };
3086
+ sv: {
3087
+ components: {
3088
+ appLauncher: {
3089
+ apps: string;
3090
+ };
3091
+ copyButton: {
3092
+ copy: string;
3093
+ copied: string;
3094
+ };
3095
+ cookieBanner: {
3096
+ header: string;
3097
+ description: string;
3098
+ privacyPolicy: string;
3099
+ essentialsOnly: string;
3100
+ allowAll: string;
3101
+ save: string;
3102
+ updateSettings: string;
3103
+ };
3104
+ globalFooter: {
3105
+ home: string;
3106
+ blog: string;
3107
+ jobs: string;
3108
+ docs: string;
3109
+ pastEvents: string;
3110
+ status: string;
3111
+ testnet: string;
3112
+ privacyPolicy: string;
3113
+ termsOfService: string;
3114
+ brandAssets: string;
3115
+ partnershipRequests: string;
3116
+ forum: string;
3117
+ security: string;
3118
+ newsletterInvalidEmail: string;
3119
+ newsletterError: string;
3120
+ newsletterSuccess: string;
3121
+ };
3122
+ globalHeader: {
3123
+ home: string;
3124
+ products: string;
3125
+ pricing: string;
3126
+ ecosystem: string;
3127
+ blog: string;
3128
+ jobs: string;
3129
+ docs: string;
3130
+ language: string;
3131
+ support: string;
3132
+ connect: string;
3133
+ back: string;
3134
+ goBackToMainNavigation: string;
3135
+ mainNavigation: string;
3136
+ openMenu: string;
3137
+ privacyPolicy: string;
3138
+ };
3139
+ loadingIndicator: {
3140
+ loading: string;
3141
+ };
3142
+ localeSwitcher: {
3143
+ language: string;
3144
+ };
3145
+ marketingNavbar: {
3146
+ products: {
3147
+ title: string;
3148
+ subgraphs: {
3149
+ title: string;
3150
+ description: string;
3151
+ graphExplorer: {
3152
+ description: string;
3153
+ };
3154
+ subgraphStudio: {
3155
+ description: string;
3156
+ };
3157
+ aside: {
3158
+ title: string;
3159
+ findSubgraphs: string;
3160
+ buildSubgraphs: string;
3161
+ substreamsPoweredSubgraphs: string;
3162
+ };
3163
+ };
3164
+ substreams: {
3165
+ title: string;
3166
+ description: string;
3167
+ substreamsDev: {
3168
+ description: string;
3169
+ };
3170
+ theGraphMarket: {
3171
+ description: string;
3172
+ };
3173
+ aside: {
3174
+ title: string;
3175
+ whatAreSubstreams: string;
3176
+ buildSubstreams: string;
3177
+ neverMissData: string;
3178
+ chainsAndEndpoints: string;
3179
+ };
3180
+ };
3181
+ };
3182
+ networks: {
3183
+ title: string;
3184
+ seeAll: string;
3185
+ };
3186
+ participate: {
3187
+ title: string;
3188
+ developers: {
3189
+ title: string;
3190
+ docs: string;
3191
+ subgraphQuickStart: string;
3192
+ substreamsQuickStart: string;
3193
+ };
3194
+ delegators: {
3195
+ title: string;
3196
+ delegate: string;
3197
+ whatIsTheGraph: string;
3198
+ whatIsDelegating: string;
3199
+ };
3200
+ indexers: {
3201
+ title: string;
3202
+ graphNode: string;
3203
+ firehose: string;
3204
+ graphcast: string;
3205
+ docs: string;
3206
+ };
3207
+ };
3208
+ ecosystem: {
3209
+ title: string;
3210
+ coreDevs: {
3211
+ title: string;
3212
+ };
3213
+ daos: {
3214
+ title: string;
3215
+ infraDAO: string;
3216
+ buildersDAO: string;
3217
+ advocatesDAO: string;
3218
+ };
3219
+ apps: {
3220
+ title: string;
3221
+ geo: string;
3222
+ };
3223
+ events: {
3224
+ title: string;
3225
+ };
3226
+ governance: {
3227
+ title: string;
3228
+ };
3229
+ grants: {
3230
+ title: string;
3231
+ };
3232
+ jobs: {
3233
+ title: string;
3234
+ };
3235
+ };
3236
+ resources: {
3237
+ title: string;
3238
+ learn: {
3239
+ title: string;
3240
+ whatIsTheGraph: string;
3241
+ blog: string;
3242
+ basecamp: string;
3243
+ academy: string;
3244
+ };
3245
+ planning: {
3246
+ title: string;
3247
+ forum: string;
3248
+ gipProcess: string;
3249
+ writeAGip: string;
3250
+ roadmap: string;
3251
+ };
3252
+ podcastsAndVideos: {
3253
+ title: string;
3254
+ grtiq: string;
3255
+ youtube: string;
3256
+ };
3257
+ brand: {
3258
+ title: string;
3259
+ };
3260
+ };
3261
+ pricing: {
3262
+ title: string;
3263
+ studio: {
3264
+ title: string;
3265
+ };
3266
+ substreams: {
3267
+ title: string;
3268
+ };
3269
+ };
3270
+ docs: {
3271
+ title: string;
3272
+ };
3273
+ };
3274
+ };
3275
+ };
3276
+ tr: {
3277
+ components: {
3278
+ appLauncher: {
3279
+ apps: string;
3280
+ };
3281
+ copyButton: {
3282
+ copy: string;
3283
+ copied: string;
3284
+ };
3285
+ cookieBanner: {
3286
+ header: string;
3287
+ description: string;
3288
+ privacyPolicy: string;
3289
+ essentialsOnly: string;
3290
+ allowAll: string;
3291
+ save: string;
3292
+ updateSettings: string;
3293
+ };
3294
+ globalFooter: {
3295
+ home: string;
3296
+ blog: string;
3297
+ jobs: string;
3298
+ docs: string;
3299
+ pastEvents: string;
3300
+ status: string;
3301
+ testnet: string;
3302
+ privacyPolicy: string;
3303
+ termsOfService: string;
3304
+ brandAssets: string;
3305
+ partnershipRequests: string;
3306
+ forum: string;
3307
+ security: string;
3308
+ newsletterInvalidEmail: string;
3309
+ newsletterError: string;
3310
+ newsletterSuccess: string;
3311
+ };
3312
+ globalHeader: {
3313
+ home: string;
3314
+ products: string;
3315
+ pricing: string;
3316
+ ecosystem: string;
3317
+ blog: string;
3318
+ jobs: string;
3319
+ docs: string;
3320
+ language: string;
3321
+ support: string;
3322
+ connect: string;
3323
+ back: string;
3324
+ goBackToMainNavigation: string;
3325
+ mainNavigation: string;
3326
+ openMenu: string;
3327
+ privacyPolicy: string;
3328
+ };
3329
+ loadingIndicator: {
3330
+ loading: string;
3331
+ };
3332
+ localeSwitcher: {
3333
+ language: string;
3334
+ };
3335
+ marketingNavbar: {
3336
+ products: {
3337
+ title: string;
3338
+ subgraphs: {
3339
+ title: string;
3340
+ description: string;
3341
+ graphExplorer: {
3342
+ description: string;
3343
+ };
3344
+ subgraphStudio: {
3345
+ description: string;
3346
+ };
3347
+ aside: {
3348
+ title: string;
3349
+ findSubgraphs: string;
3350
+ buildSubgraphs: string;
3351
+ substreamsPoweredSubgraphs: string;
3352
+ };
3353
+ };
3354
+ substreams: {
3355
+ title: string;
3356
+ description: string;
3357
+ substreamsDev: {
3358
+ description: string;
3359
+ };
3360
+ theGraphMarket: {
3361
+ description: string;
3362
+ };
3363
+ aside: {
3364
+ title: string;
3365
+ whatAreSubstreams: string;
3366
+ buildSubstreams: string;
3367
+ neverMissData: string;
3368
+ chainsAndEndpoints: string;
3369
+ };
3370
+ };
3371
+ };
3372
+ networks: {
3373
+ title: string;
3374
+ seeAll: string;
3375
+ };
3376
+ participate: {
3377
+ title: string;
3378
+ developers: {
3379
+ title: string;
3380
+ docs: string;
3381
+ subgraphQuickStart: string;
3382
+ substreamsQuickStart: string;
3383
+ };
3384
+ delegators: {
3385
+ title: string;
3386
+ delegate: string;
3387
+ whatIsTheGraph: string;
3388
+ whatIsDelegating: string;
3389
+ };
3390
+ indexers: {
3391
+ title: string;
3392
+ graphNode: string;
3393
+ firehose: string;
3394
+ graphcast: string;
3395
+ docs: string;
3396
+ };
3397
+ };
3398
+ ecosystem: {
3399
+ title: string;
3400
+ coreDevs: {
3401
+ title: string;
3402
+ };
3403
+ daos: {
3404
+ title: string;
3405
+ infraDAO: string;
3406
+ buildersDAO: string;
3407
+ advocatesDAO: string;
3408
+ };
3409
+ apps: {
3410
+ title: string;
3411
+ geo: string;
3412
+ };
3413
+ events: {
3414
+ title: string;
3415
+ };
3416
+ governance: {
3417
+ title: string;
3418
+ };
3419
+ grants: {
3420
+ title: string;
3421
+ };
3422
+ jobs: {
3423
+ title: string;
3424
+ };
3425
+ };
3426
+ resources: {
3427
+ title: string;
3428
+ learn: {
3429
+ title: string;
3430
+ whatIsTheGraph: string;
3431
+ blog: string;
3432
+ basecamp: string;
3433
+ academy: string;
3434
+ };
3435
+ planning: {
3436
+ title: string;
3437
+ forum: string;
3438
+ gipProcess: string;
3439
+ writeAGip: string;
3440
+ roadmap: string;
3441
+ };
3442
+ podcastsAndVideos: {
3443
+ title: string;
3444
+ grtiq: string;
3445
+ youtube: string;
3446
+ };
3447
+ brand: {
3448
+ title: string;
3449
+ };
3450
+ };
3451
+ pricing: {
3452
+ title: string;
3453
+ studio: {
3454
+ title: string;
3455
+ };
3456
+ substreams: {
3457
+ title: string;
3458
+ };
3459
+ };
3460
+ docs: {
3461
+ title: string;
3462
+ };
3463
+ };
3464
+ };
3465
+ };
3466
+ uk: {
3467
+ components: {
3468
+ appLauncher: {
3469
+ apps: string;
3470
+ };
3471
+ copyButton: {
3472
+ copy: string;
3473
+ copied: string;
3474
+ };
3475
+ cookieBanner: {
3476
+ header: string;
3477
+ description: string;
3478
+ privacyPolicy: string;
3479
+ essentialsOnly: string;
3480
+ allowAll: string;
3481
+ save: string;
3482
+ updateSettings: string;
3483
+ };
3484
+ globalFooter: {
3485
+ home: string;
3486
+ blog: string;
3487
+ jobs: string;
3488
+ docs: string;
3489
+ pastEvents: string;
3490
+ status: string;
3491
+ testnet: string;
3492
+ privacyPolicy: string;
3493
+ termsOfService: string;
3494
+ brandAssets: string;
3495
+ partnershipRequests: string;
3496
+ forum: string;
3497
+ security: string;
3498
+ newsletterInvalidEmail: string;
3499
+ newsletterError: string;
3500
+ newsletterSuccess: string;
3501
+ };
3502
+ globalHeader: {
3503
+ home: string;
3504
+ products: string;
3505
+ pricing: string;
3506
+ ecosystem: string;
3507
+ blog: string;
3508
+ jobs: string;
3509
+ docs: string;
3510
+ language: string;
3511
+ support: string;
3512
+ connect: string;
3513
+ back: string;
3514
+ goBackToMainNavigation: string;
3515
+ mainNavigation: string;
3516
+ openMenu: string;
3517
+ privacyPolicy: string;
3518
+ };
3519
+ loadingIndicator: {
3520
+ loading: string;
3521
+ };
3522
+ localeSwitcher: {
3523
+ language: string;
3524
+ };
3525
+ marketingNavbar: {
3526
+ products: {
3527
+ title: string;
3528
+ subgraphs: {
3529
+ title: string;
3530
+ description: string;
3531
+ graphExplorer: {
3532
+ description: string;
3533
+ };
3534
+ subgraphStudio: {
3535
+ description: string;
3536
+ };
3537
+ aside: {
3538
+ title: string;
3539
+ findSubgraphs: string;
3540
+ buildSubgraphs: string;
3541
+ substreamsPoweredSubgraphs: string;
3542
+ };
3543
+ };
3544
+ substreams: {
3545
+ title: string;
3546
+ description: string;
3547
+ substreamsDev: {
3548
+ description: string;
3549
+ };
3550
+ theGraphMarket: {
3551
+ description: string;
3552
+ };
3553
+ aside: {
3554
+ title: string;
3555
+ whatAreSubstreams: string;
3556
+ buildSubstreams: string;
3557
+ neverMissData: string;
3558
+ chainsAndEndpoints: string;
3559
+ };
3560
+ };
3561
+ };
3562
+ networks: {
3563
+ title: string;
3564
+ seeAll: string;
3565
+ };
3566
+ participate: {
3567
+ title: string;
3568
+ developers: {
3569
+ title: string;
3570
+ docs: string;
3571
+ subgraphQuickStart: string;
3572
+ substreamsQuickStart: string;
3573
+ };
3574
+ delegators: {
3575
+ title: string;
3576
+ delegate: string;
3577
+ whatIsTheGraph: string;
3578
+ whatIsDelegating: string;
3579
+ };
3580
+ indexers: {
3581
+ title: string;
3582
+ graphNode: string;
3583
+ firehose: string;
3584
+ graphcast: string;
3585
+ docs: string;
3586
+ };
3587
+ };
3588
+ ecosystem: {
3589
+ title: string;
3590
+ coreDevs: {
3591
+ title: string;
3592
+ };
3593
+ daos: {
3594
+ title: string;
3595
+ infraDAO: string;
3596
+ buildersDAO: string;
3597
+ advocatesDAO: string;
3598
+ };
3599
+ apps: {
3600
+ title: string;
3601
+ geo: string;
3602
+ };
3603
+ events: {
3604
+ title: string;
3605
+ };
3606
+ governance: {
3607
+ title: string;
3608
+ };
3609
+ grants: {
3610
+ title: string;
3611
+ };
3612
+ jobs: {
3613
+ title: string;
3614
+ };
3615
+ };
3616
+ resources: {
3617
+ title: string;
3618
+ learn: {
3619
+ title: string;
3620
+ whatIsTheGraph: string;
3621
+ blog: string;
3622
+ basecamp: string;
3623
+ academy: string;
3624
+ };
3625
+ planning: {
3626
+ title: string;
3627
+ forum: string;
3628
+ gipProcess: string;
3629
+ writeAGip: string;
3630
+ roadmap: string;
3631
+ };
3632
+ podcastsAndVideos: {
3633
+ title: string;
3634
+ grtiq: string;
3635
+ youtube: string;
3636
+ };
3637
+ brand: {
3638
+ title: string;
3639
+ };
3640
+ };
3641
+ pricing: {
3642
+ title: string;
3643
+ studio: {
3644
+ title: string;
3645
+ };
3646
+ substreams: {
3647
+ title: string;
3648
+ };
3649
+ };
3650
+ docs: {
3651
+ title: string;
3652
+ };
3653
+ };
3654
+ };
3655
+ };
3656
+ ur: {
3657
+ components: {
3658
+ appLauncher: {
3659
+ apps: string;
3660
+ };
3661
+ copyButton: {
3662
+ copy: string;
3663
+ copied: string;
3664
+ };
3665
+ cookieBanner: {
3666
+ header: string;
3667
+ description: string;
3668
+ privacyPolicy: string;
3669
+ essentialsOnly: string;
3670
+ allowAll: string;
3671
+ save: string;
3672
+ updateSettings: string;
3673
+ };
3674
+ globalFooter: {
3675
+ home: string;
3676
+ blog: string;
3677
+ jobs: string;
3678
+ docs: string;
3679
+ pastEvents: string;
3680
+ status: string;
3681
+ testnet: string;
3682
+ privacyPolicy: string;
3683
+ termsOfService: string;
3684
+ brandAssets: string;
3685
+ partnershipRequests: string;
3686
+ forum: string;
3687
+ security: string;
3688
+ newsletterInvalidEmail: string;
3689
+ newsletterError: string;
3690
+ newsletterSuccess: string;
3691
+ };
3692
+ globalHeader: {
3693
+ home: string;
3694
+ products: string;
3695
+ pricing: string;
3696
+ ecosystem: string;
3697
+ blog: string;
3698
+ jobs: string;
3699
+ docs: string;
3700
+ language: string;
3701
+ support: string;
3702
+ connect: string;
3703
+ back: string;
3704
+ goBackToMainNavigation: string;
3705
+ mainNavigation: string;
3706
+ openMenu: string;
3707
+ privacyPolicy: string;
3708
+ };
3709
+ loadingIndicator: {
3710
+ loading: string;
3711
+ };
3712
+ localeSwitcher: {
3713
+ language: string;
3714
+ };
3715
+ marketingNavbar: {
3716
+ products: {
3717
+ title: string;
3718
+ subgraphs: {
3719
+ title: string;
3720
+ description: string;
3721
+ graphExplorer: {
3722
+ description: string;
3723
+ };
3724
+ subgraphStudio: {
3725
+ description: string;
3726
+ };
3727
+ aside: {
3728
+ title: string;
3729
+ findSubgraphs: string;
3730
+ buildSubgraphs: string;
3731
+ substreamsPoweredSubgraphs: string;
3732
+ };
3733
+ };
3734
+ substreams: {
3735
+ title: string;
3736
+ description: string;
3737
+ substreamsDev: {
3738
+ description: string;
3739
+ };
3740
+ theGraphMarket: {
3741
+ description: string;
3742
+ };
3743
+ aside: {
3744
+ title: string;
3745
+ whatAreSubstreams: string;
3746
+ buildSubstreams: string;
3747
+ neverMissData: string;
3748
+ chainsAndEndpoints: string;
3749
+ };
3750
+ };
3751
+ };
3752
+ networks: {
3753
+ title: string;
3754
+ seeAll: string;
3755
+ };
3756
+ participate: {
3757
+ title: string;
3758
+ developers: {
3759
+ title: string;
3760
+ docs: string;
3761
+ subgraphQuickStart: string;
3762
+ substreamsQuickStart: string;
3763
+ };
3764
+ delegators: {
3765
+ title: string;
3766
+ delegate: string;
3767
+ whatIsTheGraph: string;
3768
+ whatIsDelegating: string;
3769
+ };
3770
+ indexers: {
3771
+ title: string;
3772
+ graphNode: string;
3773
+ firehose: string;
3774
+ graphcast: string;
3775
+ docs: string;
3776
+ };
3777
+ };
3778
+ ecosystem: {
3779
+ title: string;
3780
+ coreDevs: {
3781
+ title: string;
3782
+ };
3783
+ daos: {
3784
+ title: string;
3785
+ infraDAO: string;
3786
+ buildersDAO: string;
3787
+ advocatesDAO: string;
3788
+ };
3789
+ apps: {
3790
+ title: string;
3791
+ geo: string;
3792
+ };
3793
+ events: {
3794
+ title: string;
3795
+ };
3796
+ governance: {
3797
+ title: string;
3798
+ };
3799
+ grants: {
3800
+ title: string;
3801
+ };
3802
+ jobs: {
3803
+ title: string;
3804
+ };
3805
+ };
3806
+ resources: {
3807
+ title: string;
3808
+ learn: {
3809
+ title: string;
3810
+ whatIsTheGraph: string;
3811
+ blog: string;
3812
+ basecamp: string;
3813
+ academy: string;
3814
+ };
3815
+ planning: {
3816
+ title: string;
3817
+ forum: string;
3818
+ gipProcess: string;
3819
+ writeAGip: string;
3820
+ roadmap: string;
3821
+ };
3822
+ podcastsAndVideos: {
3823
+ title: string;
3824
+ grtiq: string;
3825
+ youtube: string;
3826
+ };
3827
+ brand: {
3828
+ title: string;
3829
+ };
3830
+ };
3831
+ pricing: {
3832
+ title: string;
3833
+ studio: {
3834
+ title: string;
3835
+ };
3836
+ substreams: {
3837
+ title: string;
3838
+ };
3839
+ };
3840
+ docs: {
3841
+ title: string;
3842
+ };
3843
+ };
3844
+ };
3845
+ };
3846
+ vi: {
3847
+ components: {
3848
+ appLauncher: {
3849
+ apps: string;
3850
+ };
3851
+ copyButton: {
3852
+ copy: string;
3853
+ copied: string;
3854
+ };
3855
+ cookieBanner: {
3856
+ header: string;
3857
+ description: string;
3858
+ privacyPolicy: string;
3859
+ essentialsOnly: string;
3860
+ allowAll: string;
3861
+ save: string;
3862
+ updateSettings: string;
3863
+ };
3864
+ globalFooter: {
3865
+ home: string;
3866
+ blog: string;
3867
+ jobs: string;
3868
+ docs: string;
3869
+ pastEvents: string;
3870
+ status: string;
3871
+ testnet: string;
3872
+ privacyPolicy: string;
3873
+ termsOfService: string;
3874
+ brandAssets: string;
3875
+ partnershipRequests: string;
3876
+ forum: string;
3877
+ security: string;
3878
+ newsletterInvalidEmail: string;
3879
+ newsletterError: string;
3880
+ newsletterSuccess: string;
3881
+ };
3882
+ globalHeader: {
3883
+ home: string;
3884
+ products: string;
3885
+ pricing: string;
3886
+ ecosystem: string;
3887
+ blog: string;
3888
+ jobs: string;
3889
+ docs: string;
3890
+ language: string;
3891
+ support: string;
3892
+ connect: string;
3893
+ back: string;
3894
+ goBackToMainNavigation: string;
3895
+ mainNavigation: string;
3896
+ openMenu: string;
3897
+ privacyPolicy: string;
3898
+ };
3899
+ loadingIndicator: {
3900
+ loading: string;
3901
+ };
3902
+ localeSwitcher: {
3903
+ language: string;
3904
+ };
3905
+ marketingNavbar: {
3906
+ products: {
3907
+ title: string;
3908
+ subgraphs: {
3909
+ title: string;
3910
+ description: string;
3911
+ graphExplorer: {
3912
+ description: string;
3913
+ };
3914
+ subgraphStudio: {
3915
+ description: string;
3916
+ };
3917
+ aside: {
3918
+ title: string;
3919
+ findSubgraphs: string;
3920
+ buildSubgraphs: string;
3921
+ substreamsPoweredSubgraphs: string;
3922
+ };
3923
+ };
3924
+ substreams: {
3925
+ title: string;
3926
+ description: string;
3927
+ substreamsDev: {
3928
+ description: string;
3929
+ };
3930
+ theGraphMarket: {
3931
+ description: string;
3932
+ };
3933
+ aside: {
3934
+ title: string;
3935
+ whatAreSubstreams: string;
3936
+ buildSubstreams: string;
3937
+ neverMissData: string;
3938
+ chainsAndEndpoints: string;
3939
+ };
3940
+ };
3941
+ };
3942
+ networks: {
3943
+ title: string;
3944
+ seeAll: string;
3945
+ };
3946
+ participate: {
3947
+ title: string;
3948
+ developers: {
3949
+ title: string;
3950
+ docs: string;
3951
+ subgraphQuickStart: string;
3952
+ substreamsQuickStart: string;
3953
+ };
3954
+ delegators: {
3955
+ title: string;
3956
+ delegate: string;
3957
+ whatIsTheGraph: string;
3958
+ whatIsDelegating: string;
3959
+ };
3960
+ indexers: {
3961
+ title: string;
3962
+ graphNode: string;
3963
+ firehose: string;
3964
+ graphcast: string;
3965
+ docs: string;
3966
+ };
3967
+ };
3968
+ ecosystem: {
3969
+ title: string;
3970
+ coreDevs: {
3971
+ title: string;
3972
+ };
3973
+ daos: {
3974
+ title: string;
3975
+ infraDAO: string;
3976
+ buildersDAO: string;
3977
+ advocatesDAO: string;
3978
+ };
3979
+ apps: {
3980
+ title: string;
3981
+ geo: string;
3982
+ };
3983
+ events: {
3984
+ title: string;
3985
+ };
3986
+ governance: {
3987
+ title: string;
3988
+ };
3989
+ grants: {
3990
+ title: string;
3991
+ };
3992
+ jobs: {
3993
+ title: string;
3994
+ };
3995
+ };
3996
+ resources: {
3997
+ title: string;
3998
+ learn: {
3999
+ title: string;
4000
+ whatIsTheGraph: string;
4001
+ blog: string;
4002
+ basecamp: string;
4003
+ academy: string;
4004
+ };
4005
+ planning: {
4006
+ title: string;
4007
+ forum: string;
4008
+ gipProcess: string;
4009
+ writeAGip: string;
4010
+ roadmap: string;
4011
+ };
4012
+ podcastsAndVideos: {
4013
+ title: string;
4014
+ grtiq: string;
4015
+ youtube: string;
4016
+ };
4017
+ brand: {
4018
+ title: string;
4019
+ };
4020
+ };
4021
+ pricing: {
4022
+ title: string;
4023
+ studio: {
4024
+ title: string;
4025
+ };
4026
+ substreams: {
4027
+ title: string;
4028
+ };
4029
+ };
4030
+ docs: {
4031
+ title: string;
4032
+ };
4033
+ };
4034
+ };
4035
+ };
4036
+ zh: {
4037
+ components: {
4038
+ appLauncher: {
4039
+ apps: string;
4040
+ };
4041
+ copyButton: {
4042
+ copy: string;
4043
+ copied: string;
4044
+ };
4045
+ cookieBanner: {
4046
+ header: string;
4047
+ description: string;
4048
+ privacyPolicy: string;
4049
+ essentialsOnly: string;
4050
+ allowAll: string;
4051
+ save: string;
4052
+ updateSettings: string;
4053
+ };
4054
+ globalFooter: {
4055
+ home: string;
4056
+ blog: string;
4057
+ jobs: string;
4058
+ docs: string;
4059
+ pastEvents: string;
4060
+ status: string;
4061
+ testnet: string;
4062
+ privacyPolicy: string;
4063
+ termsOfService: string;
4064
+ brandAssets: string;
4065
+ partnershipRequests: string;
4066
+ forum: string;
4067
+ security: string;
4068
+ newsletterInvalidEmail: string;
4069
+ newsletterError: string;
4070
+ newsletterSuccess: string;
4071
+ };
4072
+ globalHeader: {
4073
+ home: string;
4074
+ products: string;
4075
+ pricing: string;
4076
+ ecosystem: string;
4077
+ blog: string;
4078
+ jobs: string;
4079
+ docs: string;
4080
+ language: string;
4081
+ support: string;
4082
+ connect: string;
4083
+ back: string;
4084
+ goBackToMainNavigation: string;
4085
+ mainNavigation: string;
4086
+ openMenu: string;
4087
+ privacyPolicy: string;
4088
+ };
4089
+ loadingIndicator: {
4090
+ loading: string;
4091
+ };
4092
+ localeSwitcher: {
4093
+ language: string;
4094
+ };
4095
+ marketingNavbar: {
4096
+ products: {
4097
+ title: string;
4098
+ subgraphs: {
4099
+ title: string;
4100
+ description: string;
4101
+ graphExplorer: {
4102
+ description: string;
4103
+ };
4104
+ subgraphStudio: {
4105
+ description: string;
4106
+ };
4107
+ aside: {
4108
+ title: string;
4109
+ findSubgraphs: string;
4110
+ buildSubgraphs: string;
4111
+ substreamsPoweredSubgraphs: string;
4112
+ };
4113
+ };
4114
+ substreams: {
4115
+ title: string;
4116
+ description: string;
4117
+ substreamsDev: {
4118
+ description: string;
4119
+ };
4120
+ theGraphMarket: {
4121
+ description: string;
4122
+ };
4123
+ aside: {
4124
+ title: string;
4125
+ whatAreSubstreams: string;
4126
+ buildSubstreams: string;
4127
+ neverMissData: string;
4128
+ chainsAndEndpoints: string;
4129
+ };
4130
+ };
4131
+ };
4132
+ networks: {
4133
+ title: string;
4134
+ seeAll: string;
4135
+ };
4136
+ participate: {
4137
+ title: string;
4138
+ developers: {
4139
+ title: string;
4140
+ docs: string;
4141
+ subgraphQuickStart: string;
4142
+ substreamsQuickStart: string;
4143
+ };
4144
+ delegators: {
4145
+ title: string;
4146
+ delegate: string;
4147
+ whatIsTheGraph: string;
4148
+ whatIsDelegating: string;
4149
+ };
4150
+ indexers: {
4151
+ title: string;
4152
+ graphNode: string;
4153
+ firehose: string;
4154
+ graphcast: string;
4155
+ docs: string;
4156
+ };
4157
+ };
4158
+ ecosystem: {
4159
+ title: string;
4160
+ coreDevs: {
4161
+ title: string;
4162
+ };
4163
+ daos: {
4164
+ title: string;
4165
+ infraDAO: string;
4166
+ buildersDAO: string;
4167
+ advocatesDAO: string;
4168
+ };
4169
+ apps: {
4170
+ title: string;
4171
+ geo: string;
4172
+ };
4173
+ events: {
4174
+ title: string;
4175
+ };
4176
+ governance: {
4177
+ title: string;
4178
+ };
4179
+ grants: {
4180
+ title: string;
4181
+ };
4182
+ jobs: {
4183
+ title: string;
4184
+ };
4185
+ };
4186
+ resources: {
4187
+ title: string;
4188
+ learn: {
4189
+ title: string;
4190
+ whatIsTheGraph: string;
4191
+ blog: string;
4192
+ basecamp: string;
4193
+ academy: string;
4194
+ };
4195
+ planning: {
4196
+ title: string;
4197
+ forum: string;
4198
+ gipProcess: string;
4199
+ writeAGip: string;
4200
+ roadmap: string;
4201
+ };
4202
+ podcastsAndVideos: {
4203
+ title: string;
4204
+ grtiq: string;
4205
+ youtube: string;
4206
+ };
4207
+ brand: {
4208
+ title: string;
4209
+ };
4210
+ };
4211
+ pricing: {
4212
+ title: string;
4213
+ studio: {
4214
+ title: string;
4215
+ };
4216
+ substreams: {
4217
+ title: string;
4218
+ };
4219
+ };
4220
+ docs: {
4221
+ title: string;
4222
+ };
4223
+ };
4224
+ };
4225
+ };
4226
+ }, {
4227
+ THE_GRAPH: {
4228
+ isDefault: true;
4229
+ name: string;
4230
+ description: string;
4231
+ href: string;
4232
+ navItems: ({
4233
+ label: string;
4234
+ href: string;
4235
+ subItems?: undefined;
4236
+ id?: undefined;
4237
+ active?: undefined;
4238
+ } | {
4239
+ label: string;
4240
+ subItems: {
4241
+ label: string;
4242
+ description: string;
4243
+ href: string;
4244
+ }[];
4245
+ href?: undefined;
4246
+ id?: undefined;
4247
+ active?: undefined;
4248
+ } | {
4249
+ id: string;
4250
+ label: string;
4251
+ href: string;
4252
+ active: RegExp;
4253
+ subItems?: undefined;
4254
+ })[];
4255
+ };
4256
+ EXPLORER: {
4257
+ name: string;
4258
+ description: string;
4259
+ href: string;
4260
+ navItems: ({
4261
+ label: string;
4262
+ href: string;
4263
+ active: RegExp;
4264
+ id?: undefined;
4265
+ } | {
4266
+ label: string;
4267
+ href: string;
4268
+ active?: undefined;
4269
+ id?: undefined;
4270
+ } | {
4271
+ id: string;
4272
+ label: string;
4273
+ href: string;
4274
+ active: RegExp;
4275
+ })[];
4276
+ };
4277
+ SUBGRAPH_STUDIO: {
4278
+ name: string;
4279
+ description: string;
4280
+ href: string;
4281
+ navItems: ({
4282
+ label: string;
4283
+ href: string;
4284
+ active: RegExp;
4285
+ id?: undefined;
4286
+ } | {
4287
+ label: string;
4288
+ href: string;
4289
+ active?: undefined;
4290
+ id?: undefined;
4291
+ } | {
4292
+ id: string;
4293
+ label: string;
4294
+ href: string;
4295
+ active: RegExp;
4296
+ })[];
4297
+ };
4298
+ }>;
4299
+ export interface GlobalHeaderProps<T extends Products = ReturnType<typeof DEFAULT_PRODUCTS>> extends Omit<HTMLAttributes<HTMLElement>, 'children'> {
4300
+ /**
4301
+ * Products to display in the product switcher, along with their default nav items. Defaults to the standard products.
4302
+ * Should generally not be overridden except for testing.
4303
+ */
4304
+ products?: T;
4305
+ /**
4306
+ * The key of the product to show as active in the product switcher. It is also used to compute the default nav items.
4307
+ * Defaults to the first product where `isDefault` is `true` (which is `THE_GRAPH`, in the standard products).
4308
+ */
4309
+ activeProduct?: keyof T | null;
4310
+ /**
4311
+ * The path that the user is currently on, used to determine the active nav item. Should not include the base path.
4312
+ * Note that an empty string, `null`, and `undefined` are all different values:
4313
+ * - an empty string is the root path of the current app (same as `/`).
4314
+ * - `null` means no active path (e.g. we are not in an app), so no nav item will be active.
4315
+ * - `undefined` means that we want the active path to be determined automatically based on the Next.js router config
4316
+ * passed to `GDSProvider` via `clientRouter`, if any; otherwise, defaults to `null`.
4317
+ */
4318
+ activePath?: string | null;
4319
+ /**
4320
+ * Base path of the current app, which we'll remove from the nav item `href`s that start with it (considered internal links).
4321
+ * Note that an empty string, `null`, and `undefined` are all different values:
4322
+ * - an empty string is the default base path of a Next.js app, and is used in `graph-website`.
4323
+ * - `null` means that we are not in an app, so no link will be considered internal.
4324
+ * - `undefined` means that we want the base path to be determined automatically based on the Next.js router config
4325
+ * passed to `GDSProvider` via `clientRouter`, if any; otherwise, defaults to `null`.
4326
+ */
4327
+ basePath?: string | null;
4328
+ /**
4329
+ * Base URL to prepend to nav item `href`s that are root-relative (i.e. start with `/`) but external to the current app.
4330
+ * Defaults to `https://thegraph.com/`, or to `https://staging.thegraph.com/` if `process.env.ENVIRONMENT` is `staging`.
4331
+ */
4332
+ baseUrl?: string;
4333
+ /**
4334
+ * Nav items to display for the active product, either as a replacement for the default ones from `products` (if an array),
4335
+ * or in addition to them (if a function, which gets the default items as an argument and allows to modify them as needed).
4336
+ */
4337
+ navItems?: NavItem[] | ((items: NavItem[]) => NavItem[]);
4338
+ /**
4339
+ * Like `navItems` but specifically for the mobile nav. Unlike `navItems`, the default items include not only those of the
4340
+ * active product (including the `navItems` changes/overrides, if any), but also those of all other products. The top level
4341
+ * is basically the product switcher (plus Docs and Support), and the second level are the actual nav items.
4342
+ */
4343
+ mobileNavItems?: NavItem[] | ((items: NavItem[]) => NavItem[]);
4344
+ /**
4345
+ * Whether to show the locale switcher. Defaults to `false`.
4346
+ */
4347
+ showLocaleSwitcher?: boolean;
4348
+ /**
4349
+ * Whether to show the support button. Defaults to `false`.
4350
+ */
4351
+ showSupportButton?: boolean | {
4352
+ defaultEmail?: SupportModalProps['defaultEmail'];
4353
+ };
4354
+ /**
4355
+ * Allows customizing the left side of the header, either by completely replacing the default content (if the value is a
4356
+ * `ReactNode` or a responsive tuple of `ReactNode`s), or by prepending/appending stuff to it (if the value is a function,
4357
+ * which gets the default content as an argument and is expected to return a `ReactNode` or a responsive tuple of `ReactNode`s).
4358
+ * The returned content is rendered in a `Flex.Row` with `align="center"` and a default `gap`, so it can be a fragment.
4359
+ * Here are some examples:
4360
+ * - `leftContent={<GlobalHeader.BackButton />}`
4361
+ * - `leftContent={(defaultContent) => <><GlobalHeader.BackButton />{defaultContent}</>}`
4362
+ * - `leftContent={(defaultContent) => [defaultContent, null, <>{defaultContent}<Link wrap={false}><Icon.Search size="20px" title="Search (on desktop only)" /></Link></>]}`
4363
+ */
4364
+ leftContent?: OptionallyResponsiveContent | ((defaultContent: ReactNode) => OptionallyResponsiveContent);
4365
+ /**
4366
+ * Allows customizing the right side of the header, either by completely replacing the default content (which can include
4367
+ * the locale switcher and/or the support button, depending on the value of `showLocaleSwitcher` and `showSupportButton`),
4368
+ * or by prepending/appending stuff to it with a function, just like `leftContent`. Here are some examples:
4369
+ * - `rightContent={(defaultContent) => <>{defaultContent}<GlobalHeader.ConnectButton /></>}`
4370
+ * - `rightContent={(defaultContent) => [<><Link wrap={false}><Icon.Search size="20px" title="Search (on mobile only)" /></Link>{defaultContent}</>, null, defaultContent]}`
4371
+ */
4372
+ rightContent?: OptionallyResponsiveContent | ((defaultContent: ReactNode) => OptionallyResponsiveContent);
4373
+ }
4374
+ /**
4375
+ * The app's global header, which should be rendered in the `header` slot of the `Layout` component.
4376
+ *
4377
+ * Child components: `GlobalHeader.LocaleSwitcher`, `GlobalHeader.SupportButton`, `GlobalHeader.ConnectButton`.
4378
+ */
4379
+ export declare const GlobalHeader: {
4380
+ <T extends Products = {
4381
+ THE_GRAPH: {
4382
+ isDefault: true;
4383
+ name: string;
4384
+ description: string;
4385
+ href: string;
4386
+ navItems: ({
4387
+ label: string;
4388
+ href: string;
4389
+ subItems?: undefined;
4390
+ id?: undefined;
4391
+ active?: undefined;
4392
+ } | {
4393
+ label: string;
4394
+ subItems: {
4395
+ label: string;
4396
+ description: string;
4397
+ href: string;
4398
+ }[];
4399
+ href?: undefined;
4400
+ id?: undefined;
4401
+ active?: undefined;
4402
+ } | {
4403
+ id: string;
4404
+ label: string;
4405
+ href: string;
4406
+ active: RegExp;
4407
+ subItems?: undefined;
4408
+ })[];
4409
+ };
4410
+ EXPLORER: {
4411
+ name: string;
4412
+ description: string;
4413
+ href: string;
4414
+ navItems: ({
4415
+ label: string;
4416
+ href: string;
4417
+ active: RegExp;
4418
+ id?: undefined;
4419
+ } | {
4420
+ label: string;
4421
+ href: string;
4422
+ active?: undefined;
4423
+ id?: undefined;
4424
+ } | {
4425
+ id: string;
4426
+ label: string;
4427
+ href: string;
4428
+ active: RegExp;
4429
+ })[];
4430
+ };
4431
+ SUBGRAPH_STUDIO: {
4432
+ name: string;
4433
+ description: string;
4434
+ href: string;
4435
+ navItems: ({
4436
+ label: string;
4437
+ href: string;
4438
+ active: RegExp;
4439
+ id?: undefined;
4440
+ } | {
4441
+ label: string;
4442
+ href: string;
4443
+ active?: undefined;
4444
+ id?: undefined;
4445
+ } | {
4446
+ id: string;
4447
+ label: string;
4448
+ href: string;
4449
+ active: RegExp;
4450
+ })[];
4451
+ };
4452
+ }>({ products: passedProducts, activeProduct: passedActiveProductKey, activePath: passedActivePath, basePath: passedBasePath, baseUrl, navItems: customNavItems, mobileNavItems: customMobileNavItems, showLocaleSwitcher, showSupportButton, leftContent: customLeftContent, rightContent: customRightContent, className, ...props }: GlobalHeaderProps<T>): import("react").JSX.Element;
4453
+ displayName: string;
4454
+ } & {
4455
+ /**
4456
+ * Locale switcher part of the global header. Rendered automatically if `showLocaleSwitcher` is `true`, but can be used
4457
+ * in either `leftContent` or `rightContent` to customize the appearance, position, or behavior of the locale switcher.
4458
+ */
4459
+ LocaleSwitcher: import('react').ForwardRefExoticComponent<Omit<LocaleSwitcherProps, "children"> & import('react').RefAttributes<HTMLButtonElement>>;
4460
+ /**
4461
+ * Support button part of the global header. Rendered automatically if `showSupportButton` is `true` or an options object, but
4462
+ * can be used in either `leftContent` or `rightContent` to customize the appearance, position, or behavior of the support button.
4463
+ */
4464
+ SupportButton: import('react').ForwardRefExoticComponent<DistributiveOmit<LinkProps, "children"> & import('react').RefAttributes<ButtonOrLinkElement>>;
4465
+ /**
4466
+ * Connect button part of the global header. Should be added to `rightContent` in apps that support connecting a wallet.
4467
+ * Doesn't have any built-in functionality at the moment (i.e. a `onClick` handler must be provided).
4468
+ */
4469
+ ConnectButton: import('react').ForwardRefExoticComponent<DistributiveOmit<ButtonProps, "children"> & import('react').RefAttributes<ButtonOrLinkElement>>;
4470
+ /**
4471
+ * A simple back button component that can be rendered in `leftContent` for "full screen flows".
4472
+ * Doesn't have any built-in functionality at the moment (i.e. a `href` or `onClick` handler must be provided).
4473
+ */
4474
+ BackButton: import('react').ForwardRefExoticComponent<DistributiveOmit<LinkProps, "children"> & import('react').RefAttributes<ButtonOrLinkElement>>;
4475
+ };
4476
+ export {};
4477
+ //# sourceMappingURL=GlobalHeader.d.ts.map