forked from Uniswap/docs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
V1sidebars.js
75 lines (66 loc) · 1.79 KB
/
V1sidebars.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
module.exports = {
docs: [
{
type: 'category',
label: 'Frontend Integration',
items: [
'concepts/01-frontend-integration/01-connect-to-uniswap',
'concepts/01-frontend-integration/02-pool-liquidity',
'concepts/01-frontend-integration/03-trade-tokens',
'concepts/01-frontend-integration/04-custom-linking',
'concepts/01-frontend-integration/05-iframe-integration',
'concepts/01-frontend-integration/06-token-listing',
],
},
{
type: 'category',
label: 'Guides',
items: [
'guides/02-SDK/01-getting-started',
'guides/02-SDK/02-data',
'guides/02-SDK/03-computation',
'guides/02-SDK/04-format',
'guides/02-SDK/05-orchestration',
'guides/02-SDK/06-transact',
'guides/02-SDK/07-constants',
'guides/02-SDK/08-types',
]
},
{
type: 'category',
label: 'Reference',
items: [
'reference/03-smart-contracts/01-factory',
'reference/03-smart-contracts/02-exchange',
'reference/03-smart-contracts/03-interfaces',
]
}
],
guides: [
{
type: 'category',
label: 'SDK',
items: [
'guides/02-SDK/01-getting-started',
'guides/02-SDK/02-data',
'guides/02-SDK/03-computation',
'guides/02-SDK/04-format',
'guides/02-SDK/05-orchestration',
'guides/02-SDK/06-transact',
'guides/02-SDK/07-constants',
'guides/02-SDK/08-types',
],
},
],
reference: [
{
type: 'category',
label: 'Smart Contracts',
items: [
'reference/03-smart-contracts/01-factory',
'reference/03-smart-contracts/02-exchange',
'reference/03-smart-contracts/03-interfaces',
],
},
],
};