update metadata

This commit is contained in:
Ricardo Guilherme Schmidt 2019-07-19 14:02:23 -03:00
parent 54cfeba068
commit 69c9848944
No known key found for this signature in database
GPG Key ID: 1FD1630B93893608
2 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@ import "../../common/TokenClaimer.sol";
/** /**
* @author Ricardo Guilherme Schmidt (Status Research & Development GmbH) * @author Ricardo Guilherme Schmidt (Status Research & Development GmbH)
*/ */
contract StickerPack is Controlled, TokenClaimer, ERC721Full("Sticker Pack","STKP") { contract StickerPack is Controlled, TokenClaimer, ERC721Full("Status Sticker Pack","STKP") {
mapping(uint256 => uint256) public tokenPackId; //packId mapping(uint256 => uint256) public tokenPackId; //packId
uint256 public tokenCount; //tokens buys uint256 public tokenCount; //tokens buys

View File

@ -9,7 +9,7 @@ import "../../common/TokenClaimer.sol";
* @author Ricardo Guilherme Schmidt (Status Research & Development GmbH) * @author Ricardo Guilherme Schmidt (Status Research & Development GmbH)
* StickerMarket allows any address register "StickerPack" which can be sold to any address in form of "StickerPack", an ERC721 token. * StickerMarket allows any address register "StickerPack" which can be sold to any address in form of "StickerPack", an ERC721 token.
*/ */
contract StickerType is Controlled, TokenClaimer, ERC721Full("Sticker Type","STKT") { contract StickerType is Controlled, TokenClaimer, ERC721Full("Status Sticker Pack Authorship","STKA") {
using SafeMath for uint256; using SafeMath for uint256;
event Register(uint256 indexed packId, uint256 dataPrice, bytes _contenthash); event Register(uint256 indexed packId, uint256 dataPrice, bytes _contenthash);
event PriceChanged(uint256 indexed packId, uint256 dataPrice); event PriceChanged(uint256 indexed packId, uint256 dataPrice);