-
Notifications
You must be signed in to change notification settings - Fork 31
/
index.html
54 lines (47 loc) · 3.58 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="http://etherboost.github.io/etheropt/favicon.ico">
<link href="http://getbootstrap.com/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css" rel="stylesheet">
<link href="http://getbootstrap.com/assets/css/ie10-viewport-bug-workaround.css" rel="stylesheet">
<link href="style.css" rel="stylesheet">
<title>Etheropt</title>
</head>
<body>
<div id="header">
<img src="logo.svg" />
<div class="helper"></div>
Etheropt
</div>
<div class="no-nav"></div>
<div id="content">
<div class="panel panel-default">
<div class="panel-body">
<p>Etheropt is a decentralized options exchange built on <a href="https://ethereum.org/" target="_blank">Ethereum</a>. The options you see here are vanilla call and put options on the price of Ethereum in USD as reported by <a href="https://poloniex.com/exchange#btc_eth" target="_blank">Poloniex</a> and <a href="http://www.coindesk.com/price/" target="_blank">Coindesk</a> and verified by <a href="https://www.realitykeys.com/" target="_blank">Reality Keys</a>. Etheropt has no owner. Its entire operation is described and executed by an Ethereum <a href="https://github.com/etheropt/etheropt.github.io/blob/master/market.sol" target="_blank">smart contract</a>. Etheropt does not make any money as the smart contract does not charge any fees (not for trading, not for adding funds, not for withdrawing, not for anything).</p>
</div>
</div>
<div class="alert alert-warning alert-dismissible" role="alert">
<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">×</span></button>
Etheropt is not yet running on the Ethereum mainnet. The testnet version is available <a href="http://etheropt.github.io/testnet" target="_blank">here</a>.
</div>
</div>
<div id="footer">
<p><img src="http://etheropt.github.io/logo.svg" style="height: 1em;" /> <a href="http://etheropt.github.io" target="_blank">Etheropt</a> is open source on <a href="https://github.com/etheropt/etheropt.github.io" target="_blank">GitHub</a>. Read the <a href="https://github.com/etheropt/etheropt.github.io/blob/master/README.md" target="_blank">Manual</a>.</p>
<p><img src="http://etherboost.github.io/images/logo.svg" style="height: 1em;" /> Produced by <a href="http://etherboost.github.io" target="_blank">Etherboost</a>. Come <a href="https://gitter.im/etheropt/etheropt?utm_source=share-link&utm_medium=link&utm_campaign=share-link" target="_blank">chat on Gitter</a>.</p>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.js" type="text/javascript"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-75000235-3', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>