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**9), while TON uses 9 decimals(1 TON = 1 * 10**9).
436
+
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\*\* 6), while TON uses 9 decimals(1 TON = 1 \* 10\*\*9).
437
437
438
438
:::info
439
439
You can use `assets-sdk` library with the methods out of the box (even with `ton-connect`)
@@ -668,7 +668,7 @@ await jetton.send(
668
668
<TabsgroupId="Jetton Transfer with Comment">
669
669
<TabItemvalue="@ton/ton"label="@ton/ton">
670
670
671
-
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: for example, USDT uses 6 decimals (1 USDT = 1 * 10**9), while TON uses 9 decimals(1 TON = 1 * 10**9).
671
+
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: for example, USDT uses 6 decimals (1 USDT = 1 \* 10\*\* 6), while TON uses 9 decimals(1 TON = 1 \* 10\*\*9).
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: for example, USDT uses 6 decimals (1 USDT = 1 * 10**9), while TON uses 9 decimals(1 TON = 1 * 10**9).
878
+
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: for example, USDT uses 6 decimals (1 USDT = 1 \* 10\*\* 6), while TON uses 9 decimals(1 TON = 1 \* 10\*\*9).
879
879
880
880
881
881
```js
@@ -1547,7 +1547,7 @@ Learn more about [TON Smart Contract Addresses](/v3/documentation/smart-contract
1547
1547
1548
1548
### Jetton Transfer
1549
1549
1550
-
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**9), while TON uses 9 decimals(1 TON = 1 * 10**9).
1550
+
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).
1551
1551
1552
1552
```python
1553
1553
from pytoniq_core import begin_cell
@@ -1598,7 +1598,7 @@ transaction = {
1598
1598
1599
1599
### Jetton Burn
1600
1600
1601
-
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**9), while TON uses 9 decimals(1 TON = 1 * 10**9).
1601
+
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).
1602
1602
1603
1603
```python
1604
1604
from pytoniq_core import begin_cell
@@ -1916,7 +1916,7 @@ if err != nil {
1916
1916
1917
1917
### Jetton Transfer
1918
1918
1919
-
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**9), while TON uses 9 decimals(1 TON = 1 * 10**9).
1919
+
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).
1920
1920
1921
1921
```go
1922
1922
import (
@@ -1978,7 +1978,7 @@ if err != nil {
1978
1978
1979
1979
### Jetton Burn
1980
1980
1981
-
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**9), while TON uses 9 decimals(1 TON = 1 * 10**9).
1981
+
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).
0 commit comments