becrypto/contracts/BEHero.sol
2022-02-21 19:37:13 +08:00

9 lines
289 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 BEHero is BEBase{
constructor() ERC721("Crypto Elite's Hero", "CEH") {}
}