-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
78 lines (74 loc) · 3.28 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
74
75
76
77
78
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="shortcut icon" href="img/favicon.ico" />
<title>
ZRC-2 generator | undefinedcompany
</title>
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/main.css">
<script
src="https://code.jquery.com/jquery-3.6.0.min.js"
integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4="
crossorigin="anonymous"></script>
<script src="js/main.js"></script>
</head>
<body>
<nav>
<a href="https://undefinedcompany.com"><h1>undefinedcompany</h1></a>
</nav>
<main>
<section id="introduction">
<h2>Create <b>ZRC-2</b></br>token</h2>
<p>ZRC-2 is the formal standard for Fungible Token in Zilliqa. It is an open standard for creating currencies on the Zilliqa blockchain.</p>
<p>The ZRC-2 standard allows for functionalities like</p>
<ul>
<li>Minting/burning tokens</li>
<li>Transferring tokens from one account to another</li>
<li>Querying account token balance</li>
<li>Querying total token balances</li>
<li>Approving third party to spend a certain amount of tokens</li>
</ul>
<div id="links">
<a target="_blank" href="https://github.com/ArthurHoeke/ZRC2-token-creator"><img class="icon" src="img/github.svg"></a>
<a target="_blank" href="https://dev.zilliqa.com/docs/exchanges/exchange-managing-zrc2-tokens/"><img class="icon" src="img/docs.svg"></a>
</div>
</section>
<section id="setup">
<img src="img/eclipse-noise.png" id="blob">
<img src="img/zilpay_logo.svg" id="connect">
<form id="tokenForm" style="display: none;" onsubmit="return false;">
<h3>Set your token variables</h3>
<div>
<label>contract owner</label>
<input id="input_owner" type="text" placeholder="zil1v25at4s3eh9w34uqqhe3vdvfsvcwq6un3fupc2" required>
</div>
<div>
<div class="group">
<label>token name</label>
<input id="input_name" type="text" placeholder="awesome token" required>
</div>
<div class="group">
<label>token ticker</label>
<input id="input_ticker" type="text" placeholder="AT" maxlength="4" required>
</div>
</div>
<div>
<div class="group">
<label>decimal count</label>
<input id="input_decimal" type="number" placeholder="2" required>
</div>
<div class="group">
<label>intial supply</label>
<input id="input_supply" type="number" placeholder="100" required>
</div>
</div>
<input id="deployContract" type="submit" value="DEPLOY CONTRACT">
</form>
</section>
</main>
</body>
</html>