-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathvercel.json
157 lines (157 loc) · 5.53 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
{
"github": {
"silent": true
},
"trailingSlash": false,
"cleanUrls": true,
"redirects": [
{
"source": "/docs/testnet/grpc/:path*",
"destination": "/testnet/api/grpc/:path*"
},
{
"source": "/docs/:path*",
"destination": "/:path*"
},
{
"source": "/testnet/api/vega-wallet/reference/core/openrpc",
"destination": "/testnet/api/vega-wallet/reference/core/json-rpc"
},
{
"source": "/testnet/concepts/vega-protocol",
"destination": "/testnet/concepts/governance"
},
{
"source": "/mainnet/api/rest/core/core-service-last-block-height",
"destination": "/mainnet/api/rest/transaction/transaction-last-block-height"
},
{
"source": "/mainnet/api/rest/core/core-service-statistics",
"destination": "/mainnet/api/rest/transaction/transaction-statistics"
},
{
"source": "/mainnet/api/rest/core/core-service-get-spam-statistics",
"destination": "/mainnet/api/rest/transaction/transaction-get-spam-statistics"
},
{
"source": "/mainnet/api/rest/core/core-service-last-block-height",
"destination": "/mainnet/api/rest/transaction/transaction-observe-event-bus"
},
{
"source": "/mainnet/api/rest/core/core-service-get-vega-time",
"destination": "/mainnet/api/rest/transaction/transaction-get-vega-time"
},
{
"source": "/mainnet/api/rest/core/core-service-submit-transaction",
"destination": "/mainnet/api/rest/transaction/transaction-submit-transaction"
},
{
"source": "/mainnet/api/rest/core/core-service-check-transaction",
"destination": "/mainnet/api/rest/transaction/transaction-check-transaction"
},
{
"source": "/mainnet/api/rest/core/core-service-submit-raw-transaction",
"destination": "/mainnet/api/rest/transaction/transaction-submit-raw-transaction"
},
{
"source": "/mainnet/api/rest/core/core-service-check-raw-transaction",
"destination": "/mainnet/api/rest/transaction/transaction-check-raw-transaction"
},
{
"source": "/mainnet/category/api/rest/core/core-service",
"destination": "/mainnet/category/api/rest/transaction/transaction"
},
{
"source": "/testnet/api/rest/core/core-service-last-block-height",
"destination": "/testnet/api/rest/transaction/transaction-last-block-height"
},
{
"source": "/testnet/api/rest/core/core-service-statistics",
"destination": "/testnet/api/rest/transaction/transaction-statistics"
},
{
"source": "/testnet/api/rest/core/core-service-get-spam-statistics",
"destination": "/testnet/api/rest/transaction/transaction-get-spam-statistics"
},
{
"source": "/testnet/api/rest/core/core-service-last-block-height",
"destination": "/testnet/api/rest/transaction/transaction-observe-event-bus"
},
{
"source": "/testnet/api/rest/core/core-service-get-vega-time",
"destination": "/testnet/api/rest/transaction/transaction-get-vega-time"
},
{
"source": "/testnet/api/rest/core/core-service-submit-transaction",
"destination": "/testnet/api/rest/transaction/transaction-submit-transaction"
},
{
"source": "/testnet/api/rest/core/core-service-check-transaction",
"destination": "/testnet/api/rest/transaction/transaction-check-transaction"
},
{
"source": "/testnet/api/rest/core/core-service-submit-raw-transaction",
"destination": "/testnet/api/rest/transaction/transaction-submit-raw-transaction"
},
{
"source": "/testnet/api/rest/core/core-service-check-raw-transaction",
"destination": "/testnet/api/rest/transaction/transaction-check-raw-transaction"
},
{
"source": "/testnet/category/api/rest/core/core-service",
"destination": "/testnet/category/api/rest/transaction/transaction"
},
{
"source": "/mainnet/concepts/vega-protocol",
"destination": "/mainnet/concepts/governance"
},
{
"source": "/mainnet/concepts/trading-on-vega/fees-rewards",
"destination": "/mainnet/concepts/trading-framework/discounts-rewards"
},
{
"source": "/testnet/concepts/trading-on-vega/fees-rewards",
"destination": "/mainnet/concepts/trading-framework/discounts-rewards"
},
{
"source": "/mainnet/node-operators/get-started/setup-server",
"destination": "/mainnet/node-operators/get-started/setup-validator"
},
{
"source": "/testnet/node-operators/get-started/setup-server",
"destination": "/testnet/node-operators/get-started/setup-validator"
},
{
"source": "/mainnet/tools/vega-wallet/cli-wallet/latest/:path*",
"destination": "/testnet/tools/vega-wallet/cli-wallet/:path*"
},
{
"source": "/testnet/tools/vega-wallet/cli-wallet/latest/:path*",
"destination": "/testnet/tools/vega-wallet/cli-wallet/:path*"
},
{
"source": "/mainnet/tools/vega-wallet/desktop-app/latest/:path*",
"destination": "/testnet/tools/vega-wallet/cli-wallet/:path*"
},
{
"source": "/testnet/concepts/trading-on-vega/positions-margin",
"destination": "/testnet/concepts/trading-framework/margin"
},
{
"source": "/mainnet/api/building-blocks",
"destination": "/mainnet/api/useful-endpoints"
},
{
"source": "/testnet/api/building-blocks",
"destination": "/testnet/api/useful-endpoints"
},
{
"source": "/testnet/:path*",
"destination": "/pre-release/:path*"
},
{
"source": "/mainnet/:path*",
"destination": "/release/:path*"
}
]
}