tact-docs icon indicating copy to clipboard operation
tact-docs copied to clipboard

Tact main documentation

Results 118 tact-docs issues
Sort by recently updated
recently updated
newest added
trafficstars

Like #115, but for Traits. * Differences with contracts: * no `init()`, that's only for contracts * keywords: `virtual` and `abstract` (in trait) and `override` (in contract) * `@interface` —...

has dependency
tact-docs: Book

It needs: * Better formatting * More throrough description of attributes (`extends`, `mutates`, etc.) * Mention of `receive()`, `external()`, `bounced()` with links to relevant pages Will resolve #129.

section: Book

* Middleware and routing should enable language switching (`next.config.js` + new `middleware.js` in the root) * All the pages should get their empty Chinese counterparts, so that Chinese translators may...

i18n

Add one section about debugging contracts in general Add the `dump` function to the reference of static available functions

section: Book
priority: high

Anti-patterns: - [ ] on-chain string parsing from a human-friendly format into a machine-readable binary structure -- a dapp frontend should do that and only communicate with its smart contracts...

help wanted
tutorial

Related issue: #146 Also, it would be nice to have an example of adding liquidity (as suggested by @Gusarich)

help wanted
tact-docs: Cookbook

Related issue: #149 Also, it would be nice to have an example of adding liquidity (as suggested by @Gusarich)

help wanted
tact-docs: Cookbook

What if the incoming funds are excessive and we want to refund the excess back? (The docs never mention the word "refund")

bug
tact-docs: Book

What happens if I try to use recursion in contract methods, standalone functions or getters? The answer should include mutual recursion too.

tact-docs: Book

For instance, if I have something like this: ```tact fun foo() { ... } fun bar() { ... } ``` `bar` should be able to refer to `foo`, but can...