-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchallenges.js
225 lines (223 loc) · 9.43 KB
/
challenges.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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
const getAllChallenges = () => {
return [
{
id: 'SWAP-GLQ-FOR-ANOTHER-TOKEN-1-10K',
label: 'Swap GLQ for another token 1-10K Volume',
reward: 1,
progression: (account) => {
if (account?.swaps !== undefined && account?.swaps['WETH/WGLQ'] >= 1) {
return 100;
}
return 0;
},
status: (account) => {
if (account?.swaps !== undefined && account?.swaps['WETH/WGLQ'] >= 1) {
return 'COMPLETED';
}
return 'IN_PROGRESS';
}, // IN_PROGRESS, CLAIMABLE, COMPLETED
available: true
},
{
id: 'SWAP-GLQ-FOR-ANOTHER-TOKEN-10K-50K',
label: 'Swap GLQ for another token 10-50K Volume',
reward: 5,
progression: (account) => {
if (account?.swaps !== undefined && account?.swaps['WETH/WGLQ'] >= 1) {
return Math.min(account?.swaps['WETH/WGLQ'] * 100 / 10000, 100);
}
return 0;
},
status: (account) => {
if (account?.swaps !== undefined && account?.swaps['WETH/WGLQ'] >= 10000) {
return 'COMPLETED';
}
return 'IN_PROGRESS';
},
available: true
},
{
id: 'SWAP-GLQ-FOR-ANOTHER-TOKEN-50K-100K',
label: 'Swap GLQ for another token 50-100K Volume',
reward: 10,
progression: (account) => {
if (account?.swaps !== undefined && account?.swaps['WETH/WGLQ'] >= 1) {
return Math.min(account?.swaps['WETH/WGLQ'] * 100 / 50000, 100);
}
return 0;
},
status: (account) => {
if (account?.swaps !== undefined && account?.swaps['WETH/WGLQ'] >= 50000) {
return 'COMPLETED';
}
return 'IN_PROGRESS';
},
available: true
},
{
id: 'SWAP-GLQ-FOR-ANOTHER-TOKEN-100K+',
label: 'Swap GLQ for another token 100K+ Volume',
reward: 15,
progression: (account) => {
if (account?.swaps !== undefined && account?.swaps['WETH/WGLQ'] >= 1) {
return Math.min(account?.swaps['WETH/WGLQ'] * 100 / 100000, 100);
}
return 0;
},
status: (account) => {
if (account?.swaps !== undefined && account?.swaps['WETH/WGLQ'] >= 100000) {
return 'COMPLETED';
}
return 'IN_PROGRESS';
},
available: true
},
{
id: 'PROVIDE-LIQUIDITY-ON-UNISWAP-1',
label: 'Add 1 WGLQ of liquidity on WETH-WGLQ Pool',
reward: 1,
progression: (account) => {
if (account?.liquidityPoolsPositions !== undefined && account.liquidityPoolsPositions['WETH/WGLQ'] !== undefined && account.liquidityPoolsPositions['WETH/WGLQ']['WGLQ'] > 0) {
return Math.min(account.liquidityPoolsPositions['WETH/WGLQ']['WGLQ'] * 100 / 1, 100);
}
return 0;
},
status: (account) => {
if (account?.liquidityPoolsPositions !== undefined && account.liquidityPoolsPositions['WETH/WGLQ'] !== undefined && account.liquidityPoolsPositions['WETH/WGLQ']['WGLQ'] >= 1) {
return 'COMPLETED';
}
return 'IN_PROGRESS';
}, // IN_PROGRESS, CLAIMABLE, COMPLETED
available: true
},
{
id: 'PROVIDE-LIQUIDITY-ON-UNISWAP-1K',
label: 'Add 1,000 WGLQ of liquidity on WETH-WGLQ Pool',
reward: 5,
progression: (account) => {
if (account?.liquidityPoolsPositions !== undefined && account.liquidityPoolsPositions['WETH/WGLQ'] !== undefined && account.liquidityPoolsPositions['WETH/WGLQ']['WGLQ'] > 0) {
return Math.min(account.liquidityPoolsPositions['WETH/WGLQ']['WGLQ'] * 100 / 1000, 100);
}
return 0;
},
status: (account) => {
if (account?.liquidityPoolsPositions !== undefined && account.liquidityPoolsPositions['WETH/WGLQ'] !== undefined && account.liquidityPoolsPositions['WETH/WGLQ']['WGLQ'] >= 1000) {
return 'COMPLETED';
}
return 'IN_PROGRESS';
}, // IN_PROGRESS, CLAIMABLE, COMPLETED
available: true
},
{
id: 'PROVIDE-LIQUIDITY-ON-UNISWAP-10K',
label: 'Add 10,000 WGLQ of liquidity on WETH-WGLQ Pool',
reward: 10,
progression: (account) => {
if (account?.liquidityPoolsPositions !== undefined && account.liquidityPoolsPositions['WETH/WGLQ'] !== undefined && account.liquidityPoolsPositions['WETH/WGLQ']['WGLQ'] > 0) {
return Math.min(account.liquidityPoolsPositions['WETH/WGLQ']['WGLQ'] * 100 / 10000, 100);
}
return 0;
},
status: (account) => {
if (account?.liquidityPoolsPositions !== undefined && account.liquidityPoolsPositions['WETH/WGLQ'] !== undefined && account.liquidityPoolsPositions['WETH/WGLQ']['WGLQ'] >= 10000) {
return 'COMPLETED';
}
return 'IN_PROGRESS';
}, // IN_PROGRESS, CLAIMABLE, COMPLETED
available: true
},
{
id: 'PROVIDE-LIQUIDITY-ON-UNISWAP-100K+',
label: 'Add 100,000 WGLQ of liquidity on WETH-WGLQ Pool',
reward: 15,
progression: (account) => {
if (account?.liquidityPoolsPositions !== undefined && account.liquidityPoolsPositions['WETH/WGLQ'] !== undefined && account.liquidityPoolsPositions['WETH/WGLQ']['WGLQ'] > 0) {
return Math.min(account.liquidityPoolsPositions['WETH/WGLQ']['WGLQ'] * 100 / 100000, 100);
}
return 0;
},
status: (account) => {
if (account?.liquidityPoolsPositions !== undefined && account.liquidityPoolsPositions['WETH/WGLQ'] !== undefined && account.liquidityPoolsPositions['WETH/WGLQ']['WGLQ'] >= 100000) {
return 'COMPLETED';
}
return 'IN_PROGRESS';
}, // IN_PROGRESS, CLAIMABLE, COMPLETED
available: true
},
{
id: 'BRIDGE-ETH-ON-THE-GLQ-CHAIN-0.01-1',
label: 'Bridge 0.01 ETH on the GLQ Chain',
reward: 1,
progression: (account) => {
if (account?.bridges !== undefined && account?.bridges['WETH_GLQCHAIN'] >= 0) {
return 100;
}
return 0;
},
status: (account) => {
if (account?.bridges !== undefined && account?.bridges['WETH_GLQCHAIN'] >= 0.01) {
return 'COMPLETED';
}
return 'IN_PROGRESS';
}, // IN_PROGRESS, CLAIMABLE, COMPLETED
available: true
},
{
id: 'BRIDGE-ETH-ON-THE-GLQ-CHAIN-1',
label: 'Bridge 1 ETH on the GLQ Chain',
reward: 5,
progression: (account) => {
if (account?.bridges !== undefined && account?.bridges['WETH_GLQCHAIN'] >= 0) {
return Math.min(account?.bridges['WETH_GLQCHAIN'] * 100 / 1, 100);
}
return 0;
},
status: (account) => {
if (account?.bridges !== undefined && account?.bridges['WETH_GLQCHAIN'] >= 1) {
return 'COMPLETED';
}
return 'IN_PROGRESS';
}, // IN_PROGRESS, CLAIMABLE, COMPLETED
available: true
},
{
id: 'BRIDGE-ETH-ON-THE-GLQ-CHAIN-5',
label: 'Bridge 5 ETH on the GLQ Chain',
reward: 10,
progression: (account) => {
if (account?.bridges !== undefined && account?.bridges['WETH_GLQCHAIN'] >= 0) {
return Math.min(account?.bridges['WETH_GLQCHAIN'] * 100 / 5, 100);
}
return 0;
},
status: (account) => {
if (account?.bridges !== undefined && account?.bridges['WETH_GLQCHAIN'] >= 5) {
return 'COMPLETED';
}
return 'IN_PROGRESS';
}, // IN_PROGRESS, CLAIMABLE, COMPLETED
available: true
},
{
id: 'BRIDGE-ETH-ON-THE-GLQ-CHAIN-10',
label: 'Bridge 10 ETH on the GLQ Chain',
reward: 15,
progression: (account) => {
if (account?.bridges !== undefined && account?.bridges['WETH_GLQCHAIN'] >= 0) {
return Math.min(account?.bridges['WETH_GLQCHAIN'] * 100 / 10, 100);
}
return 0;
},
status: (account) => {
if (account?.bridges !== undefined && account?.bridges['WETH_GLQCHAIN'] >= 10) {
return 'COMPLETED';
}
return 'IN_PROGRESS';
}, // IN_PROGRESS, CLAIMABLE, COMPLETED
available: true
}
];
};
module.exports = {
getAllChallenges
};