You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: CHANGELOG.md
+1
Original file line number
Diff line number
Diff line change
@@ -25,6 +25,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
25
25
- Docs: layout of tables, syntax highlighting, Chinese translations of sidebar separators: PR [#916](https://github.com/tact-lang/tact/pull/916)
26
26
- Non-null struct fields after null ones are treated correctly in Sandbox tests after updating `@ton/core` to 0.59.0: PR [#933](https://github.com/tact-lang/tact/pull/933)
27
27
- Prevent inline code snippets from changing their background color: PR [#935](https://github.com/tact-lang/tact/pull/935)
28
+
- Docs: correctly handle next and previous page links at the bottom of the pages when there's a separator item in the sidebar: PR [#949](https://github.com/tact-lang/tact/pull/949)
Copy file name to clipboardexpand all lines: docs/src/content/docs/book/deploy.mdx
+3
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,9 @@
1
1
---
2
2
title: Deployment
3
3
description: "Common ways to deploy Tact contracts to testnet or mainnet of TON Blockchain"
4
+
prev:
5
+
link: /book/message-mode
6
+
label: Message mode
4
7
---
5
8
6
9
Tact Deployer is a small library that integrates with [TON Verifier](https://verifier.ton.org) that allows you to deploy your contracts safely using your favorite wallet without needing to manage keys or deploy contracts manually. Tact Deployer also automatically verifies your contract's source code and you can be sure that your compiler is not compromised.
Copy file name to clipboardexpand all lines: docs/src/content/docs/book/receive.mdx
+3
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,9 @@
1
1
---
2
2
title: Receive messages
3
3
description: "The most common type of messages is the internal message - a message sent from one contract to another"
4
+
prev:
5
+
link: /book/functions
6
+
label: Functions
4
7
---
5
8
6
9
TON is a distributed blockchain which means that communication between contracts is done by sending and receiving messages. The most common type of messages is the internal message - a message sent from one contract (or a wallet) to another.
Copy file name to clipboardexpand all lines: docs/src/content/docs/ecosystem/typescript.mdx
+3
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,9 @@
1
1
---
2
2
title: TypeScript libraries
3
3
description: "The compiler of Tact automatically generates wrapper code for use with @ton/ton and @ton/core libraries"
4
+
prev:
5
+
link: /ecosystem
6
+
label: Ecosystem overview
4
7
---
5
8
6
9
The Tact language has built-in support for the [@ton/ton](https://github.com/ton-org/ton) and [@ton/core](https://github.com/ton-org/ton-core) TypeScript libraries. The compiler automatically generates code for these libraries, so you can use [@tact-lang/emulator](https://github.com/tact-lang/tact-emulator) or [@ton/sandbox](https://github.com/ton-org/sandbox), that work on top of them.
Copy file name to clipboardexpand all lines: docs/src/content/docs/ref/core-base.mdx
+3
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,9 @@
1
1
---
2
2
title: Base trait
3
3
description: "Every contract and trait in Tact implicitly inherits the BaseTrait trait"
4
+
prev:
5
+
link: /ref/evolution/otp-006
6
+
label: "OTP-006: Contract Package"
4
7
---
5
8
6
9
Every [contract](/book/contracts) and [trait](/book/types#traits) in Tact implicitly [inherits](/book/contracts#traits) the `BaseTrait{:tact}` trait, which contains a number of the most useful [internal functions](/book/contracts#internal-functions) for any kind of contract, and a constant `self.storageReserve{:tact}` aimed at advanced users of Tact.
Copy file name to clipboardexpand all lines: docs/src/content/docs/ref/standard-libraries.mdx
+3
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,9 @@
1
1
---
2
2
title: Standard libraries overview
3
3
description: "Some libraries come bundled with Tact compiler, but aren't automatically included to your project until explicitly made to"
4
+
prev:
5
+
link: /ref/core-advanced
6
+
label: Advanced
4
7
---
5
8
6
9
Some libraries (also referred to as standard libraries or stdlibs) come bundled with Tact compiler, but aren't automatically included to your project until explicitly made to.
0 commit comments