becrypto/contracts/tokens/erc721/BEEquipment.sol
2022-08-18 10:54:42 +08:00

10 lines
299 B
Solidity

// SPDX-License-Identifier: MIT
pragma solidity 0.8.10;
import "./BEBase.sol";
// this contract will transfer ownership to BETimelockController after deployed
// all onlyowner method would add timelock
contract BEEquipment is BEBase {
constructor() ERC721("CRYPTO ELITE'S WEAPON", "WEAPON") {}
}