communities-contracts/contracts/tokens/CollectibleV1.sol

20 lines
559 B
Solidity
Raw Permalink Normal View History

2023-01-19 11:21:41 +00:00
// SPDX-License-Identifier: Mozilla Public License 2.0
pragma solidity ^0.8.17;
2023-10-03 07:06:10 +00:00
import { BaseToken } from "./BaseToken.sol";
2023-01-19 11:21:41 +00:00
2023-07-14 13:05:30 +00:00
contract CollectibleV1 is BaseToken {
2023-01-19 11:21:41 +00:00
constructor(
string memory _name,
string memory _symbol,
uint256 _maxSupply,
bool _remoteBurnable,
bool _transferable,
2023-07-14 13:05:30 +00:00
string memory _baseTokenURI,
address _ownerToken,
address _masterToken
)
BaseToken(_name, _symbol, _maxSupply, _remoteBurnable, _transferable, _baseTokenURI, _ownerToken, _masterToken)
{ }
2023-01-19 11:21:41 +00:00
}