forked from lukasrosario/erc-7677-site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvocs.config.tsx
130 lines (129 loc) · 2.99 KB
/
vocs.config.tsx
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
import { defineConfig } from 'vocs'
export default defineConfig({
title: 'ERC-7677',
titleTemplate: '%s · ERC-7677',
description: 'Standards for unlocking sponsored transactions',
ogImageUrl: 'https://vocs.dev/api/og?title=%title&description=%description',
head() {
return (
<>
<script
dangerouslySetInnerHTML={{ __html: 'window.va = window.va || function () { (window.vaq = window.vaq || []).push(arguments); };'}}
/>
<script defer src="/_vercel/insights/script.js" />
</>
)
},
theme: {
accentColor: {
light: '#73F7FF',
dark: '#73F7FF',
},
variables: {
color: {
background: {
light: 'white',
dark: '#151A26',
},
backgroundDark: {
light: '#F5F5F5',
dark: '#0F131E',
},
textAccent: {
light: '#050F19',
dark: 'white',
},
},
},
},
topNav: [
{ text: 'ERC', link: 'https://github.com/ethereum/ERCs/pull/360' },
],
sidebar: [
{
text: 'Introduction',
link: '/introduction',
},
{
text: 'Getting Started',
link: '/getting-started',
},
{
text: 'Guides',
collapsed: false,
items: [
{
text: "Sponsoring your users' transactions",
link: '/guides/sponsoring-transactions',
},
{
text: 'Constructing a user operation with ERC-7677',
link: '/guides/construct-user-op-with-7677',
}
]
},
{
text: 'Reference',
collapsed: false,
items: [
{
text: 'Paymaster Services',
items: [
{
text: 'pm_getPaymasterStubData',
link: '/reference/paymasters/getPaymasterStubData'
},
{
text: 'pm_getPaymasterData',
link: '/reference/paymasters/getPaymasterData'
}
]
},
{
text: 'Wallets',
items: [
{
text: 'wallet_getCapabilities Behavior',
link: '/reference/wallets/getCapabilities'
},
{
text: 'wallet_sendCalls Behavior',
link: '/reference/wallets/sendCalls'
}
]
},
{
text: 'Apps',
items: [
{
text: 'wallet_sendCalls Usage',
link: '/reference/apps/sendCalls'
},
{
text: 'wallet_getCapabilities Usage',
link: '/reference/apps/getCapabilities'
},
]
},
],
},
{
text: 'Ecosystem',
collapsed: false,
items: [
{
text: 'Paymaster Service Providers',
link: '/ecosystem/paymasters',
},
{
text: 'Wallets',
link: '/ecosystem/wallets',
},
{
text: 'Tools',
link: '/ecosystem/tools',
},
],
},
],
})