-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
119 lines (102 loc) · 3.97 KB
/
index.html
File metadata and controls
119 lines (102 loc) · 3.97 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
112
113
114
115
116
117
118
119
<html>
<head>
<link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Heebo:500,400,300,700,800|Lato:700,700i,300i,300,900i,900,400i,400|PT+Sans:700,700i,400i,400"
/>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css">
<link rel="stylesheet" href="eos-voting.css">
</head>
<body>
<header>
<div class="container text-center p-4">
<a href="https://www.liquideos.com/" target="_blank">
<img src="liquideos-logo.png" width="250px" class="mb-3">
</a>
<h1 class="text-white">EOS Block Producer Voting Tool</h1>
</div>
</header>
<a href="https://github.com/bancorprotocol/liquideos-voting-app" target="_blank">
<img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_white_ffffff.png"
alt="Fork me on GitHub">
</a>
<div class="container bg-white">
<div class="row">
<div class="col-xs-12 pb-1 pt-4 pl-4 pr-4">
<!-- Boxes de Acoes -->
<p>Welcome to LiquidEOS’s standalone voting app produced by Bancor. You will be able to vote for any registered Block Producer on EOS through this application.
You will be prompted to select up to 30 BPs, then enter your private key, which will only be used locally to sign your transaction. Your private key is never stored and never leaves this application.
Your vote is then signed locally using your private key, and the transaction is sent to the EOS blockchain.
</p>
<!-- <ul>
<li> The only EOS voting tool that is endorsed is a command line application which is difficult to install and use and will
greatly limit access to voting.</li>
<li>Scatter, the most popular Web3 EOS wallet, has never been tested in production and isn’t fully verified by the community.</li>
<li>The web voting tool we built only works on HTTP, and even though your private key never leaves your browser, we wanted
an extra level of security.</li>
</ul> -->
<hr class="mt-4">
</div>
</div>
<div class="row">
<!-- Boxes de Acoes -->
<div class="col-xs-12 col-sm-6 col-lg-4 pl-4">
<div class="box">
<div class="icon">
<div class="image">
<i class="fa fa-check-circle"></i>
</div>
<div class="info">
<h3 class="title">Vote for Block Producers (BPs)</h3>
<p>
You can vote for up to 30 BPs, the 21 BPs with the most votes will start producing blocks. Your vote is weighted based on
the amount of EOS in your wallet.
</p>
</div>
</div>
<div class="space"></div>
</div>
</div>
<div class="col-xs-12 col-sm-6 col-lg-4">
<div class="box">
<div class="icon">
<div class="image">
<i class="fa fa-key"></i>
</div>
<div class="info">
<h3 class="title">Enter Your Private Key</h3>
<p>
Your private key never leaves this application and is only used to sign transactions. After entering your private key, please
verify the displayed account name.
</p>
</div>
</div>
<div class="space"></div>
</div>
</div>
<div class="col-xs-12 col-sm-6 col-lg-4 pr-4">
<div class="box">
<div class="icon">
<div class="image">
<i class="fa fa-thumbs-o-up"></i>
</div>
<div class="info">
<h3 class="title">Click Vote</h3>
<p>
Voting signs your votes with your private key and encrypts your transaction. The signed transaction is then sent to the EOS
blockchain using tools provided by EOSIO, namely,
<a href="https://github.com/EOSIO/eosjs" target="_blank">eosjs</a>.
</p>
</div>
</div>
<div class="space"></div>
</div>
</div>
</div>
<div class="row mb-5">
<div class="test">
<a href="list.html"><button class="btn btn-primary">Next</button></a>
</div>
</div>
<script src="eosjs.js"></script>
<!-- <script type="text/javascript" src="eos-voting.js"></script> -->
</body>
</html>