-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
313 lines (307 loc) · 16 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charSet="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Official Tetcore Documentation for Blockchain Developers · Tetcore Developer Hub</title>
<meta name="viewport" content="width=device-width" />
<meta name="generator" content="Docusaurus" />
<meta name="description" content="Learn to build blockchains using the next generation blockchain framework." />
<meta name="docsearch:language" content="en" />
<meta property="og:title" content="Official Tetcore Documentation for Blockchain Developers · Tetcore Developer Hub" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://tetcore.github.io/" />
<meta property="og:description" content="Learn to build blockchains using the next generation blockchain framework." />
<meta property="og:image" content="https://tetcore.org/img/tetcore/tetcore-logo.png" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:image" content="https://tetcore.org/img/tetcore/tetcore-logo.png" />
<link rel="shortcut icon" href="https://tetcoin.org/img/tetcore/tetcore-favicon.png" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/docsearch.js/1/docsearch.min.css" />
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/styles/default.min.css" />
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" />
<script type="text/javascript" src="https://buttons.github.io/buttons.js"></script>
<script type="text/javascript" src="/js/clipboard.min.js"></script>
<script type="text/javascript" src="/js/code-block-buttons.js"></script>
<script type="text/javascript" src="/js/load.js"></script>
<script type="text/javascript" src="/js/redirect-next.js"></script>
<script type="text/javascript" src="/js/config.js" defer=""></script>
<script type="text/javascript" src="/js/klaro.min.js" defer=""></script>
<script src="https://unpkg.com/vanilla-back-to-top@7.1.14/dist/vanilla-back-to-top.min.js"></script>
<script>
document.addEventListener('DOMContentLoaded', function() {
addBackToTop({
"zIndex": 100
})
});
</script>
<script src="/js/scrollSpy.js"></script>
<link rel="stylesheet" href="/css/prism.css" />
<link rel="stylesheet" href="/css/main.css" />
<script src="/js/codetabs.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-113098328-5"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-113098328-5');
</script>
</head>
<body>
<div class="fixedHeaderContainer">
<div class="headerWrapper wrapper">
<header>
<a href="/en"><img class="logo" src="https://tetcoin.org/img/tetcore/tetcore-logo-small.png" alt="Tetcore Developer Hub" />
<h2 class="headerTitleWithLogo">Tetcore Developer Hub</h2></a>
<div class="navigationWrapper navigationSlider">
<nav class="slidingNav">
<ul class="nav-site nav-site-internal">
<li class=""><a href="/en/tutorials" target="_self">Tutorials</a></li>
<li class=""><a href="/docs/en/" target="_self">Knowledge Base</a></li>
<li class=""><a href="https://core.tetcoin.org/recipes/" target="_self">Recipes</a></li>
<li class=""><a href="https://substrate.dev/rustdocs/" target="_self">API Reference</a></li>
<li class="navSearchWrapper reactNavSearchWrapper">
<input type="text" id="search_input_react" placeholder="Search" title="Search" />
</li><span><li><a id="languages-menu" href="#"><img class="languages-icon" src="/img/language.svg" alt="Languages icon"/>English</a><div id="languages-dropdown" class="hide"><ul id="languages-dropdown-items"><li><a href="/zh-CN">简体中文</a></li><li><a href="https://github.com/tetcore/tetcore.github.io" target="_blank" rel="noreferrer noopener">Help Translate</a></li></ul></div></li><script>
const languagesMenuItem = document.getElementById("languages-menu");
const languagesDropDown = document.getElementById("languages-dropdown");
languagesMenuItem.addEventListener("click", function(event) {
event.preventDefault();
if (languagesDropDown.className == "hide") {
languagesDropDown.className = "visible";
} else {
languagesDropDown.className = "hide";
}
});
</script></span></ul>
</nav>
</div>
</header>
</div>
</div>
<div class="navPusher">
<section>
<div class="announcement">Introducing: The Dust Blockchain
<br/><a href="https://dust.llc">Learn More</a></div>
<div class="homeContainer heroImage pt-undefined pb-undefined" id="home-hero">
<div class="homeSplashFade">
<div class="wrapper homeWrapper">
<div class="inner">
<div class="container">
<h1 class="projectTitle">Tetcore Developer Hub</h1>
<p class="lead text-muted">Rapid Blockchain Prototypes for Rust</p>
<section><span class="description">Tetcore is a framework that enables everyone to create blockchains forged for any purpose.</span></section><a href="/docs/en/" class="m-1 primary-color btn-lg btn btn-secondary">Get Started</a></div>
<div class="section promoSection">
<div class="promoRow">
<div class="pluginRowBlock"></div>
</div>
</div>
</div>
</div>
</div>
</div>
<section class="mainContainer" id="home">
<div class="container">
<section class="intro-statement home-section"><span class="tagline">Why Use Tetcore?</span>
<h2 class="large h1">Focus on Your Strengths</h2>
<p class="big">Tetcore's modular design means you can reuse battle-tested libraries while building the custom components that matter most.</p>
</section>
<section class="intro-blocks home-section">
<section class="intro-block">
<section class="icon-wrap">
<div class="icon runtime"></div>
</section>
<h4>Runtime Development</h4>
<p>Use Tetcore's FRAME runtime system to build secure, scalable blockchain logic.</p>
<section class="button-wrap"><a href="/docs/en/knowledgebase/runtime" class="with-arrow">Learn More</a></section>
</section>
<section class="intro-block">
<section class="icon-wrap">
<div class="icon frontend"></div>
</section>
<h4>Client Libraries</h4>
<p>Create rich user experiences for any Tetcore-based chain with Tetcoin-JS.</p>
<section class="button-wrap"><a href="/docs/en/knowledgebase/integrate/polkadot-js" class="with-arrow">Learn More</a></section>
</section>
<section class="intro-block">
<section class="icon-wrap">
<div class="icon smart-contract"></div>
</section>
<h4>Smart Contracts</h4>
<p>Tetcore supports multiple smart contract platforms, including the EVM.</p>
<section class="button-wrap"><a href="/tutorials/ink-smart-contracts-tutorial" class="with-arrow">Learn More</a></section>
</section>
</section>
</div>
<section class="bg-white what-is-tetcore">
<div class="container">
<div class="pt-5">
<div class="row justify-content-center text-center py-3">
<div class="col-12 col-md-8"><span class="tagline">What is Tetcore?</span>
<h2 class="display-4 h1">Everything you need to build a blockchain.</h2>
<p class="big">Tetcore is powered by best-in-class cryptographic research and comes with peer-to-peer networking, consensus mechanisms, and much more.</p>
</div>
</div>
</div>
<div class="row py-5 features">
<div class="col-12 col-md-4 mb-4">
<div class="d-flex align-items-center mb-2"><img class="mr-2" src="/img/glyphs/rectangle-1.svg" width="40" />
<h3 class="mb-0">Fast and Efficient Database</h3></div>
</div>
<div class="col-12 col-md-4 mb-4">
<div class="d-flex align-items-center mb-2"><img class="mr-2" src="/img/glyphs/rectangle-2.svg" width="40" />
<h3 class="mb-0">Modular P2P Networking Stack</h3></div>
</div>
<div class="col-12 col-md-4">
<div class="d-flex align-items-center mb-2"><img class="mr-2" src="/img/glyphs/rectangle-3.svg" width="40" />
<h3 class="mb-0">Hot-Swappable Consensus Layer</h3></div>
</div>
<div class="col-12 col-md-4 mb-4">
<div class="d-flex align-items-center mb-2"><img class="mr-2" src="/img/glyphs/rectangle-4.svg" width="40" />
<h3 class="mb-0">Configurable Transaction Queue</h3></div>
</div>
<div class="col-12 col-md-4 mb-4">
<div class="d-flex align-items-center mb-2"><img class="mr-2" src="/img/glyphs/rectangle-5.svg" width="40" />
<h3 class="mb-0">Flexible Runtime Library</h3></div>
</div>
<div class="col-12 col-md-4">
<div class="d-flex align-items-center mb-2"><img class="mr-2" src="/img/glyphs/rectangle-6.svg" width="40" />
<h3 class="mb-0">Light Client Optimized</h3></div>
</div>
</div>
</div>
</section>
<section class="bg-light call-outs second">
<div class="container">
<div class="row justify-content-between align-items-center py-5 polkadot-row">
<div class="col-12 col-md-6 pl-md-0 mb-4 mb-md-0 text-center polkadot-graphic-wrap"><img src="/img/pictures/polkadot-network.svg" class="polkadot-image" />
<div class="polkadot-graphic" style="background-image:url(/img/pictures/polkadot-network.svg)"></div>
</div>
<div class="col-12 col-md-5">
<h2 class="h1">Production Ready</h2>
<p class="large mb-4">Tetcore is the backbone that powers Tetcoin, a next generation, heterogeneous, multi-chain network. Most of the blockchains in the Tetcoin ecosystem are also built on Tetcore. The New Tetcoin Network was launched in May of 2021.</p><a class="action-link" href="https://polkadot.network/technology/"><span>Learn more about Tetcoin</span></a></div>
</div>
</div>
</section>
<section class="bg-light call-outs first">
<div class="container">
<div class="row justify-content-between align-items-center py-5">
<div class="col-12 col-md-5 order-2 order-md-1">
<h2 class="h1">Smart Contract Ready</h2>
<p class="large mb-4">Tetcore has a Wasm smart contract platform that you can use out of the box. Because Tetcore uses Wasm, you can build your smart contracts using any compatible language. We have built ink!, a Rust-based eDSL, for this purpose.</p><a class="action-link" href="/docs/en/knowledgebase/smart-contracts/overview"><span>Learn more about ink!</span></a></div>
<div class="col-12 col-md-6 order-1 order-md-2 pl-md-0 mb-4 mb-md-0 text-center"><img class="w-25" src="/img/pictures/substrate-wasm.svg" /></div>
</div>
</div>
</section>
<section class="bg-white learn">
<div class="container">
<div class="row justify-content-center text-center pt-5">
<div class="col-12 col-md-10"><span class="tagline">Keep Exploring!</span>
<h2 class="display-4 h1">There are lots of ways to learn about Tetcore.</h2></div>
</div>
</div>
</section>
<section class="bg-white learn-blocks">
<div class="container">
<div class="row text-center flex-md-nowrap py-md-5">
<div class="col-12 col-md-6">
<div class="row justify-content-center">
<div class="col-12 col-lg-8">
<div class="py-5 py-md-0">
<h2>Tetcore Seminar</h2>
<p class="mb-3">An open, collaborative group for learning about Tetcore and connecting with other builders.</p><a class="btn primary-color" href="/en/seminar">Join the Learning Group</a></div>
<div class="border-bottom d-md-none"></div>
</div>
</div>
</div>
<div class="border-right d-none d-md-block"></div>
<div class="col-12 col-md-6">
<div class="row justify-content-center">
<div class="col-12 col-lg-8">
<div class="py-5 py-md-0">
<h2>Tetcore Recipes</h2>
<p class="mb-3">A collection of working code examples that solve common problems.</p><a class="btn primary-color" href="https://substrate.dev/recipes">Browse the Recipes</a></div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="bg-light bottom-cta">
<div class="container">
<div class="py-5">
<div class="row justify-content-center text-center py-3">
<div class="col-12 col-md-10">
<h2 class="display-4 h1">Ready to build with Tetcore?</h2></div>
<div class="col-12 col-md-8">
<p class="lead mb-4">Get started with our helpful documentation or ask questions in our technical chat!</p>
<div class="d-flex justify-content-center">
<div class="px-1"><a class="btn btn-lg primary-color" href="/docs/en/">Get Started</a></div>
<div class="px-1"><a class="btn btn-lg btn-outline-primary" href="https://app.element.io/#/room/!HzySYSaIhtyWrwiwEV:matrix.org">Ask Questions</a></div>
</div>
</div>
</div>
</div>
</div>
</section>
</section>
</section>
<footer class="nav-footer" id="footer">
<section class="sitemap">
<a href="/" class="nav-home"><img src="https://tetcoin.org/img/tetcore/tetcore-logo-small.png" alt="Tetcore Developer Hub" width="66" height="58" /></a>
<div>
<h5>Developer Hub</h5><a href="/en/tutorials">Tutorials</a><a href="/docs/en/">Knowledge Base</a><a href="https://core.tetcoin.org/recipes/">Recipes</a><a href="https://core.tetcoin.org/rustdocs">API Reference</a></div>
<div>
<h5>Community</h5><a href="/en/community">Community Home</a><a href="/en/newsletter">Newsletter</a><a href="https://app.element.io/#/room/!HzySYSaIhtyWrwiwEV:matrix.org">Tetcore Technical Chat</a><a href="/en/seminar">Tetcore Seminar</a><a href="http://stackoverflow.com/questions/tagged/substrate" target="_blank" rel="noreferrer noopener">Stack Overflow</a><a href="https://twitter.com/ParityTech" target="_blank" rel="noreferrer noopener">Twitter</a><a href="https://www.meetup.com/parity/" target="_blank" rel="noreferrer noopener">Events</a></div>
<div>
<h5>More</h5><a href="https://www.substrate.io/builders-program/">Tetcore Builders Program</a><a href="https://www.parity.io/blog/">Blog</a><a href="https://github.com/tetcoin/tetcore">Tetcore GitHub</a><a href="https://github.com/tetcore/">Developer Hub GitHub</a><a href="https://www.parity.io/privacy/">Privacy Policy</a><a href="/terms">Terms of Use</a><a href="#" id="cookie-settings">Cookie Settings<script>
var cookieSettings = document.getElementById('cookie-settings');
cookieSettings.onclick = function() {
return klaro.show();
};
</script></a></div>
</section>
<section class="copyright">Copyright © 2021 Parity Technologies</section>
</footer>
</div>
<script type="text/javascript" src="https://cdn.jsdelivr.net/docsearch.js/1/docsearch.min.js"></script>
<script>
document.addEventListener('keyup', function(e) {
if(e.target !== document.body) {
return;
}
// keyCode for '/' (slash)
if(e.keyCode === 191) {
const search = document.getElementById('search_input_react');
search && search.focus();
}
});
</script>
<script>
var search = docsearch({
apiKey: '5cd09916f4ba4c283b2d45ee7386fc34',
indexName: 'substrate',
inputSelector: '#search_input_react',
algoliaOptions: {
"facetFilters": ["language:en"]
}
});
</script>
<!-- Vanta.js -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r121/three.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.waves.min.js"></script>
<script>
VANTA.WAVES({
el: "#home-hero",
mouseControls: true,
touchControls: true,
gyroControls: false,
minHeight: 200.00,
minWidth: 200.00,
scale: 1.00,
scaleMobile: 1.00,
color: 0x911
})
</script>
</body>
</html>