mirror of
https://github.com/status-im/status-go.git
synced 2025-01-28 07:27:00 +00:00
c85a110a31
New contracts and contract go functions. Adjust owner&master tokens deployment flow. Create deployment signature. CommunityTokens API for handling signer pubkey. Issue #11954
20 lines
540 B
Solidity
20 lines
540 B
Solidity
// SPDX-License-Identifier: Mozilla Public License 2.0
|
|
pragma solidity ^0.8.17;
|
|
|
|
import "./BaseToken.sol";
|
|
|
|
contract CollectibleV1 is BaseToken {
|
|
constructor(
|
|
string memory _name,
|
|
string memory _symbol,
|
|
uint256 _maxSupply,
|
|
bool _remoteBurnable,
|
|
bool _transferable,
|
|
string memory _baseTokenURI,
|
|
address _ownerToken,
|
|
address _masterToken
|
|
)
|
|
BaseToken(_name, _symbol, _maxSupply, _remoteBurnable, _transferable, _baseTokenURI, _ownerToken, _masterToken)
|
|
{ }
|
|
}
|