Skip to content

Commit afb3b96

Browse files
committed
update links
1 parent 0367db0 commit afb3b96

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

text/0062-nft-standard.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ TL-B schema of inbound message:
131131
`collection_address` - (MsgAddress) address of the smart contract of the collection to which this NFT belongs. For collection-less NFT this parameter should be addr_none;
132132
`owner_address` - (MsgAddress) address of the current owner of this NFT.
133133
`individual_content` - if NFT has collection - individual NFT content in any format;
134-
if NFT has no collection - NFT content in format that complies with standard [TIP-64](https://github.com/ton-blockchain/TIPs/issues/64).
134+
if NFT has no collection - NFT content in format that complies with standard [TEP-64](https://github.com/ton-blockchain/TEPs/blob/master/text/0064-token-data-standard.md).
135135

136136
## NFT Collection smart contract
137137
It is assumed that the smart contract of the collection deploys smart contracts of NFT items of this collection.
@@ -141,12 +141,12 @@ Must implement:
141141
### Get-methods
142142
1. `get_collection_data()` returns `(int next_item_index, cell collection_content, slice owner_address)`
143143
`next_item_index` - the count of currently deployed NFT items in collection. Generally, collection should issue NFT with sequential indexes (see Rationale(2) ). `-1` value of `next_item_index` is used to indicate non-sequential collections, such collections should provide their own way for index generation / item enumeration.
144-
`collection_content` - collection content in a format that complies with standard [TIP-64](https://github.com/ton-blockchain/TIPs/issues/64).
144+
`collection_content` - collection content in a format that complies with standard [TEP-64](https://github.com/ton-blockchain/TEPs/blob/master/text/0064-token-data-standard.md).
145145
`owner_address` - collection owner address, zero address if no owner.
146146
2. `get_nft_address_by_index(int index)` returns `slice address`
147147
Gets the serial number of the NFT item of this collection and returns the address (MsgAddress) of this NFT item smart contract.
148148
3. `get_nft_content(int index, cell individual_content)` returns `cell full_content`
149-
Gets the serial number of the NFT item of this collection and the individual content of this NFT item and returns the full content of the NFT item in format that complies with standard [TIP-64](https://github.com/ton-blockchain/TIPs/issues/64).
149+
Gets the serial number of the NFT item of this collection and the individual content of this NFT item and returns the full content of the NFT item in format that complies with standard [TEP-64](https://github.com/ton-blockchain/TEPs/blob/master/text/0064-token-data-standard.md).
150150
As an example, if an NFT item stores a metadata URI in its content, then a collection smart contract can store a domain (e.g. "https://site.org/"), and an NFT item smart contract in its content will store only the individual part of the link (e.g "kind-cobra").
151151
In this example the `get_nft_content` method concatenates them and return "https://site.org/kind-cobra".
152152

@@ -213,7 +213,7 @@ None
213213
# Standard extensions
214214
The functionality of the basic NFT standard can be extended:
215215

216-
* [NFTRoyalty](https://github.com/ton-blockchain/TIPs/issues/66)
216+
* [NFTRoyalty](https://github.com/ton-blockchain/TEPs/blob/master/text/0066-nft-royalty-standard.md)
217217
* [NFTBounceable (Draft)](https://github.com/ton-blockchain/TIPs/issues/67)
218218
* [NFTEditable (Draft)](https://github.com/ton-blockchain/TIPs/issues/68)
219219
* [NFTUpgradable (Draft)](https://github.com/ton-blockchain/TIPs/issues/69)

text/0064-token-data-standard.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
# Summary
1111

12-
A standard interface for tokens (meta)data (in particular [NFT](https://github.com/ton-blockchain/TIPs/issues/62) or [Jettons](https://github.com/ton-blockchain/TIPs/issues/74)).
12+
A standard interface for tokens (meta)data (in particular [NFT](https://github.com/ton-blockchain/TEPs/blob/master/text/0062-nft-standard.md) or [Jettons](https://github.com/ton-blockchain/TEPs/blob/master/text/0074-jettons-standard.md)).
1313

1414
# Motivation
1515

text/0066-nft-royalty-standard.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
# Summary
1111

12-
Extension for [NFT Standard](https://github.com/ton-blockchain/TIPs/issues/62).
12+
Extension for [NFT Standard](https://github.com/ton-blockchain/TEPs/blob/master/text/0062-nft-standard.md).
1313

1414
A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal support for royalty payments across all NFT marketplaces and ecosystem participants.
1515

text/0074-jettons-standard.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ burn#595f07bc query_id:uint64 amount:(VarUInteger 16)
148148
`total_supply` - (integer) - the total number of issues jettons
149149
`mintable` - (-1/0) - flag which indicates whether number of jettons can increase
150150
`admin_address` - (MsgAddressInt) - address of smart-contrac which control Jetton
151-
`jetton_content` - cell - data in accordance to [Token Data Standard #64](https://github.com/ton-blockchain/TIPs/issues/64)
151+
`jetton_content` - cell - data in accordance to [Token Data Standard #64](https://github.com/ton-blockchain/TEPs/blob/master/text/0064-token-data-standard.md)
152152
`jetton_wallet_code` - cell - code of wallet for that jetton
153153
2. `get_wallet_address(slice owner_address)` return `slice jetton_wallet_address`
154154
Returns jetton wallet address (MsgAddressInt) for this owner address (MsgAddressInt).
@@ -219,7 +219,7 @@ There is no way to get actual wallet balance onchain, because when the message w
219219

220220
# Rationale and alternatives
221221

222-
Distributed architecture "One wallet - one contract" well described in the NFT standard in paragraph "Rationale".
222+
Distributed architecture "One wallet - one contract" well described in the [NFT standard](https://github.com/ton-blockchain/TEPs/blob/master/text/0062-nft-standard.md#rationale-and-alternatives) in paragraph "Rationale".
223223

224224
# Prior art
225225

0 commit comments

Comments
 (0)