Factoria F0 contract
This repository contains the F0 smart contract for Factoria.
The primary license for Factoria F0 is the Business Source License 1.1 (BUSL-1.1), see LICENSE.
There are 2 main contracts:
- contracts/F0.sol: The NFT contract
- contracts/Factory.sol: The factory contract for creating F0 contract
- contracts/F0ERC721Upgradeable.sol
- F0 inherits from this file instead of @openzeppelin/ERC721Upgradeable.sol.
- Identical to @openzeppelin/ERC721Upgradeable except one difference
- difference: the
_name
and_symbol
attributes are declared "internal" instead of "private". Because it's "internal", F0 can inherit and update the name and symbol (which the defalut OpenZeppelin contract doesn't allow).