update mysteryboxV1

This commit is contained in:
owen05
2021-04-14 22:42:12 +08:00
parent 0cab6e6fa0
commit ebdf700f4b
5 changed files with 101 additions and 20 deletions

View File

@@ -14,11 +14,11 @@ contract InitializableERC721 is ERC721 {
address creator,
string memory name,
string memory symbol,
string memory baseUrI
string memory baseUri
) public {
_name = name;
_symbol = symbol;
_baseURI = baseUrI;
_baseUri = baseUri;
_mint(creator, 0);
}
}