Skip to content

Commit

Permalink
fix: suggestions from the code review
Browse files Browse the repository at this point in the history
  • Loading branch information
novusnota committed Jan 14, 2025
1 parent 2ad6e85 commit 33a2ea7
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion docs/src/content/docs/book/compile.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { Badge } from '@astrojs/starlight/components';

:::note

This page is still being written as per [#1136](https://github.com/tact-lang/tact-docs/issues/1136).
This page is still being written as per [#1136](https://github.com/tact-lang/tact/issues/1136).

:::

Expand Down Expand Up @@ -56,6 +56,18 @@ Signature: `StdAddress{workchain:int8,address:uint256}`
...etc.
```

[TL-B schema][tlb] of each [Message][message] contains its opcode, which is handy for looking up the auto-generated opcodes as well as confirming the [manually provided ones](/book/structs-and-messages#message-opcodes). For example:

```md
## Deploy
TL-B: `deploy#946a98b6 queryId:uint64 = Deploy`
Signature: `Deploy{queryId:uint64}`

## Seven
TL-B: `seven#00000007 = Seven`
Signature: `Seven{}`
```

#### Get methods {#getters}

This section specifies the number of available get methods or [getter functions](/book/functions#getter-functions) and outlines them with their argument names, if any.
Expand Down

0 comments on commit 33a2ea7

Please sign in to comment.