The Marketing Tool for all Social Platforms
- Traditional Email Marketing
- WhatsApp Marketing
- Twitter DM Marketing
- SMS Marketing
// SPDX-License-Identifier: UNLICENSED | |
pragma solidity >=0.4.22 <0.9.0; | |
import "./NFT.sol"; | |
contract NFTMarketplace is NFT { | |
constructor ( | |
string memory name_, | |
string memory symbol_, | |
address _permissionManagementContractAddress |
// SPDX-License-Identifier: MIT | |
pragma solidity >=0.4.22 <0.9.0; | |
/** | |
* Author: Kumar Abhirup (kumareth) | |
* Version: 1.0.0 | |
* Compiles best with: 0.7.6 | |
* Many contracts have ownerOnly functions, | |
* but I believe it's safer to have multiple owner addresses |