-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsidebars.ts
More file actions
156 lines (154 loc) · 3.47 KB
/
sidebars.ts
File metadata and controls
156 lines (154 loc) · 3.47 KB
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
import type { SidebarsConfig } from "@docusaurus/plugin-content-docs";
const sidebars: SidebarsConfig = {
// By default, Docusaurus generates a sidebar from the docs folder structure
getStarted: [{ type: "autogenerated", dirName: "." }],
mySidebar: [
{
type: "category",
label: "Overview",
collapsible: false,
collapsed: false,
items: [
{
type: "doc",
id: "introduction",
label: "Introduction",
},
{
type: "doc",
id: "architecture",
label: "Protocol overview",
},
{
type: "doc",
id: "usecases",
label: "Usecases",
},
],
},
{
type: "category",
label: "Building on SOCKET",
collapsed: false,
items: [
{
type: "doc",
id: "getting-started",
label: "Getting started",
},
{
type: "doc",
id: "writing-apps",
label: "Build chain abstracted apps",
},
{
type: "doc",
id: "call-onchain-from-evmx",
label: "Call onchain from EVMx",
},
{
type: "doc",
id: "read-onchain-from-evmx",
label: "Read onchain from EVMx",
},
{
type: "doc",
id: "trigger-appgateway-onchain",
label: "Trigger AppGateway from onchain",
},
{
type: "link",
label: "Upload onchain contracts to EVMx",
href: "/forwarder-addresses#uploading-an-onchain-contract-to-use-on-an-appgateway-on-evmx",
},
{
type: "doc",
id: "schedule",
label: "Schedule EVMx execution",
},
{
type: "doc",
id: "write-tests",
label: "Write tests for an AppGateway",
},
{
type: "doc",
id: "deploy",
label: "Deploy contracts onchain",
},
{
type: "doc",
id: "fees",
label: "Pay for your onchain transactions",
},
{
type: "doc",
id: "evmx",
label: "EVMx Information",
},
],
},
{
type: "category",
label: "Concepts",
collapsed: false,
items: [
{
type: "doc",
id: "forwarder-addresses",
label: "Forwarder Addresses",
},
{
type: "doc",
id: "promises",
label: "Promises",
},
{
type: "doc",
id: "switchboards",
label: "Switchboards",
},
{
type: "doc",
id: "transmitters",
label: "Transmitters",
},
{
type: "doc",
id: "watchers",
label: "Watchers",
},
{
type: "doc",
id: "glossary",
label: "Glossary",
},
],
},
{
type: "category",
label: "Tools",
link: { type: 'doc', id: 'tools' },
collapsed: true,
items: [
{
type: "category",
label: "API Reference",
collapsed: true,
items: [
{
type: "autogenerated",
dirName: "api-reference",
},
],
},
],
},
{
type: "link",
label: "Brand Assets",
href: "https://www.figma.com/file/qwHGtazqA8qLGGj6TYpBu3/SOCKET-Brand-Assets",
},
],
};
export default sidebars;