Skip to content

Commit db61ef4

Browse files
authored
feat(docs): add documentation for basechain address related struct and functions (#2411)
- `BasechainAddress` - `emptyBasechainAddress` - `newBasechainAddress` - `contractBasechainAddress` - `storeBasechainAddress` - add entry to CHANGELOG.md for 1.6.0
1 parent 725536e commit db61ef4

File tree

3 files changed

+102
-1
lines changed

3 files changed

+102
-1
lines changed

dev-docs/CHANGELOG.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2020
- Removed the "gas-expensive" badge from `checkSignature()` and `checkDataSignature()` functions and added a caution note when they do become expensive (from 11th call): PR [#2380](https://github.com/tact-lang/tact/pull/2380)
2121
- Fixed descriptions of `Slice.asString()` and `String.asSlice()` functions: PR [#2391](https://github.com/tact-lang/tact/pull/2391)
2222
- Split Core libraries in the reference: `core-common` and `core-advanced` were removed, and their contents distributed across other libraries; `core-crypto`, `core-contextstate`, `core-send`, `core-gas`, and `core-addresses` were introduced: PR [#2391](https://github.com/tact-lang/tact/pull/2391)
23+
- Added documentation for `BasechainAddress`, `emptyBasechainAddress`, `newBasechainAddress`, `contractBasechainAddress`, `Builder.storeBasechainAddress`: PR [#2411](https://github.com/tact-lang/tact/pull/2411)
2324

2425
### Release contributors
2526

2627
- [Novus Nota](https://github.com/novusnota)
2728
- [Anton Trunov](https://github.com/anton-trunov)
2829
- [Maksim Lagus](https://github.com/Kaladin13)
30+
- [Petr Makhnev](https://github.com/i582)
2931

3032
## [1.6.3] - 2025-03-12
3133

@@ -183,7 +185,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
183185
- Added new functions in stdlib: `Builder.depth`, `Slice.skipLastBits`, `Slice.firstBits`, `Slice.lastBits`, `Slice.depth`, `Cell.computeDataSize`, `Slice.computeDataSize`, `Cell.depth`, `curLt`, `blockLt`, `setGasLimit`, `getSeed`, `setSeed`, `myCode`, `sign`, `divc`, `muldivc`, `mulShiftRight`, `mulShiftRightRound`, `mulShiftRightCeil`, `sqrt`, `Slice.loadMaybeRef`, `Slice.preloadMaybeRef`: PR [#986](https://github.com/tact-lang/tact/pull/986), PR [#2040](https://github.com/tact-lang/tact/pull/2040)
184186
- Added new functions `Slice.asAddress`, `Slice.asAddressUnsafe` and `contractHash`: PR [#1766](https://github.com/tact-lang/tact/pull/1766)
185187
- Added new functions `throwIf` and `throwUnless` and deprecated their aliases `nativeThrowIf` and `nativeThrowUnless`: PR [#1974](https://github.com/tact-lang/tact/pull/1974)
186-
- Added the `BasechainAddress` type as a more optimized version of the `Address` type: PR [#2035](https://github.com/tact-lang/tact/pull/2035)
188+
- Added the `BasechainAddress` type as a more optimized version of the `Address` type. And also the `emptyBasechainAddress`, `newBasechainAddress`, `contractBasechainAddress`, `Builder.storeBasechainAddress` functions: PR [#2035](https://github.com/tact-lang/tact/pull/2035)
187189
- Added the `Slice.hashData()` and `String.hashData()` functions: PR [#2039](https://github.com/tact-lang/tact/pull/2039)
188190
- Optimized the `emptyCell()` and `emptySlice()` functions: PR [#1696](https://github.com/tact-lang/tact/pull/1696)
189191
- The `Int.toString` function now consumes up to 64% less gas: PR [#1837](https://github.com/tact-lang/tact/pull/1837)

docs/src/content/docs/ref/core-addresses.mdx

+74
Original file line numberDiff line numberDiff line change
@@ -334,6 +334,80 @@ let community: Address = address("UQDpXLZKrkHsOuE_C1aS69C697wE568vTnqSeRfBXZfvmV
334334
let fizz: String = community.toString();
335335
```
336336

337+
## BasechainAddress
338+
339+
<Badge text="Available since Tact 1.6" variant="tip" size="medium"/><p/>
340+
341+
```tact
342+
struct BasechainAddress {
343+
hash: Int?;
344+
}
345+
```
346+
347+
Struct representing a basechain address.
348+
349+
A basechain address (workchain $0$) can be either empty (null hash) or contain a 256-bit hash value.
350+
351+
## emptyBasechainAddress
352+
353+
<Badge text="Available since Tact 1.6" variant="tip" size="medium"/><p/>
354+
355+
```tact
356+
inline fun emptyBasechainAddress(): BasechainAddress;
357+
```
358+
359+
Creates and returns an empty basechain address with a null hash.
360+
361+
When serialized, an empty basechain address is represented as `addr_none`.
362+
363+
Usage example:
364+
365+
```tact
366+
fun example() {
367+
let emptyAddr: BasechainAddress = emptyBasechainAddress();
368+
emptyAddr.hash == null; // true
369+
}
370+
```
371+
372+
## newBasechainAddress
373+
374+
<Badge text="Available since Tact 1.6" variant="tip" size="medium"/><p/>
375+
376+
```tact
377+
inline fun newBasechainAddress(hash: Int): BasechainAddress;
378+
```
379+
380+
Creates and returns a new basechain address with the specified hash value.
381+
382+
Usage example:
383+
384+
```tact
385+
fun example() {
386+
let addr: BasechainAddress = newBasechainAddress(0x83dfd552e63729b472fcbcc8c45ebcc6691702558b68ec7527e1ba403a0f31a8);
387+
}
388+
```
389+
390+
## contractBasechainAddress
391+
392+
<Badge text="Available since Tact 1.6" variant="tip" size="medium"/><p/>
393+
394+
```tact
395+
inline fun contractBasechainAddress(s: StateInit): BasechainAddress;
396+
```
397+
398+
Creates and returns a basechain address derived from a contract's `StateInit` (code and data).
399+
400+
Usage example:
401+
402+
```tact
403+
fun example() {
404+
let code: Cell = loadCell(); // load contract code
405+
let data: Cell = loadCell(); // load contract data
406+
let state: StateInit = StateInit { code, data };
407+
let addr: BasechainAddress = contractBasechainAddress(state);
408+
}
409+
```
410+
337411
[p]: /book/types#primitive-types
338412
[bool]: /book/types#booleans
339413
[int]: /book/integers

docs/src/content/docs/ref/core-cells.mdx

+25
Original file line numberDiff line numberDiff line change
@@ -468,6 +468,31 @@ let b: Builder = beginCell();
468468
let fizz: Builder = b.storeAddress(myAddress());
469469
```
470470

471+
### Builder.storeBasechainAddress
472+
473+
<Badge text="Available since Tact 1.6" variant="tip" size="medium"/><p/>
474+
475+
```tact
476+
extends fun storeBasechainAddress(self: Builder, address: BasechainAddress): Builder;
477+
```
478+
479+
Extension function for the [`Builder{:tact}`][builder] type.
480+
481+
Stores the basechain `address` in the copy of the [`Builder{:tact}`][builder] and returns that copy.
482+
483+
If the address has a `null` hash, stores $0b00$ (`addr_none`).
484+
Otherwise, store the full address with prefix $0b100$ followed by workchain ($0$) and the 256-bit hash.
485+
486+
Usage example:
487+
488+
```tact
489+
fun example() {
490+
let addr: BasechainAddress = newBasechainAddress(0x83dfd552e63729b472fcbcc8c45ebcc6691702558b68ec7527e1ba403a0f31a8);
491+
let b: Builder = beginCell();
492+
let b2: Builder = b.storeBasechainAddress(addr);
493+
}
494+
```
495+
471496
### Builder.storeRef
472497

473498
```tact

0 commit comments

Comments
 (0)