forked from EmelyanenkoK/newton-blockchain.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
410 lines (356 loc) · 15.2 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
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>NEWTON Blockchain</title>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no, minimal-ui, viewport-fit=cover">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="format-detection" content="telephone=no">
<style>
html {
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, Arial, sans-serif;
padding-left: 10px;
padding-right: 10px;
padding-bottom: 30px;
}
h1 {
text-align: center;
}
h3 {
color: #222;
text-align: center;
font-size: 36px;
margin-top: 60px;
margin-bottom: 40px;
}
.items-container {
max-width: 700px;
margin-left: auto;
margin-right: auto;
}
.item {
display: flex;
flex-direction: row;
margin-bottom: 35px;
}
.item-img {
width: 64px;
height: 64px;
flex-shrink: 0;
background-repeat: no-repeat;
background-size: contain;
background-position: center;
margin-right: 10px;
margin-top: -10px;
}
.item-text {
line-height: 24px;
}
.item-title {
font-weight: bold;
}
.item-h, a.item-h {
display: block;
font-size: 23px;
color: #0088cc;
margin-bottom: 10px;
}
.users-container {
margin-left: auto;
margin-right: auto;
max-width: 600px;
overflow: auto;
}
.user-item {
display: flex;
flex-direction: row;
align-items: center;
float: left;
margin-bottom: 20px;
margin-right: 40px;
width: 33%;
}
.user-ava {
width: 48px;
height: 48px;
background-repeat: no-repeat;
background-size: cover;
background-position: center;
margin-right: 10px;
flex-shrink: 0;
}
.user-name {
color: #0088cc;
font-size: 18px;
}
.config {
padding: 20px;
background: #eee;
font-size: 23px;
color: #0088cc;
line-height: 30px;
user-select: all;
-webkit-user-select: all;
-moz-user-select: all;
}
a, a:hover, a:active, a:focus {
color: #0088cc;
}
</style>
</head>
<div style="text-align: center; padding-bottom: 60px; padding-top: 60px">
<h1 style="font-size: 64px">NEWTON</h1>
<div style="font-size: 24px; margin-top: -40px">BLOCKCHAIN</div>
</div>
<h3 style="padding-top: 70px; margin-bottom: 100px; font-size: 24px; font-weight: normal">
Completion of the TON project by open source community.
</h3>
<div style="border-bottom: 1px solid #eee"></div>
<h3 style="margin-top: 40px; margin-bottom: 20px">Testnet is running</h3>
<div style="text-align: center">
<div style="font-size: 18px">Config:</div>
<div style="margin-top: 15px">
<a style="display: inline-block" class="config" href="newton-test.global.config.json" target="_blank">https://newton-blockchain.github.io/newton-test.global.config.json</a>
</div>
</div>
<h3 style="margin-bottom: 20px">Become a validator</h3>
<div style="text-align: center">
<div>
<a style="display: inline-block" class="config" href="https://github.com/newton-blockchain/general-ton-node"
target="_blank">https://github.com/newton-blockchain/general-ton-node</a>
</div>
</div>
<div style="border-bottom: 1px solid #eee; margin-top: 50px;"></div>
<h3>Features</h3>
<div class="items-container">
<div class="item">
<div class="item-img" style="background-image: url('icons/speed.png')"></div>
<div class="item-text">
<span class="item-title">Speed and scalability</span> that allows for processing millions of transactions
per second and accommodating hundreds of millions of active users and millions of applications.
</div>
</div>
<div class="item">
<div class="item-img" style="background-image: url('icons/ui.png')"></div>
<div class="item-text">
<span class="item-title">Intuitive user interfaces</span> that enable an average user to easily buy, store,
and transfer value, as well as use decentralized apps in a natural way.
</div>
</div>
<div class="item">
<div class="item-img" style="background-image: url('icons/users.png')"></div>
<div class="item-text">
<span class="item-title">Integration with Telegram Apps</span> with potential involvement of 400 million
active users as the critical mass necessary for the ecosystem to grow.
</div>
</div>
</div>
<h3>Blockchain</h3>
<div class="items-container">
<div class="item">
<div class="item-img" style="background-image: url('icons/sharding.png')"></div>
<div class="item-text">
<div class="item-h">Infinite Sharding Paradigm</div>
<div>To achieve scalability, TON has built-in support for sharding: TON blockchains can automatically split
and merge to accommodate changes in load. This means that new blocks are always generated quickly and
the absence of long queues helps keep transaction costs low, even if some of the services using the
platform become massively popular.
</div>
</div>
</div>
<div class="item">
<div class="item-img" style="background-image: url('icons/hypercube.png')"></div>
<div class="item-text">
<div class="item-h">Instant Hypercube Routing</div>
<div>TON blockchains use smart routing mechanisms to ensure that transactions between any two blockchains
will always be processed swiftly, regardless of the size of the system. The time needed to pass
information between TON blockchains grows logarithmically with their number, so scaling to even millions
of chains will allow them all to communicate at top speed.
</div>
</div>
</div>
<div class="item">
<div class="item-img" style="background-image: url('icons/proof.png')"></div>
<div class="item-text">
<div class="item-h">Proof-of-Stake Approach</div>
<div>TON uses a Proof-of-Stake approach in which processing nodes («validators») deposit stakes to guarantee
their dependability and reach consensus through a variant of the Byzantine Fault Tolerant protocol. This
allows TON to focus the computing power of its nodes on handling transactions and smart contracts,
further increasing speed and efficiency.
</div>
</div>
</div>
<div class="item">
<div class="item-img" style="background-image: url('icons/2d.png')"></div>
<div class="item-text">
<div class="item-h">2-D Distributed Ledgers</div>
<div>TON can «grow» new valid blocks on top of any blocks that were proven to be incorrect to avoid
unnecessary forks. This self-healing mechanism saves resources and guarantees that valid transactions
will not be discarded due to unrelated errors.
</div>
</div>
</div>
</div>
<h3>Platform</h3>
<div class="items-container">
<div class="item">
<div class="item-img" style="background-image: url('icons/proxy.png')"></div>
<div class="item-text">
<a class="item-h" href="https://ton.org/TonSites-HOWTO.txt" target="_blank">TON Proxy</a>
<div>TON Proxy is a network proxy/anonymizer layer used to hide the identity and IP addresses of TON nodes.
Similar to I2P (Invisible Internet Project), this layer can be used to create decentralized VPN services
and blockchain-based TOR alternatives to achieve anonymity and protect online privacy. In conjunction
with the TON P2P Network and TON DNS, TON Proxy can make any service, including Telegram, effectively
immune to censorship.
</div>
</div>
</div>
<div class="item">
<div class="item-img" style="background-image: url('icons/services.png')"></div>
<div class="item-text">
<a class="item-h" href="projects.html" target="_blank">TON Services</a>
<div>TON Services provides a platform for third-party services of any kind that enables smartphone-like
friendly interfaces for decentralized apps and smart contracts, as well as a World Wide Web-like
decentralized browsing experience.
</div>
</div>
</div>
<div class="item">
<div class="item-img" style="background-image: url('icons/dns.png')"></div>
<div class="item-text">
<a class="item-h" href="https://ton.org/DNS-HOWTO.txt" target="_blank">TON DNS</a>
<div>TON DNS is a service for assigning human-readable names to accounts, smart contracts, services, and
network nodes. With TON DNS, accessing decentralized services can be similar to viewing a website on the
World Wide Web.
</div>
</div>
</div>
<div class="item">
<div class="item-img" style="background-image: url('icons/payments.png')"></div>
<div class="item-text">
<a class="item-h"
href="https://github.com/ton-blockchain/ton/blob/master/crypto/smartcont/payment-channel-code.fc"
target="_blank">TON Payments</a>
<div>TON Payments is a platform for micropayments and a micropayment channel network. It can be used for
instant off-chain value transfers between users, bots, and other services. Safeguards built into the
system ensure that these transfers are as secure as on-chain transactions.
</div>
</div>
</div>
<div class="item">
<div class="item-img" style="background-image: url('icons/storage.png')"></div>
<div class="item-text">
<div class="item-h">TON Storage</div>
<div>TON Storage is a distributed file-storage technology, accessible through the TON P2P Network and
available for storing arbitrary files, with torrent-like access technology and smart contracts used to
enforce availability. This component not only enables storage services akin to a distributed Dropbox,
but also paves the way for more complex decentralized apps that require storing large amounts of data,
such as Youtube — or Telegram.
</div>
</div>
</div>
</div>
<h3>Integration</h3>
<div style="text-align: center; padding-bottom: 20px;">
<img src="screen.jpg" style="max-width: 700px; width: 100%; border-radius: 10px" alt="Attach Grams">
</div>
<div class="users-container">
<p class="item-text">
The Newton project <b>intends to create bots and branches of Telegram application</b> (like Telegram X) with
built-in wallets, transferring of grams and other blockchain functionality and supporting them up to date.
</p>
<p class="item-text">
The MTProto protocol and Telegram Messenger applications are open source.
</p>
<p class="item-text">
Among the members of the community there are experts well versed in Telegram technology: winners of Telegram
Contests and developers of popular Telegram bots.
</p>
</div>
<h3>Community</h3>
<div class="users-container" style="margin-bottom: 40px">
<p class="item-text">
The community consists of developers, TON Blockchain Contests winners, validators and decentralized technology
enthusiasts.
</p>
<p class="item-text">
Members of the community are located in different parts of the world, do not belong to any commercial
organization, and share the principles of open source software.
</p>
<p class="item-text">
There are no former or current Telegram employees in the community.
</p>
</div>
<div class="users-container" style="display: none">
<div class="user-item">
<div class="user-ava"
style="background-image: url('https://avatars2.githubusercontent.com/u/1449561?s=96&v=4')"></div>
<div class="user-name">tolya-yanot</div>
</div>
<div class="user-item">
<div class="user-ava"
style="background-image: url('https://avatars0.githubusercontent.com/u/2539335?s=88&v=4')"></div>
<div class="user-name">EmelyanenkoK</div>
</div>
<div class="user-item">
<div class="user-ava"
style="background-image: url('https://avatars2.githubusercontent.com/u/796742?s=96&v=4')"></div>
<div class="user-name">yakud</div>
</div>
<div class="user-item">
<div class="user-ava"
style="background-image: url('https://avatars1.githubusercontent.com/u/52255577?s=96&v=4')"></div>
<div class="user-name">AleksejMelman</div>
</div>
<div class="user-item">
<div class="user-ava"
style="background-image: url('https://avatars3.githubusercontent.com/u/357153?s=96&v=4')"></div>
<div class="user-name">Ajaxy</div>
</div>
<div class="user-item">
<div class="user-ava"
style="background-image: url('https://avatars3.githubusercontent.com/u/28895366?s=96&v=4')"></div>
<div class="user-name">ddi2010</div>
</div>
<div class="user-item">
<div class="user-ava"
style="background-image: url('https://avatars3.githubusercontent.com/u/6860063?s=96&v=4')"></div>
<div class="user-name">ftkvyn</div>
</div>
<div class="user-item">
<div class="user-ava"
style="background-image: url('https://avatars0.githubusercontent.com/u/27614297?s=96&v=4')"></div>
<div class="user-name">igroman787</div>
</div>
<div class="user-item">
<div class="user-ava"
style="background-image: url('https://avatars0.githubusercontent.com/u/43433980?s=96&v=4')"></div>
<div class="user-name">sonofmom</div>
</div>
<div class="user-item">
<div class="user-ava"
style="background-image: url('https://avatars2.githubusercontent.com/u/11882806?s=96&v=4')"></div>
<div class="user-name">Antonio</div>
</div>
<div class="user-item">
<div class="user-ava"
style="background-image: url('https://avatars0.githubusercontent.com/u/63676086?s=96&v=4')"></div>
<div class="user-name">F5050</div>
</div>
<div class="user-item">
<div class="user-ava"
style="background-image: url('https://avatars2.githubusercontent.com/u/527390?s=96&v=4')"></div>
<div class="user-name">Kyborg2011</div>
</div>
</div>
<div style="text-align: center; margin-top: 100px">
<img src="logo.png" style="width: 32px; pointer-events: none">
</div>
</body>
</html>