-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.config.ts
executable file
·51 lines (49 loc) · 1.21 KB
/
app.config.ts
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
export const routes = []
const appConfig = {
name: 'CryptoRastas',
meta: {
description: 'One love inna decentralized style!'
},
siteURL: 'https://cryptorastas.com',
bridgeURL: 'https://bridge.cryptorastas.com',
routes,
collection: {
defaultThumbnail:
'https://ipfs.io/ipfs/Qmd4qtubXuZY8F8iwwBxdTsySZ4Z58eMnuHP1ecuifHcPZ'
},
social: {
media: {
github: {
url: 'https://github.com/CryptoRastas',
label: 'Github',
visibility: true,
icon: '/assets/icons/social/github.svg'
},
x: {
url: 'https://twitter.com/CryptoRastas',
label: 'X',
visibility: true,
icon: '/assets/icons/social/x.svg'
},
discord: {
url: 'https://discord.com/invite/YKf5xnscF9',
label: 'Discord',
visibility: true,
icon: '/assets/icons/social/discord.svg'
},
instagram: {
url: 'https://www.instagram.com/cryptorastas/',
label: 'Instagram',
visibility: true,
icon: '/assets/icons/social/instagram.svg'
}
}
},
networks: {
defaultChainId: process.env.NEXT_PUBLIC_NETWORK_DEFAULT_ID!
},
bridge: {
transferNFTLimit: 3
}
}
export default appConfig