-
Notifications
You must be signed in to change notification settings - Fork 23
/
vercel.json
181 lines (181 loc) · 4.76 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
{
"trailingSlash": false,
"redirects": [
{
"source": "/v/1.0/:path*",
"destination": "/:path*"
},
{
"source": "/v/2.0/:path*",
"destination": "/2.0/:path*"
},
{
"source": "/quick-start/dapps/client",
"destination": "/1.0/quick-start/dapps/client"
},
{
"source": "/quick-start/dapps/node",
"destination": "/1.0/quick-start/dapps/node"
},
{
"source": "/quick-start/dapps/react-native",
"destination": "/1.0/quick-start/dapps/react-native"
},
{
"source": "/quick-start/dapps/web3-provider",
"destination": "/1.0/quick-start/dapps/web3-provider"
},
{
"source": "/quick-start/dapps/web3modal",
"destination": "/1.0/quick-start/dapps/web3modal"
},
{
"source": "/quick-start/wallets/kotlin",
"destination": "/1.0/quick-start/wallets/kotlin"
},
{
"source": "/quick-start/wallets/swift",
"destination": "/1.0/quick-start/wallets/swift"
},
{
"source": "/quick-start/wallets/react-native",
"destination": "/1.0/quick-start/wallets/react-native"
},
{
"source": "/json-rpc-api-methods/ethereum",
"destination": "/1.0/json-rpc-api-methods/ethereum"
},
{
"source": "/smart-wallets",
"destination": "/1.0/smart-wallets"
},
{
"source": "/mobile-linking",
"destination": "/1.0/mobile-linking"
},
{
"source": "/legacy-clients",
"destination": "/1.0/legacy-clients"
},
{
"source": "/client-api",
"destination": "/1.0/client-api"
},
{
"source": "/bridge-server",
"destination": "/1.0/bridge-server"
},
{
"source": "/push-server",
"destination": "/1.0/push-server"
},
{
"source": "/2.0/introduction/examples-and-resources",
"destination": "/2.0/javascript/guides/examples-and-resources"
},
{
"source": "/2.0/introduction/web3modal/:path*",
"destination": "/2.0/web3modal/:path*"
},
{
"source": "/2.0/introduction/sign",
"destination": "/2.0/api/sign"
},
{
"source": "/2.0/introduction/auth",
"destination": "/2.0/api/auth"
},
{
"source": "/2.0/introduction/push",
"destination": "/2.0/api/push"
},
{
"source": "/2.0/introduction/chat",
"destination": "/2.0/api/chat"
},
{
"source": "/2.0/advanced/relay-server",
"destination": "/2.0/cloud/relay"
},
{
"source": "/2.0/specs/sign/:path*",
"destination": "/2.0/specs/clients/sign/:path*"
},
{
"source": "/2.0/specs/auth/:path*",
"destination": "/2.0/specs/clients/auth/:path*"
},
{
"source": "/2.0/specs/push/:path*",
"destination": "/2.0/specs/clients/push/:path*"
},
{
"source": "/2.0/specs/chat/:path*",
"destination": "/2.0/specs/clients/chat/:path*"
},
{
"source": "/2.0/specs/core/:path*",
"destination": "/2.0/specs/clients/core/:path*"
},
{
"source": "/2.0/web3modal/standalone:path*",
"destination": "/2.0/web3modal/about"
},
{
"source": "/2.0/web3modal/standalone/about",
"destination": "/2.0/web3modal/about"
},
{
"source": "/2.0/reactnative/introduction",
"destination": "/2.0/reactnative/overview"
},
{
"source": "/2.0/javascript/:path*",
"destination": "/2.0/web/:path*"
},
{
"source": "/2.0/kotlin/:path*",
"destination": "/2.0/android/:path*"
},
{
"source": "/2.0/swift/:path*",
"destination": "/2.0/ios/:path*"
},
{
"source": "/2.0/csharp/:path*",
"destination": "/2.0/unity/:path*"
},
{
"source": "/2.0/specs/servers/echo",
"destination": "/2.0/specs/servers/echo/spec"
},
{
"source": "/2.0/specs/servers/cast",
"destination": "/2.0/specs/servers/cast/cast-server-api"
},
{
"source": "/2.0/advanced/migration-from-v1.x",
"destination": "/2.0/advanced/migration-from-v1.x/overview"
},
{
"source": "2.0/web/web3modal/react/sign-api/installation",
"destination": "/2.0/web/walletConnectModal/sign/react/installation"
},
{
"source": "2.0/web/web3modal/html/sign-api/installation",
"destination": "/2.0/web/walletConnectModal/sign/html/installation"
},
{
"source": "2.0/web/web3modal/react/auth-api/installation",
"destination": "/2.0/web/walletConnectModal/auth/react/installation"
},
{
"source": "2.0/web/web3modal/html/auth-api/installation",
"destination": "/2.0/web/walletConnectModal/auth/html/installation"
},
{
"source": "/2.0/blockchain-rpc/:path*",
"destination": "https://docs.walletconnect.com/advanced/multichain/rpc-reference/:path*"
}
]
}