Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(WIP / DRAFT!): web versions of some of the whitepapers #2341

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion dev-docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Docs

- Add descriptions for `&&=`, `||=`, `>>=` and `<<=` augmented assignment operators: PR [#2328](https://github.com/tact-lang/tact/pull/2328)
- Added descriptions for `&&=`, `||=`, `>>=` and `<<=` augmented assignment operators: PR [#2328](https://github.com/tact-lang/tact/pull/2328)
- Converted some of the TON whitepapers to `.mdx` and added a new Whitepapers section: PR [#TBD](https://github.com/tact-lang/tact/pull/TBD)

### Release contributors

Expand Down
11 changes: 11 additions & 0 deletions docs/astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -299,6 +299,17 @@ export default defineConfig({
{ slug: 'ecosystem/misti' },
],
},
{
label: 'Whitepapers',
translations: {
'zh-CN': '白皮书',
},
items: [
{ slug: 'whitepapers' },
{ slug: 'whitepapers/tvm' },
// { slug: 'whitepapers/tblkch' }, // TODO
],
},
{
label: '⭐ Awesome Tact →',
link: 'https://github.com/tact-lang/awesome-tact',
Expand Down
25 changes: 25 additions & 0 deletions docs/src/content/docs/whitepapers/index.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
title: Whitepapers
description: "Whitepapers section — a collection of official TON Blockchain whitepapers transformed for convenient online use."
---

import { CardGrid, LinkCard, Steps } from '@astrojs/starlight/components';

Welcome to the **Whitepapers** section — a collection of official TON Blockchain whitepapers transformed for convenient online use.

Here are its main contents:

<Steps>

1. #### TON Virtual Machine (TVM) {#tvm}

All smart contracts on TON are executed via TON Virtual Machine (TVM), a stack-oriented virtual machine that operates on distinct data types, such as cells or tuples.

<CardGrid>
<LinkCard
title="TON Virtual Machine (TVM)"
href="/whitepapers/tvm"
/>
</CardGrid>

</Steps>
Loading
Loading