becrypto/contracts/BEChip.sol
2022-04-17 12:33:29 +08:00

10 lines
291 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 BEChip is BEBase{
constructor() ERC721("CRYPTO ELITE'S CHIP", "CHIP") {}
}