-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathprotocol-sidebars.js
More file actions
70 lines (66 loc) · 2.22 KB
/
Copy pathprotocol-sidebars.js
File metadata and controls
70 lines (66 loc) · 2.22 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
module.exports = {
defaultSidebar: [
// 0. The ZKP2P Protocol (root)
{ type: 'doc', id: 'zkp2p-protocol', label: 'The ZKP2P Protocol' },
// 1. Protocol V3
{
type: 'category',
label: 'Protocol V3',
collapsible: true,
collapsed: false,
items: [
{ type: 'doc', id: 'v3/v3-overview', label: 'Overview' },
{
type: 'category',
label: 'Smart Contracts',
link: { type: 'doc', id: 'v3/v3-smart-contracts' },
items: [
'v3/smart-contracts/escrow/index',
'v3/smart-contracts/orchestrator',
'v3/smart-contracts/pre-intent-hooks',
{ type: 'doc', id: 'v3/smart-contracts/post-intent-hooks', label: 'Post-Intent Hooks' },
'v3/smart-contracts/unified-payment-verifier',
],
},
{ type: 'doc', id: 'v3/v3-attestation-service', label: 'Attestation Service' },
{ type: 'doc', id: 'v3/v3-buyer-tee-verification', label: 'Buyer TEE Verification' },
{ type: 'doc', id: 'v3/v3-seller-autopilot', label: 'Seller Autopilot' },
{ type: 'doc', id: 'v3/v3-deployments', label: 'Deployments' },
{ type: 'doc', id: 'v3/v3-migration', label: 'Migration (V2 → V3)' },
],
},
// 2. PeerAuth Extension (root)
{
type: 'category',
label: 'PeerAuth Extension',
link: { type: 'doc', id: 'peerauth-extension/index' },
items: ['peerauth-extension/zk-tls'],
},
// 3. Gating Service (root)
{ type: 'doc', id: 'gating-service', label: 'Gating Service' },
// 4. Protocol V2
{
type: 'category',
label: 'Protocol V2',
collapsible: true,
collapsed: true,
items: [
{
type: 'category',
label: 'Smart Contracts',
link: { type: 'doc', id: 'v2/smart-contracts/index' },
items: [
{
type: 'category',
label: 'Escrow',
link: { type: 'doc', id: 'v2/smart-contracts/escrow/index' },
items: ['v2/smart-contracts/escrow/v2-iescrow'],
},
'v2/smart-contracts/v2-ipaymentverifier',
'v2/smart-contracts/v2-deployments',
],
},
],
},
],
};