Vault Factory
View Functions
/// @notice the number of ERC721 vaults
uint256 public vaultCount; /// @notice the mapping of vault number to vault contract
mapping(uint256 => TokenVault) public vaults; /// @notice a settings contract controlled by governance
address public settings;Fractionalizing An NFT
function mint(string memory _name, string memory _symbol, address _token, uint256 _id, uint256 _supply, uint256 _listPrice, uint256 _fee) external returns(uint256)Last updated