forked from venom-blockchain/venom-blockchain.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
redirects.js
40 lines (40 loc) · 1.11 KB
/
redirects.js
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
module.exports = {
redirects: [
{
to: '/build/development-guides/how-to-create-your-own-fungible-tip-3-token/fungible-tokens-in-venom-network',
from: '/build/development-guides/how-to-create-your-own-fungible-tip-3-token'
},
{
to: '/build/development-guides/developing-of-simple-voting-system/voting-system-basics',
from: '/build/development-guides/developing-of-simple-voting-system'
},
{
to: '/build/development-guides/how-to-create-your-own-non-fungible-tip-4-token/non-fungible-tokens-in-venom-network',
from: '/build/development-guides/how-to-create-your-own-non-fungible-tip-4-token'
},
{
to: '/faq/integration',
from: '/build/integration-guides'
},
{
to: '/general/readme',
from: '/general'
},
{
to: '/learn/glossary',
from: '/learn'
},
{
to: '/maintain/network-maintainers',
from: '/maintain'
},
{
from: '/general/create-a-new-wallet-account',
to: '/general/wallet/create-a-new-wallet-account'
},
{
from: '/standards',
to: '/standards/VEP/'
}
]
}