This repository has been archived by the owner on Mar 3, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
73 lines (71 loc) · 2.42 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico">
<!--
Notice the use of %PUBLIC_URL% in the tag above.
It will be replaced with the URL of the `public` folder during the build.
Only files inside the `public` folder can be referenced from the HTML.
Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will
work correctly both with client-side routing and a non-root public URL.
Learn how to configure a non-root public URL by running `npm run build`.
-->
<title>UnConf DApp</title>
</head>
<body>
<h1>UnConf DApp</h1>
<p>UnConf lets you create or participate in Unconferences</p>
<h2>Commands</h2>
<ul>
<li>
<div>
<h3>\createUnconf</h3>
<p>This command will deploy a new UnConf contract on the Blockchain.</p>
<strong>Params<strong>
<ul>
<li><strong>Unconference name<strong> a short name for the UnConference (must be unique).</li>
</ul>
</div>
</li>
<li>
<div>
<h3>\register</h3>
<p>This will add you to the members' list of an existing UnConference.</p>
<strong>Params<strong>
<ul>
<li><strong>Unconference name<strong> the name of the UnConference that you wish to join.</li>
<li><strong>Alias<strong> an Alias that will be associated to your address for this UnConference.</li>
</ul>
</div>
</li>
<li>
<div>
<h3>\addTopic</h3>
<p>This will add a new topic to the UnConference.</p>
<strong>Params<strong>
<ul>
<li><strong>Topic Name<strong> the name of topic to add to the list (must be unique per UnConference).</li>
</ul>
</div>
</li>
<li>
<div>
<h3>\voteForTopic</h3>
<p>This will add an upvote for an existing topic.</p>
<strong>Params<strong>
<ul>
<li><strong>Topic Name<strong> the name of topic that you want to support.</li>
</ul>
</div>
</li>
<li>
<div>
<h3>\listTopics</h3>
<p>This will return a ranking with all of the topics and number of votes per topic.</p>
</div>
</li>
</ul>
</body>
</html>