PrivateVaultNFT
Inherits: Ownable, ERC721, IPrivateVaultNFT
State Variables
renderController
address public immutable renderController;
Functions
constructor
constructor() ERC721("Arrakis Private LP NFT", "ARRAKIS");
mint
function used to mint nft (representing a vault) and send it.
function mint(address to_, uint256 tokenId_) external onlyOwner;
Parameters
| Name | Type | Description | 
|---|---|---|
| to_ | address | address where to send the NFT. | 
| tokenId_ | uint256 | id of the NFT to mint. | 
tokenURI
function tokenURI(uint256 tokenId_)
    public
    view
    override
    returns (string memory);
getMetaDatas
function getMetaDatas(
    address token0_,
    address token1_
)
    public
    view
    returns (
        uint8 decimals0,
        uint8 decimals1,
        string memory symbol0,
        string memory symbol1
    );