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
Copy file name to clipboardExpand all lines: text/0062-nft-standard.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -131,7 +131,7 @@ TL-B schema of inbound message:
131
131
`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;
132
132
`owner_address` - (MsgAddress) address of the current owner of this NFT.
133
133
`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).
135
135
136
136
## NFT Collection smart contract
137
137
It is assumed that the smart contract of the collection deploys smart contracts of NFT items of this collection.
`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).
145
145
`owner_address` - collection owner address, zero address if no owner.
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).
150
150
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").
151
151
In this example the `get_nft_content` method concatenates them and return "https://site.org/kind-cobra".
152
152
@@ -213,7 +213,7 @@ None
213
213
# Standard extensions
214
214
The functionality of the basic NFT standard can be extended:
Copy file name to clipboardExpand all lines: text/0064-token-data-standard.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@
9
9
10
10
# Summary
11
11
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)).
Copy file name to clipboardExpand all lines: text/0066-nft-royalty-standard.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@
9
9
10
10
# Summary
11
11
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).
13
13
14
14
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.
`total_supply` - (integer) - the total number of issues jettons
149
149
`mintable` - (-1/0) - flag which indicates whether number of jettons can increase
150
150
`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)
152
152
`jetton_wallet_code` - cell - code of wallet for that jetton
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
219
219
220
220
# Rationale and alternatives
221
221
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".
0 commit comments