IPrivateVaultNFT

Git Source

Functions

mint

function used to mint nft (representing a vault) and send it.

function mint(address to_, uint256 tokenId_) external;

Parameters

NameTypeDescription
to_addressaddress where to send the NFT.
tokenId_uint256id of the NFT to mint.

getMetaDatas

for doing meta data calls of tokens.

function getMetaDatas(
    address token0_,
    address token1_
)
    external
    view
    returns (
        uint8 decimals0,
        uint8 decimals1,
        string memory symbol0,
        string memory symbol1
    );