-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathvocs.config.tsx
More file actions
123 lines (122 loc) · 2.7 KB
/
vocs.config.tsx
File metadata and controls
123 lines (122 loc) · 2.7 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
import React from "react";
import { defineConfig } from "vocs";
export default defineConfig({
titleTemplate: "%s - Tokenbound Documentation",
head: (
<>
<meta property="og:type" content="website" />
<meta property="og:url" content="https://docs.tokenbound.org" />
<meta property="og:title" content="Tokenbound Documentation" />
<meta
property="og:description"
content="Open-source tooling for ERC-6551 Token Bound Accounts"
/>
</>
),
iconUrl: "/favicon.ico",
logoUrl: {
dark: "/tokenbound-light.svg",
light: "/tokenbound-dark.svg",
},
editLink: {
pattern: "https://github.com/tokenbound/docs/edit/main/docs/pages/:path",
text: "Edit on GitHub",
},
topNav: [
{ text: "ERC-6551", link: "https://eips.ethereum.org/EIPS/eip-6551" },
{ text: "Showcase", link: "/showcase", match: "/showcase" },
],
socials: [
{
icon: "github",
link: "https://github.com/tokenbound",
},
{
icon: "x",
link: "https://twitter.com/tokenbound_",
},
{
icon: "telegram",
link: "https://t.me/tokenbound",
},
],
sidebar: [
{
text: "Getting started",
items: [
{
text: "What is Tokenbound?",
link: "/intro",
},
{
text: "FAQ",
link: "/faq",
},
{
text: "Glossary",
link: "/glossary",
},
],
},
{
text: "Typescript SDK",
items: [
{
text: "Installation",
link: "/sdk/installation",
},
{
text: "SDK Reference",
link: "/sdk/methods",
},
{
text: "Migrating to v0.3.1",
link: "/sdk/migrating-to-v3",
},
],
},
{
text: "Smart Contracts",
items: [
{
text: "Deployed Addresses",
link: "/contracts/deployments",
},
],
},
{
text: "iFrame",
items: [
{
text: "Installation",
link: "/iframe",
},
],
},
{
text: "Guides",
items: [
{
text: "Deploy the ERC-6551 Registry",
link: "/guides/deploy-registry",
},
{
text: "Query TBA address for an NFT",
link: "/guides/read-a-tba",
},
{
text: "Connect to dapps as your TBA",
link: "/guides/connect-with-nft",
},
{
text: "Execute TBA transactions using SDK",
link: "/guides/interact-with-tba",
},
{
text: "Deploy a custom account implementation",
link: "/guides/deploy-account-implementation",
},
],
},
],
});