-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
pragma ton-solidity >=0.43.0; | ||
|
||
interface TIP4NftCollection { | ||
function name() public view responsible returns (string); | ||
function totalSupply() public view responsible returns (uint128); | ||
function maxSupply() public view responsible returns (uint128); | ||
function nftCode() public view responsible returns (TvmCell); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
pragma ton-solidity >=0.43.0; | ||
|
||
interface TIP4Nft { | ||
function getNftInfo() external responsible returns(uint128 id, address addrOwner, address addrManager, address addrCollection); | ||
function transferOwnership(address addrTo, address addrSendGasTo, mapping(address => CallbackParams) callbacks); | ||
function setManager(address addrManager, address addrSendGasTo, mapping(address => CallbackParams) callbacks); | ||
function getNftJsonContent() external responsible returns(string json); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Template | ||
|
||
https://github.com/itgoldio/docs/blob/main/src/Standard/TIP-4/1.md |