-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
114 lines (78 loc) · 2.83 KB
/
index.html
File metadata and controls
114 lines (78 loc) · 2.83 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Rincoin Miner</title>
<link rel="icon" type="image/x-icon" href="favicon.ico">
<script src="https://cdn.lordicon.com/lordicon.js"></script>
<link rel="stylesheet" href="style.css">
<meta charset="UTF-8">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="main">
<div id="move">
<h1>Rincoin One-Click Miner</h1>
<!--Wallet Input-->
<input type="text" id="wallet" placeholder="Enter your Rincoin wallet address" />
<!--Control Buttons-->
<button id="startSRB" onclick="startMining('srb')">Start Mining</button>
<button onclick="clearOutput()">Clear Output</button>
<!--Output Window-->
<pre id="output" style="height: 500px; overflow-y: scroll; background: #000000; color: rgb(5, 162, 219); padding: 10px; border-radius: 5px;"></pre>
</div>
<div id="readme">
<h1>Read ME!</h1>
</div>
<div id="show">
<p id="info">
This is made specifically for RinHash <b>"RinCoin"</b>. It uses SRB-Miner to mine RinCoin.
<br><br>
To mine, enter your wallet address and click Start Mining — that's it. To stop the miner close the CMD Window that it opens.
<br><br>
The miner mines on GetToMine. To check your mining stats, go to GetToMine.COM , navigate to the dashboard page, and
enter your wallet address there.
<br><br>
For now, you <b>cannot</b> change the server within the app and Rin payouts will follow GetToMine's payout rules.
<br><br>
Please make sure to enter a valid wallet address, otherwise <b>You Will Not Receive Your RinCoins.</b>
<br><br>
Windows might flag this as a virus. To fix that, disable Windows Defender or follow a tutorial on mining on Windows.
<br><br>
<b>You Need A RinCoin Wallet To use This.</b>
<br><br>
If you have any question ask them on Discord.
</p>
<div id="line"></div>
<h2 id="credits">
🌐 One-Click-RinCoin Miner developed by <a href="https://github.com/Quanastic">Quanastic</a>.<br><br>
⛏️ SRB-Miner developed by <a href="https://github.com/doktor83">doktor83</a>
</h2> <br> <br>
<h2 id="h2h2">Join the Official RinCoin Discord Server and checkout the Github page</h2>
<div class="links">
<a href="https://discord.gg/JAvy9GMYZe" target="_blank" rel="noopener noreferrer">
<div id="discord">
<lord-icon
src="discord.json"
trigger="hover"
style="width:80px;height:80px">
</lord-icon>
<h1>Discord</h1>
</div>
</a>
<a href="https://github.com/Rin-coin" >
<div id="github">
<lord-icon
src="github.json"
trigger="hover"
style="width:80px;height:80px">
</lord-icon>
<h1>GitHub</h1>
</div>
</a>
</div>
</div>
</div>
<script src="renderer.js"></script>
</body>
</html>