-
Notifications
You must be signed in to change notification settings - Fork 8
/
sidebarsHyperIndex.js
127 lines (127 loc) · 3.2 KB
/
sidebarsHyperIndex.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
module.exports = {
someSidebar: [
"overview",
"getting-started",
"contract-import",
"migration-guide-v1-v2",
"supported-networks",
{
type: "category",
label: "Guides",
items: [
"Guides/hyperindex-basics",
"Guides/configuration-file",
"Guides/schema-file",
"Guides/event-handlers",
// "Guides/subgraph-migration",
"Guides/testing",
"Guides/running-locally",
"Guides/navigating-hasura",
"Guides/ipfs",
"Guides/cli-commands",
"Guides/contract-state"
],
},
{
type: "category",
label: "Tutorials",
items: [
"Tutorials/tutorial-op-bridge-deposits",
"Tutorials/tutorial-erc20-token-transfers",
"Tutorials/tutorial-indexing-fuel",
"Tutorials/greeter-tutorial",
],
},
{
type: "category",
label: "Hosted Service",
items: [
"Hosted_Service/hosted-service",
"Hosted_Service/hosted-service-deployment",
"Hosted_Service/hosted-service-billing",
],
},
{
type: "category",
label: "Advanced",
items: [
"Advanced/loaders",
"Advanced/dynamic-contracts",
"Advanced/wildcard-indexing",
"Advanced/multichain-indexing",
"Advanced/hypersync",
"Advanced/rpc-sync",
"Advanced/reorgs-support",
"Advanced/persisted-files",
"Advanced/generated-files",
"Advanced/terminology",
{
type: "category",
label: "Performance",
link: {
type: "doc",
id: "Advanced/performance/index",
},
items: [
"Advanced/performance/database-performance-optimization",
"Advanced/performance/historical-sync",
"Advanced/performance/latency-at-head",
"Advanced/performance/benchmarking",
],
},
],
},
/*
/// TODO: add back once we have some v2 examples.
{
type: "category",
label: "Examples",
items: [
"Examples/example-sablier-v2",
"Examples/example-liquidation-metrics",
"Examples/example-uniswap-v3",
"Examples/example-ens",
// "Examples/example-aave-token",
// "Examples/example-reNFT",
// "Examples/example-token-vaults",
],
}, */
{
type: "category",
label: "Troubleshoot",
items: [
"Troubleshoot/logging",
"Troubleshoot/common-issues",
"Troubleshoot/error-codes",
"Troubleshoot/reserved-words",
],
},
"licensing",
"fuel/fuel",
"terms-of-service",
"privacy-policy",
// {
// type: "category",
// label: "Education",
// items: [
// "what-is-indexer",
// "system-architecture",
// "indexing-process",
// "litepaper",
// ],
// },
// "working-with-foundry",
// "integrating-existing-contract",
// "migrating-from-the-graph",
// {
// type: "category",
// label: "Advanced",
// items: [
// "runtime",
// "using-as-backend",
// "using-testing-framework",
// "dashboard-alerts",
// ],
// },
],
};