-
Notifications
You must be signed in to change notification settings - Fork 5
/
About.tsx
120 lines (112 loc) · 5.64 KB
/
About.tsx
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
120
import HomeHeader from './Header/HomeHeader';
import Footer from './Footer/Footer';
import BubbleLink from './Generics/BubbleLink';
export default function About() {
return (
<div className="layout-container">
<HomeHeader />
<section className="layout">
<div className="measure-narrow hero-text">
<p>Star Market is the easiest
way to obtain a Star.
</p>
<p>
Stars are gateways to building businesses, supernodes, and other provider services on
the Urbit Network.
</p>
<p>
Urbit is a clean-slate OS and network.
Learn more about Urbit at <a href="urbit.org" rel="noreferrer" target="_blank">Urbit.org</a>.
</p>
</div>
</section>
<section className="layout token-info">
<table className="mb-4em">
<tbody>
<tr>
<td>Token Name</td>
<td>Wrapped Star</td>
</tr>
<tr>
<td>Token Symbol</td>
<td>WSTR</td>
</tr>
<tr>
<td>Max Supply</td>
<td>65,2180</td>
</tr>
<tr>
<td>Social</td>
<td><a rel="noreferrer" target="_blank" href="https://twitter.com/urbit">@urbit</a> on Twitter</td>
</tr>
<tr>
<td>Token Icon</td>
<td><img alt="wstr-logo" style={{width:'96px', height: '96px'}}src="/assets/wstr-logo-192.png" /></td>
</tr>
</tbody>
</table>
<table className="mb-4em">
<tbody>
<tr>
<td>Token Description</td>
<td><p>WSTR is a token representing a 'wrapped urbit star', with 1 (fungible) WSTR representing one (nonfungible) star. $WSTR is intended to bring liquidity to the star asset class, which is a primary investment mechanism on the Urbit network.</p></td>
</tr>
</tbody>
</table>
<table>
<tbody>
<tr>
<td>Contract Address</td>
<td>
<a rel="noreferrer" target="_blank" href="https://github.com/ransonhobbes/stardust">etherscan link to contract address goes here once launched</a>
</td>
</tr>
<tr>
<td>Contract Source Repo</td>
<td><a rel="noreferrer" target="_blank" href="https://github.com/ransonhobbes/stardust">https://github.com/ransonhobbes/stardust</a></td>
</tr>
<tr>
<td>Token Website</td>
<td><a href="https://star.market">https://star.market</a></td>
</tr>
</tbody>
</table>
</section>
<section className="layout">
<h3 className="gray-title">Audit References</h3>
<ul>
<BubbleLink
href="https://18108973658826589741.googlegroups.com/attach/73008de92defe/Preliminary%20Stardust%20Audit%20Report%20v2.pdf?part=0.2&view=1&vt=ANaJVrFY0pvUAvtKp022657-C1GOkCllq0QoQqxiBniLR9IzFbGxSPXQS0qmlHHKUacRtjkabt27FDSbqdZzAI0FKoxxml3RUEQ_wnnRpzpU_rR1E3PicAQ"
title="Optilistic Audit"
caption="Security audit from Optilistic"
>
<img
alt="lock icon"
className="bubble" src="assets/lock-bg.png" />
</BubbleLink>
<BubbleLink
href="https://18108973658826589741.googlegroups.com/attach/51257300be160/Sigma%20Prime%20-%20Urbit%20-%20Stardust%20Smart%20Contract%20Security%20Assessment%20v1.0.pdf?part=0.1&view=1&vt=ANaJVrE6sFqTUiND0NB1qOyFg7Xo_TuRX4QHnkoY1NOpv8FlP2QEz3gWynLm0MZo4ZsB3h2MQywvFCCv3-ossLb5j9Ytg9BraEiuR4jG6PMk2Ngp4H71g2E"
title="Sigma Prime Audit"
className="mt-2"
caption="Smart contract security review from Sigma Prime"
>
<img
alt="lock icon"
className="bubble" src="assets/lock-bg.png" />
</BubbleLink>
<BubbleLink
href="https://18108973658826589741.googlegroups.com/attach/73008de92defe/Stardust%20Security%20Audit%20Report%20(merged).md?part=0.1&view=1&vt=ANaJVrGgpIpZnv_PCvdmd2QCO2I_RNoo9GuqUgGFB_yTcQkgE-2gToLANjZIxZ6y0_zCNY3eAW-whjIsv3PvqL_3X3JbAy_qCFc70kIWda-NP_7Ur1-WpMg"
title="Mix Bytes"
caption="Security audit by Mix Bytes"
className="mt-2"
>
<img
alt="lock icon"
className="bubble" src="assets/lock-bg.png" />
</BubbleLink>
</ul>
</section>
<Footer />
</div>
)
}