Skip to content

Commit

Permalink
feat: link part of pages
Browse files Browse the repository at this point in the history
  • Loading branch information
a-bahdanau committed Oct 24, 2024
1 parent 27a4c71 commit d38a4da
Show file tree
Hide file tree
Showing 17 changed files with 1,223 additions and 1,242 deletions.
2 changes: 1 addition & 1 deletion docs/develop/dapps/README.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ Here are some key resources that you'll need throughout your DApp development jo
Working with assets? These guides cover the essentials:

- [Payments Processing](/v3/guidelines/dapps/asset-processing/payments-processing)
- [Token (Jetton) Processing](/develop/dapps/asset-processing/jettons)
- [Token (Jetton) Processing](/v3/guidelines/dapps/asset-processing/jettons)
- [Handling NFTs](/develop/dapps/asset-processing/nft)
- [Parsing Metadata](/v3/guidelines/dapps/asset-processing/nft-processing/metadata-parsing)

Expand Down
Binary file not shown.
1,206 changes: 0 additions & 1,206 deletions docs/develop/dapps/asset-processing/jettons.md

This file was deleted.

1 change: 1 addition & 0 deletions docs/develop/dapps/asset-processing/jettons.md
Binary file not shown.
4 changes: 2 additions & 2 deletions docs/v3/documentation/dapps/assets/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Smart contracts pay several types of [fees](/v3/documentation/smart-contracts/tr

TON has three types of digital assets.
- Toncoin, the main token of the network. It is used for all basic operations on the blockchain, for example, paying gas fees or staking for validation.
- Contract assets, such as tokens and NFTs, which are analogous to the ERC-20/ERC-721 standards and are managed by arbitrary contracts and thus can require custom rules for processing. You can find more info on it's processing in [process NFTs](/v3/guidelines/dapps/asset-processing/nft-processing/nfts) and [process Jettons](/develop/dapps/asset-processing/jettons) articles.
- Contract assets, such as tokens and NFTs, which are analogous to the ERC-20/ERC-721 standards and are managed by arbitrary contracts and thus can require custom rules for processing. You can find more info on it's processing in [process NFTs](/v3/guidelines/dapps/asset-processing/nft-processing/nfts) and [process Jettons](/v3/guidelines/dapps/asset-processing/jettons) articles.
- Native token, which is special kind of assets that can be attached to any message on the network. But these asset is currently not in use since the functionality for issuing new native tokens is closed.

## Interaction with TON blockchain
Expand All @@ -54,5 +54,5 @@ Basic operations on TON Blockchain can be carried out via TonLib. It is a shared

After reading this article you can check:
1. [Payments processing](/v3/guidelines/dapps/asset-processing/payments-processing) to get how to work with `TON coins`
2. [Jetton processing](/develop/dapps/asset-processing/jettons) to get how to work with `jettons` (sometime called `tokens`)
2. [Jetton processing](/v3/guidelines/dapps/asset-processing/jettons) to get how to work with `jettons` (sometime called `tokens`)
3. [NFT processing](/v3/guidelines/dapps/asset-processing/nft-processing/nfts) to get how to work with `NFT` (that is the special type of `jetton`)
6 changes: 3 additions & 3 deletions docs/v3/documentation/dapps/assets/usdt.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ import Button from '@site/src/components/button'

Stablecoins are a type of cryptocurrency whose value is 1:1 pegged to another asset, such as a fiat currency or gold, to maintain a stable price. Until recently, there was a jUSDT token, which is a wrapped ERC-20 from the Ethereum token bridged with <a href="https://bridge.ton.org" target="_blank">bridge.ton.org</a>. But on [18.04.2023](https://t.me/toncoin/824) the public launch of **native** USD₮ token issued by the company <a href="https://tether.to/en/" target="_blank">Tether</a> was happened. After launching USD₮, the jUSDT has moved to the second priority token but is still used in services as an alternative or addition to USD₮.

In TON Blockchain USD₮ supported as a [Jetton Asset](/develop/dapps/asset-processing/jettons).
In TON Blockchain USD₮ supported as a [Jetton Asset](/v3/guidelines/dapps/asset-processing/jettons).

:::info
To integrate Tether’s USD₮ Token on TON Blockchain use the contract address:
[EQCxE6mUtQJKFnGfaROTKOt1lZbDiiX1kCixRv7Nw2Id_sDs](https://tonviewer.com/EQCxE6mUtQJKFnGfaROTKOt1lZbDiiX1kCixRv7Nw2Id_sDs?section=jetton)
:::

<Button href="https://github.com/ton-community/assets-sdk" colorType="primary" sizeType={'sm'}>Assets SDK</Button>
<Button href="https://docs.ton.org/develop/dapps/asset-processing/jettons" colorType={'secondary'} sizeType={'sm'}>Jetton Processing</Button>
<Button href="https://docs.ton.org/v3/guidelines/dapps/asset-processing/jettons" colorType={'secondary'} sizeType={'sm'}>Jetton Processing</Button>
<Button href="https://github.com/ton-community/tma-usdt-payments-demo?tab=readme-ov-file#tma-usdt-payments-demo" colorType={'secondary'} sizeType={'sm'}>TMA USDT payments demo</Button>


Expand Down Expand Up @@ -46,7 +46,7 @@ TON’s high throughput and rapid confirmation times enable USD₮ transactions
:::caution IMPORTANT
In TON Blockchain Jettons can be created with duplicate names. Technically, it will not differ in any way from the real USD₮ but it will have no value because of no security. You can check it for fraud only by checking Jetton Master address.

See important [recommendations](/develop/dapps/asset-processing/jettons#jetton-wallet-processing).
See important [recommendations](/v3/guidelines/dapps/asset-processing/jettons#jetton-wallet-processing).
:::

## See Also
Expand Down
2 changes: 1 addition & 1 deletion docs/v3/documentation/dapps/defi/tokens.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ Check out the [TON Speed Run](https://tonspeedrun.com/) series, which includes N
## Jettons (Fungible Tokens)

### Guides
* [TON Jetton processing](/develop/dapps/asset-processing/jettons.md)
* [TON Jetton processing](/v3/guidelines/dapps/asset-processing/jettons.md)
* [TON Metadata Parsing](/v3/guidelines/dapps/asset-processing/nft-processing/metadata-parsing.md)

### Standards
Expand Down
2 changes: 1 addition & 1 deletion docs/v3/documentation/ton-documentation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ Getting Started

* [TON Connect](/v3/guidelines/ton-connect/overview) — integration and authentication for DApps.
* [Off-chain Payments Processing](/develop/dapps/asset-processing) — examples and concepts for processing payments.
* [TON Jetton processing](/develop/dapps/asset-processing/jettons) — examples and concepts for processing Jettons.
* [TON Jetton processing](/v3/guidelines/dapps/asset-processing/jettons) — examples and concepts for processing Jettons.
* [Fungible (FT) / Non-fungible (NFT) tokens](/v3/documentation/dapps/defi/tokens) — smart contracts, examples, tools

Take your first steps in DApps development with a comprehensive DApps building guide:
Expand Down
Loading

0 comments on commit d38a4da

Please sign in to comment.