-
Notifications
You must be signed in to change notification settings - Fork 7
/
vercel.json
184 lines (184 loc) · 5.81 KB
/
vercel.json
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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
{
"redirects": [
{
"source": "/introduction/what-is-axiom",
"destination": "/docs/introduction/why-axiom",
"permanent": false
},
{
"source": "/introduction/quickstart",
"destination": "/docs/introduction/quickstart",
"permanent": false
},
{
"source": "/protocol-design/:path*",
"destination": "/protocol/protocol-design/:path*",
"permanent": false
},
{
"source": "/zero-knowledge-proofs/:path*",
"destination": "/protocol/zero-knowledge-proofs/:path*",
"permanent": false
},
{
"source": "/transparency-and-security/:path*",
"destination": "/docs/transparency-and-security/:path*",
"permanent": false
},
{
"source": "/getting-started",
"destination": "/docs/introduction/quickstart",
"permanent": false
},
{
"source": "/getting-started/setup",
"destination": "/docs/tutorial/setting-up",
"permanent": false
},
{
"source": "/getting-started/writing-a-client-circuit",
"destination": "/docs/tutorial/client-circuit",
"permanent": false
},
{
"source": "/getting-started/smart-contract-integration",
"destination": "/docs/axiom-developer-flow/smart-contract-integration",
"permanent": false
},
{
"source": "/transparency-and-security/contract-addresses",
"destination": "/docs/developer-resources/contract-addresses",
"permanent": false
},
{
"source": "/examples/axiom-cookbook",
"destination": "/docs/developer-resources/axiom-cookbook",
"permanent": false
},
{
"source": "/developers/developer-resources/finding-storage-slots",
"destination": "/docs/developer-resources/on-chain-data/finding-storage-slots",
"permanent": false
},
{
"source": "/protocol-design/ethereum-on-chain-data",
"destination": "/docs/developer-resources/on-chain-data/ethereum-on-chain-data",
"permanent": false
},
{
"source": "/developers/developer-resources/transaction-receipts-and-logs",
"destination": "/docs/developer-resources/on-chain-data/transaction-receipts-and-logs",
"permanent": false
},
{
"source": "/examples/autonomous-airdrop/",
"destination": "/docs/tutorial/setting-up",
"permanent": false
},
{
"source": "/examples/autonomous-airdrop/client-circuit",
"destination": "/docs/tutorial/client-circuit",
"permanent": false
},
{
"source": "/examples/autonomous-airdrop/client-contract",
"destination": "/docs/tutorial/client-contract",
"permanent": false
},
{
"source": "/examples/autonomous-airdrop/web-app",
"destination": "/docs/tutorial/web-app",
"permanent": false
},
{
"source": "/getting-started/smart-contract-integration/foundry-tests",
"destination": "/docs/axiom-developer-flow/foundry-tests",
"permanent": false
},
{
"source": "/getting-started/smart-contract-integration/sending-queries-on-chain",
"destination": "/docs/axiom-developer-flow/deployment/",
"permanent": false
},
{
"source": "/developers/axiom-for-developers",
"destination": "/docs/axiom-developer-flow/app-architecture",
"permanent": false
},
{
"source": "/developers/handling-axiom-callbacks",
"destination": "/docs/axiom-developer-flow/smart-contract-integration",
"permanent": false
},
{
"source": "/developers/axiom-client-sdk",
"destination": "/sdk/smart-contract-sdk/axiom-sc-client",
"permanent": false
},
{
"source": "/developers/axiom-client-sdk/axiomcircuit",
"destination": "/sdk/typescript-sdk/axiom-circuit/",
"permanent": false
},
{
"source": "/developers/axiom-client-sdk/client-circuit-reference",
"destination": "/sdk/typescript-sdk/axiom-circuit/",
"permanent": false
},
{
"source": "/developers/axiom-client-sdk/client-circuit-reference/circuit-types",
"destination": "/sdk/typescript-sdk/axiom-circuit/circuit-types",
"permanent": false
},
{
"source": "/developers/axiom-client-sdk/client-circuit-reference/utility-functions",
"destination": "/sdk/typescript-sdk/axiom-circuit/system-functions",
"permanent": false
},
{
"source": "/developers/axiom-client-sdk/client-circuit-reference/basic-functions",
"destination": "/sdk/typescript-sdk/axiom-circuit/zk-primitives",
"permanent": false
},
{
"source": "/developers/axiom-client-sdk/client-circuit-reference/axiom-functions",
"destination": "/sdk/typescript-sdk/axiom-circuit/axiom-subqueries/",
"permanent": false
},
{
"source": "/developers/axiom-client-sdk/axiom-subqueries",
"destination": "/sdk/typescript-sdk/axiom-circuit/axiom-subqueries/",
"permanent": false
},
{
"source": "/developers/axiom-client-sdk/axiom-subqueries/:path*",
"destination": "/sdk/typescript-sdk/axiom-circuit/axiom-subqueries/:path*",
"permanent": false
},
{
"source": "/developers/axiom-cli",
"destination": "/sdk/typescript-sdk/axiom-cli",
"permanent": false
},
{
"source": "/developers/axiom-react-client",
"destination": "/sdk/react-sdk/axiom-react",
"permanent": false
},
{
"source": "/developers/axiomrepl",
"destination": "/docs/developer-resources/axiomrepl",
"permanent": false
},
{
"source": "/developers/common-issues/callback-debugging",
"destination": "/docs/developer-resources/debugging-resources/callback-debugging",
"permanent": false
},
{
"source": "/developers/common-issues",
"destination": "/docs/developer-resources/debugging-resources/common-issues",
"permanent": false
}
]
}