-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.js
406 lines (379 loc) · 10.2 KB
/
app.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
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
const env = "testnet";
const chainId = 9000;//test net
const price = 0;
let address;
const contractAddress = "0x64B92826D812E94A8C1709c871237D1e5a1aC445";
const etherscanUrl = "https://evm.evmos.org/tx";
let provider = null;
const abi = [
{
"constant": true,
"inputs": [],
"name": "maxBet",
"outputs": [
{
"name": "",
"type": "uint256"
}
],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": true,
"inputs": [],
"name": "playerSpin",
"outputs": [
{
"name": "",
"type": "uint8"
}
],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": false,
"inputs": [
{
"name": "house",
"type": "uint8"
}
],
"name": "play",
"outputs": [
{
"name": "",
"type": "uint8"
}
],
"payable": true,
"stateMutability": "payable",
"type": "function"
},
{
"constant": false,
"inputs": [],
"name": "collectFunds",
"outputs": [],
"payable": true,
"stateMutability": "payable",
"type": "function"
},
{
"constant": true,
"inputs": [],
"name": "houseBalance",
"outputs": [
{
"name": "",
"type": "uint256"
}
],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": true,
"inputs": [],
"name": "lastPlayerSpin",
"outputs": [
{
"name": "",
"type": "uint8"
}
],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": true,
"inputs": [],
"name": "lastOdds",
"outputs": [
{
"name": "",
"type": "uint8"
}
],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": true,
"inputs": [],
"name": "collector",
"outputs": [
{
"name": "",
"type": "address"
}
],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": true,
"inputs": [],
"name": "lastWinAmount",
"outputs": [
{
"name": "",
"type": "uint256"
}
],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": false,
"inputs": [
{
"name": "newMaxBet",
"type": "uint256"
}
],
"name": "changeMaxBet",
"outputs": [],
"payable": true,
"stateMutability": "payable",
"type": "function"
},
{
"constant": true,
"inputs": [],
"name": "lastresult",
"outputs": [
{
"name": "",
"type": "string"
}
],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"payable": true,
"stateMutability": "payable",
"type": "fallback"
}
];
window.onload = () => {
var animateButton = function (e) {
e.preventDefault;
//reset animation
e.target.classList.remove("animate");
e.target.classList.add("animate");
setTimeout(function () {
e.target.classList.remove("animate");
}, 700);
};
//bet slider
//1 photon = 1000000000000000000
// default bet = 5000000000000000 (0.005)
//odds slider
//odds including 5% house edge = bet (95 / odds) * bet
var sliderO = document.getElementById("sliderOdds");
var outputO = document.getElementById("oddsValue");
var sliderB = document.getElementById("sliderBet");
var outputB = document.getElementById("betValue");
var outputW = document.getElementById("winValue");
var outputOL = document.getElementById("oddsLabel");
var bet = 0.005;
var odds = 50;
var winnings = (95 / 5) * bet;
outputW.innerHTML = "0.0095 PHOTON's";
outputB.innerHTML = 0.005 + " PHOTON's"; // Display the default slider value
// Update the current slider value (each time you drag the slider handle)
sliderB.oninput = function() {
bet = this.value / 1000;
winnings = (95 / sliderO.value) * bet;
outputB.innerHTML = bet + " PHOTON's";
outputW.innerHTML = winnings.toFixed(14) + " PHOTON's";
}
outputO.innerHTML = "50% chance of winning"; // Display the default slider value
// Update the current slider value (each time you drag the slider handle)
sliderO.oninput = function() {
winnings = (95 / this.value) * (sliderB.value / 1000);
outputO.innerHTML = this.value + "% chance of winning";
odds = this.value;
outputW.innerHTML = winnings.toFixed(14) + " PHOTON's";
outputOL.innerHTML = this.value;
}
var bubblyButtons = document.getElementsByClassName("bubbly-button");
for (var i = 0; i < bubblyButtons.length; i++) {
bubblyButtons[i].addEventListener("click", animateButton, false);
}
window?.ethereum?.on("disconnect", () => {
window.location.reload();
});
window?.ethereum?.on("networkChanged", () => {
window.location.reload();
});
window?.ethereum?.on("chainChanged", () => {
window.location.reload();
});
const connectWallet = async () => {
await window.ethereum.enable();
if (Number(window.ethereum.chainId) !== chainId) {
return failedConnectWallet();
}
provider = new ethers.providers.Web3Provider(window.ethereum);
const accounts = await provider.send("eth_requestAccounts");
document.getElementById("button").innerHTML = accounts[0];
};
const failedConnectWallet = () => {
document.getElementById("button").innerHTML = "Error Network, switch to Evmos";
};
const switchNetwork = async () => {
if (env === "test") {
window?.ethereum
?.request({
method: "wallet_addEthereumChain",
params: [
{
chainId: "9000",
chainName: "Evmos OM Testnet",
nativeCurrency: {
name: "PHOTON",
symbol: "PHOTON",
decimals: 18,
},
rpcUrls: ["https://evmos-testnet.gateway.pokt.network/v1/lb/61ac07b995d548003aedf5ee"],
blockExplorerUrls: ["https://evm.evmos.org"],
},
],
})
.then(() => {
connectWallet();
})
.catch(() => {
failedConnectWallet();
});
} else {
window?.ethereum
?.request({
method: "wallet_addEthereumChain",
params: [
{
chainId: "9000",
chainName: "Evmos OM Testnet",
nativeCurrency: {
name: "PHOTON",
symbol: "PHOTON",
decimals: 18,
},
rpcUrls: ["https://evmos-testnet.gateway.pokt.network/v1/lb/61ac07b995d548003aedf5ee"],
blockExplorerUrls: ["https://evm.evmos.org"],
},
],
})
.then(() => {
connectWallet();
})
.catch(() => {
failedConnectWallet();
});
}
};
document.getElementById("button").addEventListener("click", switchNetwork);
connectWallet();
//this function only works from the collectors account
const handleWithdraw = async () => {
const signer = await provider.getSigner();
const account = await signer.getAddress();
const amountRaw = "0";
const ImageContract1 = new ethers.Contract(contractAddress, abi, signer);
const balanceRaw = await provider.getBalance(account);
const balance = ethers.utils.formatUnits(balanceRaw, 18);
const estimateGas = await ImageContract1.estimateGas.collectFunds();
const gasLimit = Math.floor(estimateGas.toNumber() * 4);
const response = await ImageContract1.collectFunds();
}
const handleSpin = async () => {
$.toast().reset("all");
document.getElementById("winner").style.display = "none";
document.getElementById("sorry").style.display = "none";
document.getElementById("spun").innerHTML = "";
if (!provider) {
connectWallet();
} else {
try {
document.getElementById("spin").innerHTML = "Spinning...";
document.getElementById("spin").disabled = true;
const signer = await provider.getSigner();
const account = await signer.getAddress();
const amountRaw = (sliderB.value / 1000).toString();
const ImageContract = new ethers.Contract(contractAddress, abi, signer);
const balanceRaw = await provider.getBalance(account);
const balance = ethers.utils.formatUnits(balanceRaw, 18);
const estimateGas = await ImageContract.estimateGas.play(odds);
const gasLimit = Math.floor(estimateGas.toNumber() * 2);
const response = await ImageContract.play(odds,{value: ethers.utils.parseEther(amountRaw.toString())});
document.getElementById("wheel").style.display = "block";
$.toast({
heading: "Wheel Spinning",
text: "Good luck!",
position: "top-center",
showHideTransition: "fade",
hideAfter: 10000,
icon: "info",
});
const result = await response.wait();
const balanceRaw2 = await provider.getBalance(account);
var playerResult = "lost";
if (balanceRaw2 > balanceRaw){
playerResult = "win";
document.getElementById("winner").style.display = "block";
$.toast().reset("all");
$.toast({
heading: "Winner!",
text: "Congratulations!",
showHideTransition: "slide",
position: "top-center",
icon: "success",
});
}else{
playerResult = "lost";
document.getElementById("sorry").style.display = "block";
$.toast().reset("all");
$.toast({
heading: "Lost",
text: "Better luck next time",
showHideTransition: "slide",
position: "top-center",
icon: "info",
});
};
let txHash = result.transactionHash;
document.getElementById("spun").innerHTML = "<div><a href='https://evm.evmos.org/tx/"+ txHash +"' target='_blank'> View on Block Explorer</a></center></div>";
document.getElementById("spin").innerHTML = "Spin";
document.getElementById("wheel").style.display = "none";
document.getElementById("spin").disabled = false;
// window.open(`${etherscanUrl}/${result.transactionHash}`);
} catch (e) {
document.getElementById("spin").innerHTML = "Spin";
document.getElementById("wheel").style.display = "none";
document.getElementById("spin").disabled = false;
$.toast({
heading: "Error",
text: "Transaction failed - Something went wrong",
position: "top-center",
showHideTransition: "fade",
hideAfter: 5000,
icon: "error",
});
}
}
};
document.getElementById("spin").addEventListener("click", handleSpin);
document.getElementById("withdraw").addEventListener("click", handleWithdraw);
};