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
The `body` for jetton transfers is based on the ([TEP-74](https://github.com/ton-blockchain/TEPs/blob/master/text/0074-jettons-standard.md#1-transfer)) standard. Please note that the number of decimals can vary between different tokens: for example, USDT uses 6 decimals (1 USDT = 1 × 10<sup>6</sup>
441
-
), while typically jettons and Toncoin uses 9 decimals(1 TON = 1 × 10<sup>9</sup>).
440
+
The `body` for jetton transfers is based on the ([TEP-74](https://github.com/ton-blockchain/TEPs/blob/master/text/0074-jettons-standard.md#1-transfer)) standard. Please note that the number of decimals can vary between different tokens: for example, USDT uses 6 decimals (1 USDT = 1 × 10<sup>6</sup>), while typically jettons and Toncoin uses 9 decimals (1 TON = 1 × 10<sup>9</sup>).
442
441
443
442
444
443
:::info
@@ -676,8 +675,8 @@ await jetton.send(
676
675
677
676
The `messageBody` for jetton transfer([TEP-74](https://github.com/ton-blockchain/TEPs/blob/master/text/0074-jettons-standard.md#1-transfer)) with comment we should additionally to the regular transfer `body` serialize comment and pack this in the `forwardPayload`. Please note that the number of decimals can vary between different tokens:
678
677
679
-
- 9 decimals: `1 TON = 1 * 10 ** 9` typically for various jettons and always for Toncoin
680
-
- 6 decimals: `1 USDT = 1 * 10 ** 6` specific jettons, like USDT
678
+
- 9 decimals: 1 TON = 1 × 10<sup>9</sup> typically for various jettons and always for Toncoin
679
+
- 6 decimals: 1 USDT = 1 × 10<sup>6</sup> specific jettons, like USDT
The `body` for jetton burn is based on the ([TEP-74](https://github.com/ton-blockchain/TEPs/blob/master/text/0074-jettons-standard.md#1-transfer)) standard. Please note that the number of decimals can vary between different tokens:
888
887
889
-
- 9 decimals: `1 TON = 1 * 10 ** 9` typically for various jettons and always for Toncoin
890
-
- 6 decimals: `1 USDT = 1 * 10 ** 6` specific jettons, like USDT
888
+
- 9 decimals: 1 TON = 1 × 10<sup>9</sup> typically for various jettons and always for Toncoin
889
+
- 6 decimals: 1 USDT = 1 × 10<sup>6</sup> specific jettons, like USDT
891
890
892
891
893
892
@@ -1560,7 +1559,7 @@ Learn more about [TON Smart Contract Addresses](/v3/documentation/smart-contract
1560
1559
1561
1560
### Jetton transfer
1562
1561
1563
-
Example of function for building jetton transfer transaction. Please note that the number of decimals can vary between different tokens: for example, USDT uses 6 decimals (1 USDT = 1 \* 10\*\* 6), while TON uses 9 decimals(1 TON = 1 \* 10\*\* 9).
1562
+
Example of function for building jetton transfer transaction. Please note that the number of decimals can vary between different tokens: for example, USDT uses 6 decimals (1 USDT = 1 × 10<sup>6</sup>), while TON uses 9 decimals(1 TON = 1 × 10<sup>9</sup>).
1564
1563
1565
1564
```python
1566
1565
from pytoniq_core import begin_cell
@@ -1611,7 +1610,7 @@ transaction = {
1611
1610
1612
1611
### Jetton burn
1613
1612
1614
-
Example of function for building jetton burn transaction. Please note that the number of decimals can vary between different tokens: for example, USDT uses 6 decimals (1 USDT = 1 \* 10\*\* 6), while TON uses 9 decimals(1 TON = 1 \* 10\*\* 9).
1613
+
Example of function for building jetton burn transaction. Please note that the number of decimals can vary between different tokens: for example, USDT uses 6 decimals (1 USDT = 1 × 10<sup>6</sup>), while TON uses 9 decimals(1 TON = 1 × 10<sup>9</sup>).
1615
1614
1616
1615
```python
1617
1616
from pytoniq_core import begin_cell
@@ -1929,7 +1928,7 @@ if err != nil {
1929
1928
1930
1929
### Jetton transfer
1931
1930
1932
-
Example of function for jetton transfer message. Please note that the number of decimals can vary between different tokens: for example, USDT uses 6 decimals (1 USDT = 1 \* 10\*\* 6), while TON uses 9 decimals(1 TON = 1 \* 10\*\* 9).
1931
+
Example of function for jetton transfer message. Please note that the number of decimals can vary between different tokens: for example, USDT uses 6 decimals (1 USDT = 1 × 10<sup>6</sup>), while TON uses 9 decimals(1 TON = 1 × 10<sup>9</sup>).
1933
1932
1934
1933
```go
1935
1934
import (
@@ -1991,7 +1990,7 @@ if err != nil {
1991
1990
1992
1991
### Jetton burn
1993
1992
1994
-
Example of function for jetton burn message. Please note that the number of decimals can vary between different tokens: for example, USDT uses 6 decimals (1 USDT = 1 \* 10\*\* 6), while TON uses 9 decimals(1 TON = 1 \* 10\*\* 9).
1993
+
Example of function for jetton burn message. Please note that the number of decimals can vary between different tokens: for example, USDT uses 6 decimals (1 USDT = 1 × 10<sup>6</sup>), while TON uses 9 decimals(1 TON = 1 × 10<sup>9</sup>).
0 commit comments