-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathconfig.js
36 lines (36 loc) · 1.06 KB
/
config.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
const config = {
'copyright': 'powered by walt.id',
'logo': {
path: '/favicon.png',
alt: 'walt.id logo'
},
'whiteLogo': {
path: 'https://i.ibb.co/Vm3CN36/favicon-white.png',
alt: 'walt.id logo'
},
hidePage: {
credentials: false,
nfts: false,
settings: false,
connections: false
},
home: "/Credentials",
evmDefaultChain: "MUMBAI",
tezosdefaultChain: "TEZOS",
neardefaultChain: "testnet",
polkadotdefaultChain: "Unique",
flowdefaultChain: "Mainnet",
evmChains: ["ETHEREUM", "POLYGON", "MUMBAI"],
tezosChains: ["TEZOS", "GHOSTNET"],
nearChains: ["mainnet" , "testnet"],
polkadotChains: ["Unique", "Opal"],
flowChains: ["Mainnet", "Testnet"],
marketplaces: {
"POLYGON": "https://opensea.io/assets/matic/",
"ETHEREUM": "https://opensea.io/assets/ethereum/",
"TEZOS": "https://rarible.com/token/tezos/",
"Unique": "https://unqnft.io/market",
"Flow": "https://nft.flowverse.co/marketplace"
}
}
export{config}