-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathconfig-bit.js
62 lines (60 loc) · 2.11 KB
/
config-bit.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
(function() {
let explorerConfig = {
theme: 'white',
tokenName: 'BIT',
tokenHash: '0000000000000000000000000000000000000000000000000000000000000001',
favicon: 'assets/images/favicon_en_bit.ico',
tokenLogoFileLink: 'bit-logo-white.png',
logoLinkTarget: 'https://mybit.network/',
showExchangesSection: false,
menuItemsVisibility: {
showWallet: true,
walletLink: 'https://bit-wallet.enecuum.com',
showROICalc: true,
showHowToSwap: false
},
externalLinks: {
topMenuItemsLinks: {
walletLink: 'https://bit-wallet.enecuum.com'
},
peerMapURL: 'https://bit.enecuum.com/',
documents: {
whitepaper: 'https://enecuum.com/pdf/pp_en.pdf',
},
projectMedia: {
twitter: 'https://twitter.com/enq_enecuum',
telegram: 'https://t.me/Enecuum_EN',
github: 'https://github.com/Enecuum'
}
},
pagesSectionsVisibility: {
showFullNodesCountCard: true,
showSBlocks: true,
showROICalc: true,
showExchangesSection: false,
showCurrencyToUSDAccountDetails: false,
showTestNetDisclaimer: true,
showDropFarms: true,
showEnexPools: true
},
POSChallenge: {
on: false,
address: '03c91e88967465c44aa2afeab3b87dbeede9bd63dbe4a0121ea02fa3f0f4a4e2a8'
},
themeOptions: { //this is options' storage. themeOptions' properties must be use as 'theme' value ('dark','white', etc.)
dark: {
cssName: 'dark-theme.css',
cssLink: 'assets/css/'
},
white: {
cssName: 'white-theme.css',
cssLink: 'assets/css/'
},
white_blue: {
cssName: 'white-blue-theme.css',
cssLink: 'assets/css/'
}
}
}
window.explorerConfig = explorerConfig;
})();