-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMasterlist.js
114 lines (107 loc) · 3.01 KB
/
Masterlist.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
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
export default Masterlist = [
{name: 'bitcoin'},
{name: 'ethereum'},
{name: 'dash'},
{name: 'ripple'},
{name: 'litecoin'},
];
export const Mapping = {
BTC: 'bitcoin',
ETH: 'ethereum',
DASH: 'dash',
XRP: 'ripple',
LTC: 'litecoin',
};
export const coinTitles = [
"Bitcoin",
"Ethereum",
"Dash",
"Ripple",
"Litecoin",
];
export const nameToIconMap = {
bitcoin: require('./assets/icons/BTC.png'),
ethereum: require('./assets/icons/ETH.png'),
dash: require('./assets/icons/DASH.png'),
ripple: require('./assets/icons/XRP.png'),
litecoin: require('./assets/icons/LTC.png'),
}
export const allBadges = [
"have1friend",
"have5friends",
"have10friends",
"have50friends",
"spent10000atOnce",
"spent100000atOnce",
"earned10000atOnce",
"earned100000atOnce",
"own5coins",
"have10transactions",
"have50transactions",
"have100transactions"
];
export const allBadgesInfo = [{
name: "have1friend",
title: "Friendly Badge",
infoObtained: "Have 1 friend",
infoUnobtained: "Add 1 friend to achieve this badge"
}, {
name: "have5friends",
title: "Sociable Badge",
infoObtained: "Have 5 friends",
infoUnobtained: "Have 5 friends to achieve this badge"
}, {
name: "have10friends",
title: "Popular Badge",
infoObtained: "Have 10 friends",
infoUnobtained: "Have 10 friends to achieve this badge"
}, {
name: "have50friends",
title: "Influencer Badge",
infoObtained: "Have 50 friends",
infoUnobtained: "Have 50 friends to achieve this badge"
}, {
name: "spent10000atOnce",
title: "Spendthrift Badge",
infoObtained: "Spent $10000 at once",
infoUnobtained: "Spend $10000 at once to achieve this badge"
}, {
name: "spent100000atOnce",
title: "Extravagant Badge",
infoObtained: "Spent $100000 at once",
infoUnobtained: "Spend $100000 at once to achieve this badge"
}, {
name: "earned10000atOnce",
title: "Seller Badge",
infoObtained: "Earned $10000 at once",
infoUnobtained: "Sell $10000 worth of cryptocurrency at once to achieve this badge"
}, {
name: "earned100000atOnce",
title: "Profiteer Badge",
infoObtained: "Earned $100000 at once",
infoUnobtained: "Sell $100000 worth of cryptocurrency to achieve this badge"
}, {
name: "own5coins",
title: "Coin Collecter Badge",
infoObtained: "Own 5 Coins",
infoUnobtained: "Own 5 different cryptocurrencies to achieve this badge"
}, {
name: "have10transactions",
title: "Trader Badge",
infoObtained: "Made 10 transactions",
infoUnobtained: "Buy or sell cryptocurrency 10 times achieve this badge"
}, {
name: "have50transactions",
title: "Dealer Badge",
infoObtained: "Made 50 transactions",
infoUnobtained: "Buy or sell cryptocurrency 50 times achieve this badge"
}, {
name: "have100transactions",
title: "Businessman Badge",
infoObtained: "Made 100 transactions",
infoUnobtained: "Buy or sell cryptocurrency 100 times achieve this badge"
}];
export const background = '#373b48';
export const rowBackground = '#515360';
export const textHeader = '#dbdbdb';
export const textSubheader = '#a4a9b9';