Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 202 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Make Pick | 6013504 | 2412 days ago | IN | 0 ETH | 0.00052951 | ||||
Make Pick | 6013504 | 2412 days ago | IN | 0 ETH | 0.00057608 | ||||
Update Cards | 5975411 | 2419 days ago | IN | 0 ETH | 0.00339641 | ||||
Make Pick | 5971304 | 2419 days ago | IN | 0 ETH | 0.00014191 | ||||
Make Pick | 5970153 | 2419 days ago | IN | 0 ETH | 0.00041395 | ||||
Make Pick | 5968953 | 2420 days ago | IN | 0 ETH | 0.0056572 | ||||
Make Pick | 5967248 | 2420 days ago | IN | 0 ETH | 0.00255285 | ||||
Make Pick | 5967127 | 2420 days ago | IN | 0 ETH | 0.00368745 | ||||
Make Pick | 5966337 | 2420 days ago | IN | 0 ETH | 0.00339432 | ||||
Make Pick | 5965518 | 2420 days ago | IN | 0 ETH | 0.0020132 | ||||
Make Pick | 5965011 | 2420 days ago | IN | 0 ETH | 0.0028523 | ||||
Make Pick | 5965007 | 2420 days ago | IN | 0 ETH | 0.0028602 | ||||
Make Pick | 5964982 | 2420 days ago | IN | 0 ETH | 0.0028839 | ||||
Make Pick | 5964979 | 2420 days ago | IN | 0 ETH | 0.00298282 | ||||
Make Pick | 5964967 | 2420 days ago | IN | 0 ETH | 0.0028286 | ||||
Update Cards | 5964047 | 2420 days ago | IN | 0 ETH | 0.00453708 | ||||
Make Pick | 5964045 | 2420 days ago | IN | 0 ETH | 0.00215574 | ||||
Make Pick | 5963862 | 2420 days ago | IN | 0 ETH | 0.0028286 | ||||
Make Pick | 5963753 | 2420 days ago | IN | 0 ETH | 0.005752 | ||||
Make Pick | 5963753 | 2420 days ago | IN | 0 ETH | 0.00618845 | ||||
Make Pick | 5963684 | 2420 days ago | IN | 0 ETH | 0.00784087 | ||||
Make Pick | 5962083 | 2421 days ago | IN | 0 ETH | 0.0034794 | ||||
Make Pick | 5961155 | 2421 days ago | IN | 0 ETH | 0.00154866 | ||||
Make Pick | 5961079 | 2421 days ago | IN | 0 ETH | 0.0012862 | ||||
Make Pick | 5960756 | 2421 days ago | IN | 0 ETH | 0.00209768 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
StrikersUpdate
Compiler Version
v0.4.24+commit.e67f0147
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2018-07-06 */ pragma solidity ^0.4.24; /** * @title ERC721 Non-Fungible Token Standard basic interface * @dev see https://github.com/ethereum/EIPs/blob/master/EIPS/eip-721.md */ contract ERC721Basic { event Transfer( address indexed _from, address indexed _to, uint256 _tokenId ); event Approval( address indexed _owner, address indexed _approved, uint256 _tokenId ); event ApprovalForAll( address indexed _owner, address indexed _operator, bool _approved ); function balanceOf(address _owner) public view returns (uint256 _balance); function ownerOf(uint256 _tokenId) public view returns (address _owner); function exists(uint256 _tokenId) public view returns (bool _exists); function approve(address _to, uint256 _tokenId) public; function getApproved(uint256 _tokenId) public view returns (address _operator); function setApprovalForAll(address _operator, bool _approved) public; function isApprovedForAll(address _owner, address _operator) public view returns (bool); function transferFrom(address _from, address _to, uint256 _tokenId) public; function safeTransferFrom(address _from, address _to, uint256 _tokenId) public; function safeTransferFrom( address _from, address _to, uint256 _tokenId, bytes _data ) public; } /** * @title Ownable * @dev The Ownable contract has an owner address, and provides basic authorization control * functions, this simplifies the implementation of "user permissions". */ contract Ownable { address public owner; event OwnershipRenounced(address indexed previousOwner); event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev The Ownable constructor sets the original `owner` of the contract to the sender * account. */ constructor() public { owner = msg.sender; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(msg.sender == owner); _; } /** * @dev Allows the current owner to relinquish control of the contract. */ function renounceOwnership() public onlyOwner { emit OwnershipRenounced(owner); owner = address(0); } /** * @dev Allows the current owner to transfer control of the contract to a newOwner. * @param _newOwner The address to transfer ownership to. */ function transferOwnership(address _newOwner) public onlyOwner { _transferOwnership(_newOwner); } /** * @dev Transfers control of the contract to a newOwner. * @param _newOwner The address to transfer ownership to. */ function _transferOwnership(address _newOwner) internal { require(_newOwner != address(0)); emit OwnershipTransferred(owner, _newOwner); owner = _newOwner; } } /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://github.com/ethereum/EIPs/blob/master/EIPS/eip-721.md */ contract ERC721Enumerable is ERC721Basic { function totalSupply() public view returns (uint256); function tokenOfOwnerByIndex( address _owner, uint256 _index ) public view returns (uint256 _tokenId); function tokenByIndex(uint256 _index) public view returns (uint256); } /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://github.com/ethereum/EIPs/blob/master/EIPS/eip-721.md */ contract ERC721Metadata is ERC721Basic { function name() public view returns (string _name); function symbol() public view returns (string _symbol); function tokenURI(uint256 _tokenId) public view returns (string); } /** * @title ERC-721 Non-Fungible Token Standard, full implementation interface * @dev See https://github.com/ethereum/EIPs/blob/master/EIPS/eip-721.md */ contract ERC721 is ERC721Basic, ERC721Enumerable, ERC721Metadata { } /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ contract ERC721Receiver { /** * @dev Magic value to be returned upon successful reception of an NFT * Equals to `bytes4(keccak256("onERC721Received(address,uint256,bytes)"))`, * which can be also obtained as `ERC721Receiver(0).onERC721Received.selector` */ bytes4 constant ERC721_RECEIVED = 0xf0b9e5ba; /** * @notice Handle the receipt of an NFT * @dev The ERC721 smart contract calls this function on the recipient * after a `safetransfer`. This function MAY throw to revert and reject the * transfer. This function MUST use 50,000 gas or less. Return of other * than the magic value MUST result in the transaction being reverted. * Note: the contract address is always the message sender. * @param _from The sending address * @param _tokenId The NFT identifier which is being transfered * @param _data Additional data with no specified format * @return `bytes4(keccak256("onERC721Received(address,uint256,bytes)"))` */ function onERC721Received( address _from, uint256 _tokenId, bytes _data ) public returns(bytes4); } /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { /** * @dev Multiplies two numbers, throws on overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256 c) { // Gas optimization: this is cheaper than asserting 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522 if (a == 0) { return 0; } c = a * b; assert(c / a == b); return c; } /** * @dev Integer division of two numbers, truncating the quotient. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { // assert(b > 0); // Solidity automatically throws when dividing by 0 // uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return a / b; } /** * @dev Subtracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend). */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { assert(b <= a); return a - b; } /** * @dev Adds two numbers, throws on overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256 c) { c = a + b; assert(c >= a); return c; } } /** * Utility library of inline functions on addresses */ library AddressUtils { /** * Returns whether the target address is a contract * @dev This function will return false if invoked during the constructor of a contract, * as the code is not actually created until after the constructor finishes. * @param addr address to check * @return whether the target address is a contract */ function isContract(address addr) internal view returns (bool) { uint256 size; // XXX Currently there is no better way to check if there is a contract in an address // than to check the size of the code at that address. // See https://ethereum.stackexchange.com/a/14016/36603 // for more details about how this works. // TODO Check this again before the Serenity release, because all addresses will be // contracts then. // solium-disable-next-line security/no-inline-assembly assembly { size := extcodesize(addr) } return size > 0; } } /** * @title ERC721 Non-Fungible Token Standard basic implementation * @dev see https://github.com/ethereum/EIPs/blob/master/EIPS/eip-721.md */ contract ERC721BasicToken is ERC721Basic { using SafeMath for uint256; using AddressUtils for address; // Equals to `bytes4(keccak256("onERC721Received(address,uint256,bytes)"))` // which can be also obtained as `ERC721Receiver(0).onERC721Received.selector` bytes4 constant ERC721_RECEIVED = 0xf0b9e5ba; // Mapping from token ID to owner mapping (uint256 => address) internal tokenOwner; // Mapping from token ID to approved address mapping (uint256 => address) internal tokenApprovals; // Mapping from owner to number of owned token mapping (address => uint256) internal ownedTokensCount; // Mapping from owner to operator approvals mapping (address => mapping (address => bool)) internal operatorApprovals; /** * @dev Guarantees msg.sender is owner of the given token * @param _tokenId uint256 ID of the token to validate its ownership belongs to msg.sender */ modifier onlyOwnerOf(uint256 _tokenId) { require(ownerOf(_tokenId) == msg.sender); _; } /** * @dev Checks msg.sender can transfer a token, by being owner, approved, or operator * @param _tokenId uint256 ID of the token to validate */ modifier canTransfer(uint256 _tokenId) { require(isApprovedOrOwner(msg.sender, _tokenId)); _; } /** * @dev Gets the balance of the specified address * @param _owner address to query the balance of * @return uint256 representing the amount owned by the passed address */ function balanceOf(address _owner) public view returns (uint256) { require(_owner != address(0)); return ownedTokensCount[_owner]; } /** * @dev Gets the owner of the specified token ID * @param _tokenId uint256 ID of the token to query the owner of * @return owner address currently marked as the owner of the given token ID */ function ownerOf(uint256 _tokenId) public view returns (address) { address owner = tokenOwner[_tokenId]; require(owner != address(0)); return owner; } /** * @dev Returns whether the specified token exists * @param _tokenId uint256 ID of the token to query the existence of * @return whether the token exists */ function exists(uint256 _tokenId) public view returns (bool) { address owner = tokenOwner[_tokenId]; return owner != address(0); } /** * @dev Approves another address to transfer the given token ID * @dev The zero address indicates there is no approved address. * @dev There can only be one approved address per token at a given time. * @dev Can only be called by the token owner or an approved operator. * @param _to address to be approved for the given token ID * @param _tokenId uint256 ID of the token to be approved */ function approve(address _to, uint256 _tokenId) public { address owner = ownerOf(_tokenId); require(_to != owner); require(msg.sender == owner || isApprovedForAll(owner, msg.sender)); if (getApproved(_tokenId) != address(0) || _to != address(0)) { tokenApprovals[_tokenId] = _to; emit Approval(owner, _to, _tokenId); } } /** * @dev Gets the approved address for a token ID, or zero if no address set * @param _tokenId uint256 ID of the token to query the approval of * @return address currently approved for the given token ID */ function getApproved(uint256 _tokenId) public view returns (address) { return tokenApprovals[_tokenId]; } /** * @dev Sets or unsets the approval of a given operator * @dev An operator is allowed to transfer all tokens of the sender on their behalf * @param _to operator address to set the approval * @param _approved representing the status of the approval to be set */ function setApprovalForAll(address _to, bool _approved) public { require(_to != msg.sender); operatorApprovals[msg.sender][_to] = _approved; emit ApprovalForAll(msg.sender, _to, _approved); } /** * @dev Tells whether an operator is approved by a given owner * @param _owner owner address which you want to query the approval of * @param _operator operator address which you want to query the approval of * @return bool whether the given operator is approved by the given owner */ function isApprovedForAll( address _owner, address _operator ) public view returns (bool) { return operatorApprovals[_owner][_operator]; } /** * @dev Transfers the ownership of a given token ID to another address * @dev Usage of this method is discouraged, use `safeTransferFrom` whenever possible * @dev Requires the msg sender to be the owner, approved, or operator * @param _from current owner of the token * @param _to address to receive the ownership of the given token ID * @param _tokenId uint256 ID of the token to be transferred */ function transferFrom( address _from, address _to, uint256 _tokenId ) public canTransfer(_tokenId) { require(_from != address(0)); require(_to != address(0)); clearApproval(_from, _tokenId); removeTokenFrom(_from, _tokenId); addTokenTo(_to, _tokenId); emit Transfer(_from, _to, _tokenId); } /** * @dev Safely transfers the ownership of a given token ID to another address * @dev If the target address is a contract, it must implement `onERC721Received`, * which is called upon a safe transfer, and return the magic value * `bytes4(keccak256("onERC721Received(address,uint256,bytes)"))`; otherwise, * the transfer is reverted. * @dev Requires the msg sender to be the owner, approved, or operator * @param _from current owner of the token * @param _to address to receive the ownership of the given token ID * @param _tokenId uint256 ID of the token to be transferred */ function safeTransferFrom( address _from, address _to, uint256 _tokenId ) public canTransfer(_tokenId) { // solium-disable-next-line arg-overflow safeTransferFrom(_from, _to, _tokenId, ""); } /** * @dev Safely transfers the ownership of a given token ID to another address * @dev If the target address is a contract, it must implement `onERC721Received`, * which is called upon a safe transfer, and return the magic value * `bytes4(keccak256("onERC721Received(address,uint256,bytes)"))`; otherwise, * the transfer is reverted. * @dev Requires the msg sender to be the owner, approved, or operator * @param _from current owner of the token * @param _to address to receive the ownership of the given token ID * @param _tokenId uint256 ID of the token to be transferred * @param _data bytes data to send along with a safe transfer check */ function safeTransferFrom( address _from, address _to, uint256 _tokenId, bytes _data ) public canTransfer(_tokenId) { transferFrom(_from, _to, _tokenId); // solium-disable-next-line arg-overflow require(checkAndCallSafeTransfer(_from, _to, _tokenId, _data)); } /** * @dev Returns whether the given spender can transfer a given token ID * @param _spender address of the spender to query * @param _tokenId uint256 ID of the token to be transferred * @return bool whether the msg.sender is approved for the given token ID, * is an operator of the owner, or is the owner of the token */ function isApprovedOrOwner( address _spender, uint256 _tokenId ) internal view returns (bool) { address owner = ownerOf(_tokenId); // Disable solium check because of // https://github.com/duaraghav8/Solium/issues/175 // solium-disable-next-line operator-whitespace return ( _spender == owner || getApproved(_tokenId) == _spender || isApprovedForAll(owner, _spender) ); } /** * @dev Internal function to mint a new token * @dev Reverts if the given token ID already exists * @param _to The address that will own the minted token * @param _tokenId uint256 ID of the token to be minted by the msg.sender */ function _mint(address _to, uint256 _tokenId) internal { require(_to != address(0)); addTokenTo(_to, _tokenId); emit Transfer(address(0), _to, _tokenId); } /** * @dev Internal function to burn a specific token * @dev Reverts if the token does not exist * @param _tokenId uint256 ID of the token being burned by the msg.sender */ function _burn(address _owner, uint256 _tokenId) internal { clearApproval(_owner, _tokenId); removeTokenFrom(_owner, _tokenId); emit Transfer(_owner, address(0), _tokenId); } /** * @dev Internal function to clear current approval of a given token ID * @dev Reverts if the given address is not indeed the owner of the token * @param _owner owner of the token * @param _tokenId uint256 ID of the token to be transferred */ function clearApproval(address _owner, uint256 _tokenId) internal { require(ownerOf(_tokenId) == _owner); if (tokenApprovals[_tokenId] != address(0)) { tokenApprovals[_tokenId] = address(0); emit Approval(_owner, address(0), _tokenId); } } /** * @dev Internal function to add a token ID to the list of a given address * @param _to address representing the new owner of the given token ID * @param _tokenId uint256 ID of the token to be added to the tokens list of the given address */ function addTokenTo(address _to, uint256 _tokenId) internal { require(tokenOwner[_tokenId] == address(0)); tokenOwner[_tokenId] = _to; ownedTokensCount[_to] = ownedTokensCount[_to].add(1); } /** * @dev Internal function to remove a token ID from the list of a given address * @param _from address representing the previous owner of the given token ID * @param _tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function removeTokenFrom(address _from, uint256 _tokenId) internal { require(ownerOf(_tokenId) == _from); ownedTokensCount[_from] = ownedTokensCount[_from].sub(1); tokenOwner[_tokenId] = address(0); } /** * @dev Internal function to invoke `onERC721Received` on a target address * @dev The call is not executed if the target address is not a contract * @param _from address representing the previous owner of the given token ID * @param _to target address that will receive the tokens * @param _tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return whether the call correctly returned the expected magic value */ function checkAndCallSafeTransfer( address _from, address _to, uint256 _tokenId, bytes _data ) internal returns (bool) { if (!_to.isContract()) { return true; } bytes4 retval = ERC721Receiver(_to).onERC721Received( _from, _tokenId, _data); return (retval == ERC721_RECEIVED); } } /** * @title Full ERC721 Token * This implementation includes all the required and some optional functionality of the ERC721 standard * Moreover, it includes approve all functionality using operator terminology * @dev see https://github.com/ethereum/EIPs/blob/master/EIPS/eip-721.md */ contract ERC721Token is ERC721, ERC721BasicToken { // Token name string internal name_; // Token symbol string internal symbol_; // Mapping from owner to list of owned token IDs mapping(address => uint256[]) internal ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) internal ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] internal allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) internal allTokensIndex; // Optional mapping for token URIs mapping(uint256 => string) internal tokenURIs; /** * @dev Constructor function */ constructor(string _name, string _symbol) public { name_ = _name; symbol_ = _symbol; } /** * @dev Gets the token name * @return string representing the token name */ function name() public view returns (string) { return name_; } /** * @dev Gets the token symbol * @return string representing the token symbol */ function symbol() public view returns (string) { return symbol_; } /** * @dev Returns an URI for a given token ID * @dev Throws if the token ID does not exist. May return an empty string. * @param _tokenId uint256 ID of the token to query */ function tokenURI(uint256 _tokenId) public view returns (string) { require(exists(_tokenId)); return tokenURIs[_tokenId]; } /** * @dev Gets the token ID at a given index of the tokens list of the requested owner * @param _owner address owning the tokens list to be accessed * @param _index uint256 representing the index to be accessed of the requested tokens list * @return uint256 token ID at the given index of the tokens list owned by the requested address */ function tokenOfOwnerByIndex( address _owner, uint256 _index ) public view returns (uint256) { require(_index < balanceOf(_owner)); return ownedTokens[_owner][_index]; } /** * @dev Gets the total amount of tokens stored by the contract * @return uint256 representing the total amount of tokens */ function totalSupply() public view returns (uint256) { return allTokens.length; } /** * @dev Gets the token ID at a given index of all the tokens in this contract * @dev Reverts if the index is greater or equal to the total number of tokens * @param _index uint256 representing the index to be accessed of the tokens list * @return uint256 token ID at the given index of the tokens list */ function tokenByIndex(uint256 _index) public view returns (uint256) { require(_index < totalSupply()); return allTokens[_index]; } /** * @dev Internal function to set the token URI for a given token * @dev Reverts if the token ID does not exist * @param _tokenId uint256 ID of the token to set its URI * @param _uri string URI to assign */ function _setTokenURI(uint256 _tokenId, string _uri) internal { require(exists(_tokenId)); tokenURIs[_tokenId] = _uri; } /** * @dev Internal function to add a token ID to the list of a given address * @param _to address representing the new owner of the given token ID * @param _tokenId uint256 ID of the token to be added to the tokens list of the given address */ function addTokenTo(address _to, uint256 _tokenId) internal { super.addTokenTo(_to, _tokenId); uint256 length = ownedTokens[_to].length; ownedTokens[_to].push(_tokenId); ownedTokensIndex[_tokenId] = length; } /** * @dev Internal function to remove a token ID from the list of a given address * @param _from address representing the previous owner of the given token ID * @param _tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function removeTokenFrom(address _from, uint256 _tokenId) internal { super.removeTokenFrom(_from, _tokenId); uint256 tokenIndex = ownedTokensIndex[_tokenId]; uint256 lastTokenIndex = ownedTokens[_from].length.sub(1); uint256 lastToken = ownedTokens[_from][lastTokenIndex]; ownedTokens[_from][tokenIndex] = lastToken; ownedTokens[_from][lastTokenIndex] = 0; // Note that this will handle single-element arrays. In that case, both tokenIndex and lastTokenIndex are going to // be zero. Then we can make sure that we will remove _tokenId from the ownedTokens list since we are first swapping // the lastToken to the first position, and then dropping the element placed in the last position of the list ownedTokens[_from].length--; ownedTokensIndex[_tokenId] = 0; ownedTokensIndex[lastToken] = tokenIndex; } /** * @dev Internal function to mint a new token * @dev Reverts if the given token ID already exists * @param _to address the beneficiary that will own the minted token * @param _tokenId uint256 ID of the token to be minted by the msg.sender */ function _mint(address _to, uint256 _tokenId) internal { super._mint(_to, _tokenId); allTokensIndex[_tokenId] = allTokens.length; allTokens.push(_tokenId); } /** * @dev Internal function to burn a specific token * @dev Reverts if the token does not exist * @param _owner owner of the token to burn * @param _tokenId uint256 ID of the token being burned by the msg.sender */ function _burn(address _owner, uint256 _tokenId) internal { super._burn(_owner, _tokenId); // Clear metadata (if any) if (bytes(tokenURIs[_tokenId]).length != 0) { delete tokenURIs[_tokenId]; } // Reorg all tokens array uint256 tokenIndex = allTokensIndex[_tokenId]; uint256 lastTokenIndex = allTokens.length.sub(1); uint256 lastToken = allTokens[lastTokenIndex]; allTokens[tokenIndex] = lastToken; allTokens[lastTokenIndex] = 0; allTokens.length--; allTokensIndex[_tokenId] = 0; allTokensIndex[lastToken] = tokenIndex; } } /// @title The contract that manages all the players that appear in our game. /// @author The CryptoStrikers Team contract StrikersPlayerList is Ownable { // We only use playerIds in StrikersChecklist.sol (to // indicate which player features on instances of a // given ChecklistItem), and nowhere else in the app. // While it's not explictly necessary for any of our // contracts to know that playerId 0 corresponds to // Lionel Messi, we think that it's nice to have // a canonical source of truth for who the playerIds // actually refer to. Storing strings (player names) // is expensive, so we just use Events to prove that, // at some point, we said a playerId represents a given person. /// @dev The event we fire when we add a player. event PlayerAdded(uint8 indexed id, string name); /// @dev How many players we've added so far /// (max 255, though we don't plan on getting close) uint8 public playerCount; /// @dev Here we add the players we are launching with on Day 1. /// Players are loosely ranked by things like FIFA ratings, /// number of Instagram followers, and opinions of CryptoStrikers /// team members. Feel free to yell at us on Twitter. constructor() public { addPlayer("Lionel Messi"); // 0 addPlayer("Cristiano Ronaldo"); // 1 addPlayer("Neymar"); // 2 addPlayer("Mohamed Salah"); // 3 addPlayer("Robert Lewandowski"); // 4 addPlayer("Kevin De Bruyne"); // 5 addPlayer("Luka Modrić"); // 6 addPlayer("Eden Hazard"); // 7 addPlayer("Sergio Ramos"); // 8 addPlayer("Toni Kroos"); // 9 addPlayer("Luis Suárez"); // 10 addPlayer("Harry Kane"); // 11 addPlayer("Sergio Agüero"); // 12 addPlayer("Kylian Mbappé"); // 13 addPlayer("Gonzalo Higuaín"); // 14 addPlayer("David de Gea"); // 15 addPlayer("Antoine Griezmann"); // 16 addPlayer("N'Golo Kanté"); // 17 addPlayer("Edinson Cavani"); // 18 addPlayer("Paul Pogba"); // 19 addPlayer("Isco"); // 20 addPlayer("Marcelo"); // 21 addPlayer("Manuel Neuer"); // 22 addPlayer("Dries Mertens"); // 23 addPlayer("James Rodríguez"); // 24 addPlayer("Paulo Dybala"); // 25 addPlayer("Christian Eriksen"); // 26 addPlayer("David Silva"); // 27 addPlayer("Gabriel Jesus"); // 28 addPlayer("Thiago"); // 29 addPlayer("Thibaut Courtois"); // 30 addPlayer("Philippe Coutinho"); // 31 addPlayer("Andrés Iniesta"); // 32 addPlayer("Casemiro"); // 33 addPlayer("Romelu Lukaku"); // 34 addPlayer("Gerard Piqué"); // 35 addPlayer("Mats Hummels"); // 36 addPlayer("Diego Godín"); // 37 addPlayer("Mesut Özil"); // 38 addPlayer("Son Heung-min"); // 39 addPlayer("Raheem Sterling"); // 40 addPlayer("Hugo Lloris"); // 41 addPlayer("Radamel Falcao"); // 42 addPlayer("Ivan Rakitić"); // 43 addPlayer("Leroy Sané"); // 44 addPlayer("Roberto Firmino"); // 45 addPlayer("Sadio Mané"); // 46 addPlayer("Thomas Müller"); // 47 addPlayer("Dele Alli"); // 48 addPlayer("Keylor Navas"); // 49 addPlayer("Thiago Silva"); // 50 addPlayer("Raphaël Varane"); // 51 addPlayer("Ángel Di María"); // 52 addPlayer("Jordi Alba"); // 53 addPlayer("Medhi Benatia"); // 54 addPlayer("Timo Werner"); // 55 addPlayer("Gylfi Sigurðsson"); // 56 addPlayer("Nemanja Matić"); // 57 addPlayer("Kalidou Koulibaly"); // 58 addPlayer("Bernardo Silva"); // 59 addPlayer("Vincent Kompany"); // 60 addPlayer("João Moutinho"); // 61 addPlayer("Toby Alderweireld"); // 62 addPlayer("Emil Forsberg"); // 63 addPlayer("Mario Mandžukić"); // 64 addPlayer("Sergej Milinković-Savić"); // 65 addPlayer("Shinji Kagawa"); // 66 addPlayer("Granit Xhaka"); // 67 addPlayer("Andreas Christensen"); // 68 addPlayer("Piotr Zieliński"); // 69 addPlayer("Fyodor Smolov"); // 70 addPlayer("Xherdan Shaqiri"); // 71 addPlayer("Marcus Rashford"); // 72 addPlayer("Javier Hernández"); // 73 addPlayer("Hirving Lozano"); // 74 addPlayer("Hakim Ziyech"); // 75 addPlayer("Victor Moses"); // 76 addPlayer("Jefferson Farfán"); // 77 addPlayer("Mohamed Elneny"); // 78 addPlayer("Marcus Berg"); // 79 addPlayer("Guillermo Ochoa"); // 80 addPlayer("Igor Akinfeev"); // 81 addPlayer("Sardar Azmoun"); // 82 addPlayer("Christian Cueva"); // 83 addPlayer("Wahbi Khazri"); // 84 addPlayer("Keisuke Honda"); // 85 addPlayer("Tim Cahill"); // 86 addPlayer("John Obi Mikel"); // 87 addPlayer("Ki Sung-yueng"); // 88 addPlayer("Bryan Ruiz"); // 89 addPlayer("Maya Yoshida"); // 90 addPlayer("Nawaf Al Abed"); // 91 addPlayer("Lee Chung-yong"); // 92 addPlayer("Gabriel Gómez"); // 93 addPlayer("Naïm Sliti"); // 94 addPlayer("Reza Ghoochannejhad"); // 95 addPlayer("Mile Jedinak"); // 96 addPlayer("Mohammad Al-Sahlawi"); // 97 addPlayer("Aron Gunnarsson"); // 98 addPlayer("Blas Pérez"); // 99 addPlayer("Dani Alves"); // 100 addPlayer("Zlatan Ibrahimović"); // 101 } /// @dev Fires an event, proving that we said a player corresponds to a given ID. /// @param _name The name of the player we are adding. function addPlayer(string _name) public onlyOwner { require(playerCount < 255, "You've already added the maximum amount of players."); emit PlayerAdded(playerCount, _name); playerCount++; } } /// @title The contract that manages checklist items, sets, and rarity tiers. /// @author The CryptoStrikers Team contract StrikersChecklist is StrikersPlayerList { // High level overview of everything going on in this contract: // // ChecklistItem is the parent class to Card and has 3 properties: // - uint8 checklistId (000 to 255) // - uint8 playerId (see StrikersPlayerList.sol) // - RarityTier tier (more info below) // // Two things to note: the checklistId is not explicitly stored // on the checklistItem struct, and it's composed of two parts. // (For the following, assume it is left padded with zeros to reach // three digits, such that checklistId 0 becomes 000) // - the first digit represents the setId // * 0 = Originals Set // * 1 = Iconics Set // * 2 = Unreleased Set // - the last two digits represent its index in the appropriate set arary // // For example, checklist ID 100 would represent fhe first checklist item // in the iconicChecklistItems array (first digit = 1 = Iconics Set, last two // digits = 00 = first index of array) // // Because checklistId is represented as a uint8 throughout the app, the highest // value it can take is 255, which means we can't add more than 56 items to our // Unreleased Set's unreleasedChecklistItems array (setId 2). Also, once we've initialized // this contract, it's impossible for us to add more checklist items to the Originals // and Iconics set -- what you see here is what you get. // // Simple enough right? /// @dev We initialize this contract with so much data that we have /// to stage it in 4 different steps, ~33 checklist items at a time. enum DeployStep { WaitingForStepOne, WaitingForStepTwo, WaitingForStepThree, WaitingForStepFour, DoneInitialDeploy } /// @dev Enum containing all our rarity tiers, just because /// it's cleaner dealing with these values than with uint8s. enum RarityTier { IconicReferral, IconicInsert, Diamond, Gold, Silver, Bronze } /// @dev A lookup table indicating how limited the cards /// in each tier are. If this value is 0, it means /// that cards of this rarity tier are unlimited, /// which is only the case for the 8 Iconics cards /// we give away as part of our referral program. uint16[] public tierLimits = [ 0, // Iconic - Referral Bonus (uncapped) 100, // Iconic Inserts ("Card of the Day") 1000, // Diamond 1664, // Gold 3328, // Silver 4352 // Bronze ]; /// @dev ChecklistItem is essentially the parent class to Card. /// It represents a given superclass of cards (eg Originals Messi), /// and then each Card is an instance of this ChecklistItem, with /// its own serial number, mint date, etc. struct ChecklistItem { uint8 playerId; RarityTier tier; } /// @dev The deploy step we're at. Defaults to WaitingForStepOne. DeployStep public deployStep; /// @dev Array containing all the Originals checklist items (000 - 099) ChecklistItem[] public originalChecklistItems; /// @dev Array containing all the Iconics checklist items (100 - 131) ChecklistItem[] public iconicChecklistItems; /// @dev Array containing all the unreleased checklist items (200 - 255 max) ChecklistItem[] public unreleasedChecklistItems; /// @dev Internal function to add a checklist item to the Originals set. /// @param _playerId The player represented by this checklist item. (see StrikersPlayerList.sol) /// @param _tier This checklist item's rarity tier. (see Rarity Tier enum and corresponding tierLimits) function _addOriginalChecklistItem(uint8 _playerId, RarityTier _tier) internal { originalChecklistItems.push(ChecklistItem({ playerId: _playerId, tier: _tier })); } /// @dev Internal function to add a checklist item to the Iconics set. /// @param _playerId The player represented by this checklist item. (see StrikersPlayerList.sol) /// @param _tier This checklist item's rarity tier. (see Rarity Tier enum and corresponding tierLimits) function _addIconicChecklistItem(uint8 _playerId, RarityTier _tier) internal { iconicChecklistItems.push(ChecklistItem({ playerId: _playerId, tier: _tier })); } /// @dev External function to add a checklist item to our mystery set. /// Must have completed initial deploy, and can't add more than 56 items (because checklistId is a uint8). /// @param _playerId The player represented by this checklist item. (see StrikersPlayerList.sol) /// @param _tier This checklist item's rarity tier. (see Rarity Tier enum and corresponding tierLimits) function addUnreleasedChecklistItem(uint8 _playerId, RarityTier _tier) external onlyOwner { require(deployStep == DeployStep.DoneInitialDeploy, "Finish deploying the Originals and Iconics sets first."); require(unreleasedCount() < 56, "You can't add any more checklist items."); require(_playerId < playerCount, "This player doesn't exist in our player list."); unreleasedChecklistItems.push(ChecklistItem({ playerId: _playerId, tier: _tier })); } /// @dev Returns how many Original checklist items we've added. function originalsCount() external view returns (uint256) { return originalChecklistItems.length; } /// @dev Returns how many Iconic checklist items we've added. function iconicsCount() public view returns (uint256) { return iconicChecklistItems.length; } /// @dev Returns how many Unreleased checklist items we've added. function unreleasedCount() public view returns (uint256) { return unreleasedChecklistItems.length; } // In the next four functions, we initialize this contract with our // 132 initial checklist items (100 Originals, 32 Iconics). Because // of how much data we need to store, it has to be broken up into // four different function calls, which need to be called in sequence. // The ordering of the checklist items we add determines their // checklist ID, which is left-padded in our frontend to be a // 3-digit identifier where the first digit is the setId and the last // 2 digits represents the checklist items index in the appropriate ___ChecklistItems array. // For example, Originals Messi is the first item for set ID 0, and this // is displayed as #000 throughout the app. Our Card struct declare its // checklistId property as uint8, so we have // to be mindful that we can only have 256 total checklist items. /// @dev Deploys Originals #000 through #032. function deployStepOne() external onlyOwner { require(deployStep == DeployStep.WaitingForStepOne, "You're not following the steps in order..."); /* ORIGINALS - DIAMOND */ _addOriginalChecklistItem(0, RarityTier.Diamond); // 000 Messi _addOriginalChecklistItem(1, RarityTier.Diamond); // 001 Ronaldo _addOriginalChecklistItem(2, RarityTier.Diamond); // 002 Neymar _addOriginalChecklistItem(3, RarityTier.Diamond); // 003 Salah /* ORIGINALS - GOLD */ _addOriginalChecklistItem(4, RarityTier.Gold); // 004 Lewandowski _addOriginalChecklistItem(5, RarityTier.Gold); // 005 De Bruyne _addOriginalChecklistItem(6, RarityTier.Gold); // 006 Modrić _addOriginalChecklistItem(7, RarityTier.Gold); // 007 Hazard _addOriginalChecklistItem(8, RarityTier.Gold); // 008 Ramos _addOriginalChecklistItem(9, RarityTier.Gold); // 009 Kroos _addOriginalChecklistItem(10, RarityTier.Gold); // 010 Suárez _addOriginalChecklistItem(11, RarityTier.Gold); // 011 Kane _addOriginalChecklistItem(12, RarityTier.Gold); // 012 Agüero _addOriginalChecklistItem(13, RarityTier.Gold); // 013 Mbappé _addOriginalChecklistItem(14, RarityTier.Gold); // 014 Higuaín _addOriginalChecklistItem(15, RarityTier.Gold); // 015 de Gea _addOriginalChecklistItem(16, RarityTier.Gold); // 016 Griezmann _addOriginalChecklistItem(17, RarityTier.Gold); // 017 Kanté _addOriginalChecklistItem(18, RarityTier.Gold); // 018 Cavani _addOriginalChecklistItem(19, RarityTier.Gold); // 019 Pogba /* ORIGINALS - SILVER (020 to 032) */ _addOriginalChecklistItem(20, RarityTier.Silver); // 020 Isco _addOriginalChecklistItem(21, RarityTier.Silver); // 021 Marcelo _addOriginalChecklistItem(22, RarityTier.Silver); // 022 Neuer _addOriginalChecklistItem(23, RarityTier.Silver); // 023 Mertens _addOriginalChecklistItem(24, RarityTier.Silver); // 024 James _addOriginalChecklistItem(25, RarityTier.Silver); // 025 Dybala _addOriginalChecklistItem(26, RarityTier.Silver); // 026 Eriksen _addOriginalChecklistItem(27, RarityTier.Silver); // 027 David Silva _addOriginalChecklistItem(28, RarityTier.Silver); // 028 Gabriel Jesus _addOriginalChecklistItem(29, RarityTier.Silver); // 029 Thiago _addOriginalChecklistItem(30, RarityTier.Silver); // 030 Courtois _addOriginalChecklistItem(31, RarityTier.Silver); // 031 Coutinho _addOriginalChecklistItem(32, RarityTier.Silver); // 032 Iniesta // Move to the next deploy step. deployStep = DeployStep.WaitingForStepTwo; } /// @dev Deploys Originals #033 through #065. function deployStepTwo() external onlyOwner { require(deployStep == DeployStep.WaitingForStepTwo, "You're not following the steps in order..."); /* ORIGINALS - SILVER (033 to 049) */ _addOriginalChecklistItem(33, RarityTier.Silver); // 033 Casemiro _addOriginalChecklistItem(34, RarityTier.Silver); // 034 Lukaku _addOriginalChecklistItem(35, RarityTier.Silver); // 035 Piqué _addOriginalChecklistItem(36, RarityTier.Silver); // 036 Hummels _addOriginalChecklistItem(37, RarityTier.Silver); // 037 Godín _addOriginalChecklistItem(38, RarityTier.Silver); // 038 Özil _addOriginalChecklistItem(39, RarityTier.Silver); // 039 Son _addOriginalChecklistItem(40, RarityTier.Silver); // 040 Sterling _addOriginalChecklistItem(41, RarityTier.Silver); // 041 Lloris _addOriginalChecklistItem(42, RarityTier.Silver); // 042 Falcao _addOriginalChecklistItem(43, RarityTier.Silver); // 043 Rakitić _addOriginalChecklistItem(44, RarityTier.Silver); // 044 Sané _addOriginalChecklistItem(45, RarityTier.Silver); // 045 Firmino _addOriginalChecklistItem(46, RarityTier.Silver); // 046 Mané _addOriginalChecklistItem(47, RarityTier.Silver); // 047 Müller _addOriginalChecklistItem(48, RarityTier.Silver); // 048 Alli _addOriginalChecklistItem(49, RarityTier.Silver); // 049 Navas /* ORIGINALS - BRONZE (050 to 065) */ _addOriginalChecklistItem(50, RarityTier.Bronze); // 050 Thiago Silva _addOriginalChecklistItem(51, RarityTier.Bronze); // 051 Varane _addOriginalChecklistItem(52, RarityTier.Bronze); // 052 Di María _addOriginalChecklistItem(53, RarityTier.Bronze); // 053 Alba _addOriginalChecklistItem(54, RarityTier.Bronze); // 054 Benatia _addOriginalChecklistItem(55, RarityTier.Bronze); // 055 Werner _addOriginalChecklistItem(56, RarityTier.Bronze); // 056 Sigurðsson _addOriginalChecklistItem(57, RarityTier.Bronze); // 057 Matić _addOriginalChecklistItem(58, RarityTier.Bronze); // 058 Koulibaly _addOriginalChecklistItem(59, RarityTier.Bronze); // 059 Bernardo Silva _addOriginalChecklistItem(60, RarityTier.Bronze); // 060 Kompany _addOriginalChecklistItem(61, RarityTier.Bronze); // 061 Moutinho _addOriginalChecklistItem(62, RarityTier.Bronze); // 062 Alderweireld _addOriginalChecklistItem(63, RarityTier.Bronze); // 063 Forsberg _addOriginalChecklistItem(64, RarityTier.Bronze); // 064 Mandžukić _addOriginalChecklistItem(65, RarityTier.Bronze); // 065 Milinković-Savić // Move to the next deploy step. deployStep = DeployStep.WaitingForStepThree; } /// @dev Deploys Originals #066 through #099. function deployStepThree() external onlyOwner { require(deployStep == DeployStep.WaitingForStepThree, "You're not following the steps in order..."); /* ORIGINALS - BRONZE (066 to 099) */ _addOriginalChecklistItem(66, RarityTier.Bronze); // 066 Kagawa _addOriginalChecklistItem(67, RarityTier.Bronze); // 067 Xhaka _addOriginalChecklistItem(68, RarityTier.Bronze); // 068 Christensen _addOriginalChecklistItem(69, RarityTier.Bronze); // 069 Zieliński _addOriginalChecklistItem(70, RarityTier.Bronze); // 070 Smolov _addOriginalChecklistItem(71, RarityTier.Bronze); // 071 Shaqiri _addOriginalChecklistItem(72, RarityTier.Bronze); // 072 Rashford _addOriginalChecklistItem(73, RarityTier.Bronze); // 073 Hernández _addOriginalChecklistItem(74, RarityTier.Bronze); // 074 Lozano _addOriginalChecklistItem(75, RarityTier.Bronze); // 075 Ziyech _addOriginalChecklistItem(76, RarityTier.Bronze); // 076 Moses _addOriginalChecklistItem(77, RarityTier.Bronze); // 077 Farfán _addOriginalChecklistItem(78, RarityTier.Bronze); // 078 Elneny _addOriginalChecklistItem(79, RarityTier.Bronze); // 079 Berg _addOriginalChecklistItem(80, RarityTier.Bronze); // 080 Ochoa _addOriginalChecklistItem(81, RarityTier.Bronze); // 081 Akinfeev _addOriginalChecklistItem(82, RarityTier.Bronze); // 082 Azmoun _addOriginalChecklistItem(83, RarityTier.Bronze); // 083 Cueva _addOriginalChecklistItem(84, RarityTier.Bronze); // 084 Khazri _addOriginalChecklistItem(85, RarityTier.Bronze); // 085 Honda _addOriginalChecklistItem(86, RarityTier.Bronze); // 086 Cahill _addOriginalChecklistItem(87, RarityTier.Bronze); // 087 Mikel _addOriginalChecklistItem(88, RarityTier.Bronze); // 088 Sung-yueng _addOriginalChecklistItem(89, RarityTier.Bronze); // 089 Ruiz _addOriginalChecklistItem(90, RarityTier.Bronze); // 090 Yoshida _addOriginalChecklistItem(91, RarityTier.Bronze); // 091 Al Abed _addOriginalChecklistItem(92, RarityTier.Bronze); // 092 Chung-yong _addOriginalChecklistItem(93, RarityTier.Bronze); // 093 Gómez _addOriginalChecklistItem(94, RarityTier.Bronze); // 094 Sliti _addOriginalChecklistItem(95, RarityTier.Bronze); // 095 Ghoochannejhad _addOriginalChecklistItem(96, RarityTier.Bronze); // 096 Jedinak _addOriginalChecklistItem(97, RarityTier.Bronze); // 097 Al-Sahlawi _addOriginalChecklistItem(98, RarityTier.Bronze); // 098 Gunnarsson _addOriginalChecklistItem(99, RarityTier.Bronze); // 099 Pérez // Move to the next deploy step. deployStep = DeployStep.WaitingForStepFour; } /// @dev Deploys all Iconics and marks the deploy as complete! function deployStepFour() external onlyOwner { require(deployStep == DeployStep.WaitingForStepFour, "You're not following the steps in order..."); /* ICONICS */ _addIconicChecklistItem(0, RarityTier.IconicInsert); // 100 Messi _addIconicChecklistItem(1, RarityTier.IconicInsert); // 101 Ronaldo _addIconicChecklistItem(2, RarityTier.IconicInsert); // 102 Neymar _addIconicChecklistItem(3, RarityTier.IconicInsert); // 103 Salah _addIconicChecklistItem(4, RarityTier.IconicInsert); // 104 Lewandowski _addIconicChecklistItem(5, RarityTier.IconicInsert); // 105 De Bruyne _addIconicChecklistItem(6, RarityTier.IconicInsert); // 106 Modrić _addIconicChecklistItem(7, RarityTier.IconicInsert); // 107 Hazard _addIconicChecklistItem(8, RarityTier.IconicInsert); // 108 Ramos _addIconicChecklistItem(9, RarityTier.IconicInsert); // 109 Kroos _addIconicChecklistItem(10, RarityTier.IconicInsert); // 110 Suárez _addIconicChecklistItem(11, RarityTier.IconicInsert); // 111 Kane _addIconicChecklistItem(12, RarityTier.IconicInsert); // 112 Agüero _addIconicChecklistItem(15, RarityTier.IconicInsert); // 113 de Gea _addIconicChecklistItem(16, RarityTier.IconicInsert); // 114 Griezmann _addIconicChecklistItem(17, RarityTier.IconicReferral); // 115 Kanté _addIconicChecklistItem(18, RarityTier.IconicReferral); // 116 Cavani _addIconicChecklistItem(19, RarityTier.IconicInsert); // 117 Pogba _addIconicChecklistItem(21, RarityTier.IconicInsert); // 118 Marcelo _addIconicChecklistItem(24, RarityTier.IconicInsert); // 119 James _addIconicChecklistItem(26, RarityTier.IconicInsert); // 120 Eriksen _addIconicChecklistItem(29, RarityTier.IconicReferral); // 121 Thiago _addIconicChecklistItem(36, RarityTier.IconicReferral); // 122 Hummels _addIconicChecklistItem(38, RarityTier.IconicReferral); // 123 Özil _addIconicChecklistItem(39, RarityTier.IconicInsert); // 124 Son _addIconicChecklistItem(46, RarityTier.IconicInsert); // 125 Mané _addIconicChecklistItem(48, RarityTier.IconicInsert); // 126 Alli _addIconicChecklistItem(49, RarityTier.IconicReferral); // 127 Navas _addIconicChecklistItem(73, RarityTier.IconicInsert); // 128 Hernández _addIconicChecklistItem(85, RarityTier.IconicInsert); // 129 Honda _addIconicChecklistItem(100, RarityTier.IconicReferral); // 130 Alves _addIconicChecklistItem(101, RarityTier.IconicReferral); // 131 Zlatan // Mark the initial deploy as complete. deployStep = DeployStep.DoneInitialDeploy; } /// @dev Returns the mint limit for a given checklist item, based on its tier. /// @param _checklistId Which checklist item we need to get the limit for. /// @return How much of this checklist item we are allowed to mint. function limitForChecklistId(uint8 _checklistId) external view returns (uint16) { RarityTier rarityTier; uint8 index; if (_checklistId < 100) { // Originals = #000 to #099 rarityTier = originalChecklistItems[_checklistId].tier; } else if (_checklistId < 200) { // Iconics = #100 to #131 index = _checklistId - 100; require(index < iconicsCount(), "This Iconics checklist item doesn't exist."); rarityTier = iconicChecklistItems[index].tier; } else { // Unreleased = #200 to max #255 index = _checklistId - 200; require(index < unreleasedCount(), "This Unreleased checklist item doesn't exist."); rarityTier = unreleasedChecklistItems[index].tier; } return tierLimits[uint8(rarityTier)]; } } /// @title Base contract for CryptoStrikers. Defines what a card is and how to mint one. /// @author The CryptoStrikers Team contract StrikersBase is ERC721Token("CryptoStrikers", "STRK") { /// @dev Emit this event whenever we mint a new card (see _mintCard below) event CardMinted(uint256 cardId); /// @dev The struct representing the game's main object, a sports trading card. struct Card { // The timestamp at which this card was minted. // With uint32 we are good until 2106, by which point we will have not minted // a card in like, 88 years. uint32 mintTime; // The checklist item represented by this card. See StrikersChecklist.sol for more info. uint8 checklistId; // Cards for a given player have a serial number, which gets // incremented in sequence. For example, if we mint 1000 of a card, // the third one to be minted has serialNumber = 3 (out of 1000). uint16 serialNumber; } /*** STORAGE ***/ /// @dev All the cards that have been minted, indexed by cardId. Card[] public cards; /// @dev Keeps track of how many cards we have minted for a given checklist item /// to make sure we don't go over the limit for it. /// NB: uint16 has a capacity of 65,535, but we are not minting more than /// 4,352 of any given checklist item. mapping (uint8 => uint16) public mintedCountForChecklistId; /// @dev A reference to our checklist contract, which contains all the minting limits. StrikersChecklist public strikersChecklist; /*** FUNCTIONS ***/ /// @dev For a given owner, returns two arrays. The first contains the IDs of every card owned /// by this address. The second returns the corresponding checklist ID for each of these cards. /// There are a few places we need this info in the web app and short of being able to return an /// actual array of Cards, this is the best solution we could come up with... function cardAndChecklistIdsForOwner(address _owner) external view returns (uint256[], uint8[]) { uint256[] memory cardIds = ownedTokens[_owner]; uint256 cardCount = cardIds.length; uint8[] memory checklistIds = new uint8[](cardCount); for (uint256 i = 0; i < cardCount; i++) { uint256 cardId = cardIds[i]; checklistIds[i] = cards[cardId].checklistId; } return (cardIds, checklistIds); } /// @dev An internal method that creates a new card and stores it. /// Emits both a CardMinted and a Transfer event. /// @param _checklistId The ID of the checklistItem represented by the card (see Checklist.sol) /// @param _owner The card's first owner! function _mintCard( uint8 _checklistId, address _owner ) internal returns (uint256) { uint16 mintLimit = strikersChecklist.limitForChecklistId(_checklistId); require(mintLimit == 0 || mintedCountForChecklistId[_checklistId] < mintLimit, "Can't mint any more of this card!"); uint16 serialNumber = ++mintedCountForChecklistId[_checklistId]; Card memory newCard = Card({ mintTime: uint32(now), checklistId: _checklistId, serialNumber: serialNumber }); uint256 newCardId = cards.push(newCard) - 1; emit CardMinted(newCardId); _mint(_owner, newCardId); return newCardId; } } contract StrikersUpdate is Ownable { event PickMade(address indexed user, uint8 indexed game, uint256 cardId); event CardUpgraded(address indexed user, uint8 indexed game, uint256 cardId); uint8 constant CHECKLIST_ITEM_COUNT = 132; uint8 constant GAME_COUNT = 8; mapping (uint256 => uint8) public starCountForCard; mapping (address => uint256[GAME_COUNT]) public picksForUser; struct Game { uint8[] acceptedChecklistIds; uint32 startTime; uint8 homeTeam; uint8 awayTeam; } Game[] public games; StrikersBase public strikersBaseContract; constructor(address _strikersBaseAddress) public { strikersBaseContract = StrikersBase(_strikersBaseAddress); /*** QUARTER-FINALS ***/ // 57 - FRIDAY JULY 6 2018 10:00 AM ET (URUGUAY / FRANCE) Game memory game57; game57.startTime = 1530885600; game57.homeTeam = 31; game57.awayTeam = 10; games.push(game57); games[0].acceptedChecklistIds = [10, 13, 16, 17, 18, 19, 37, 41, 51]; // 58 - FRIDAY JULY 6 2018 02:00 PM ET (BRAZIL / BELGIUM) Game memory game58; game58.startTime = 1530900000; game58.homeTeam = 3; game58.awayTeam = 2; games.push(game58); games[1].acceptedChecklistIds = [2, 5, 7, 21, 23, 28, 30, 31, 33, 34, 45, 50, 60, 62]; // 60 - SATURDAY JULY 7 2018 10:00 AM ET (SWEDEN / ENGLAND) Game memory game60; game60.startTime = 1530972000; game60.homeTeam = 28; game60.awayTeam = 9; games.push(game60); games[2].acceptedChecklistIds = [11, 40, 48, 63, 72, 79]; // 59 - SATURDAY JULY 7 2018 02:00 PM ET (RUSSIA / CROATIA) Game memory game59; game59.startTime = 1530986400; game59.homeTeam = 22; game59.awayTeam = 6; games.push(game59); games[3].acceptedChecklistIds = [6, 43, 64, 70, 81]; /*** SEMI-FINALS ***/ // 61 - TUESDAY JULY 10 2018 02:00 PM ET (W57 / W58) Game memory game61; game61.startTime = 1531245600; games.push(game61); // 62 - WEDNESDAY JULY 11 2018 02:00 PM ET (W59 / W60) Game memory game62; game62.startTime = 1531332000; games.push(game62); /*** THIRD PLACE ***/ // 63 - SATURDAY JULY 14 2018 11:00 AM ET (L61 / L62) Game memory game63; game63.startTime = 1531580400; games.push(game63); /*** FINAL ***/ // 64 - SUNDAY JULY 15 2018 11:00 AM ET (W61 / W62) Game memory game64; game64.startTime = 1531666800; games.push(game64); } function updateGame(uint8 _game, uint8[] _acceptedChecklistIds, uint32 _startTime, uint8 _homeTeam, uint8 _awayTeam) external onlyOwner { Game storage game = games[_game]; game.acceptedChecklistIds = _acceptedChecklistIds; game.startTime = _startTime; game.homeTeam = _homeTeam; game.awayTeam = _awayTeam; } function getGame(uint8 _game) external view returns ( uint8[] acceptedChecklistIds, uint32 startTime, uint8 homeTeam, uint8 awayTeam ) { Game memory game = games[_game]; acceptedChecklistIds = game.acceptedChecklistIds; startTime = game.startTime; homeTeam = game.homeTeam; awayTeam = game.awayTeam; } function makePick(uint8 _game, uint256 _cardId) external { Game memory game = games[_game]; require(now < game.startTime, "This game has already started."); require(strikersBaseContract.ownerOf(_cardId) == msg.sender, "You don't own this card."); uint8 checklistId; (,checklistId,) = strikersBaseContract.cards(_cardId); require(_arrayContains(game.acceptedChecklistIds, checklistId), "This card is invalid for this game."); picksForUser[msg.sender][_game] = _cardId; emit PickMade(msg.sender, _game, _cardId); } function _arrayContains(uint8[] _array, uint8 _element) internal pure returns (bool) { for (uint i = 0; i < _array.length; i++) { if (_array[i] == _element) { return true; } } return false; } function updateCards(uint8 _game, uint256[] _cardIds) external onlyOwner { for (uint256 i = 0; i < _cardIds.length; i++) { uint256 cardId = _cardIds[i]; address owner = strikersBaseContract.ownerOf(cardId); if (picksForUser[owner][_game] == cardId) { starCountForCard[cardId]++; emit CardUpgraded(owner, _game, cardId); } } } function getPicksForUser(address _user) external view returns (uint256[GAME_COUNT]) { return picksForUser[_user]; } function starCountsForOwner(address _owner) external view returns (uint8[]) { uint256[] memory cardIds; (cardIds,) = strikersBaseContract.cardAndChecklistIdsForOwner(_owner); uint256 cardCount = cardIds.length; uint8[] memory starCounts = new uint8[](cardCount); for (uint256 i = 0; i < cardCount; i++) { uint256 cardId = cardIds[i]; starCounts[i] = starCountForCard[cardId]; } return starCounts; } function getMintedCounts() external view returns (uint16[CHECKLIST_ITEM_COUNT]) { uint16[CHECKLIST_ITEM_COUNT] memory mintedCounts; for (uint8 i = 0; i < CHECKLIST_ITEM_COUNT; i++) { mintedCounts[i] = strikersBaseContract.mintedCountForChecklistId(i); } return mintedCounts; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"constant":false,"inputs":[{"name":"_game","type":"uint8"},{"name":"_cardId","type":"uint256"}],"name":"makePick","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"games","outputs":[{"name":"startTime","type":"uint32"},{"name":"homeTeam","type":"uint8"},{"name":"awayTeam","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"starCountForCard","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"uint256"}],"name":"picksForUser","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getMintedCounts","outputs":[{"name":"","type":"uint16[132]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_game","type":"uint8"}],"name":"getGame","outputs":[{"name":"acceptedChecklistIds","type":"uint8[]"},{"name":"startTime","type":"uint32"},{"name":"homeTeam","type":"uint8"},{"name":"awayTeam","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_user","type":"address"}],"name":"getPicksForUser","outputs":[{"name":"","type":"uint256[8]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_game","type":"uint8"},{"name":"_cardIds","type":"uint256[]"}],"name":"updateCards","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"starCountsForOwner","outputs":[{"name":"","type":"uint8[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"strikersBaseContract","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_game","type":"uint8"},{"name":"_acceptedChecklistIds","type":"uint8[]"},{"name":"_startTime","type":"uint32"},{"name":"_homeTeam","type":"uint8"},{"name":"_awayTeam","type":"uint8"}],"name":"updateGame","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_strikersBaseAddress","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"user","type":"address"},{"indexed":true,"name":"game","type":"uint8"},{"indexed":false,"name":"cardId","type":"uint256"}],"name":"PickMade","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"user","type":"address"},{"indexed":true,"name":"game","type":"uint8"},{"indexed":false,"name":"cardId","type":"uint256"}],"name":"CardUpgraded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"}],"name":"OwnershipRenounced","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040516020806200279f833981018060405281019080805190602001909291905050506200003f62000a9e565b6200004962000a9e565b6200005362000a9e565b6200005d62000a9e565b6200006762000a9e565b6200007162000a9e565b6200007b62000a9e565b6200008562000a9e565b336000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555088600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550635b3f75e0886020019063ffffffff16908163ffffffff1681525050601f886040019060ff16908160ff1681525050600a886060019060ff16908160ff16815250506003889080600181540180825580915050906001820390600052602060002090600202016000909192909190915060008201518160000190805190602001906200019492919062000ad3565b5060208201518160010160006101000a81548163ffffffff021916908363ffffffff16021790555060408201518160010160046101000a81548160ff021916908360ff16021790555060608201518160010160056101000a81548160ff021916908360ff16021790555050505061012060405190810160405280600a60ff168152602001600d60ff168152602001601060ff168152602001601160ff168152602001601260ff168152602001601360ff168152602001602560ff168152602001602960ff168152602001603360ff16815250600360008154811015156200027757fe5b90600052602060002090600202016000019060096200029892919062000b81565b50635b3fae20876020019063ffffffff16908163ffffffff16815250506003876040019060ff16908160ff16815250506002876060019060ff16908160ff16815250506003879080600181540180825580915050906001820390600052602060002090600202016000909192909190915060008201518160000190805190602001906200032792919062000ad3565b5060208201518160010160006101000a81548163ffffffff021916908363ffffffff16021790555060408201518160010160046101000a81548160ff021916908360ff16021790555060608201518160010160056101000a81548160ff021916908360ff1602179055505050506101c060405190810160405280600260ff168152602001600560ff168152602001600760ff168152602001601560ff168152602001601760ff168152602001601c60ff168152602001601e60ff168152602001601f60ff168152602001602160ff168152602001602260ff168152602001602d60ff168152602001603260ff168152602001603c60ff168152602001603e60ff16815250600360018154811015156200043c57fe5b906000526020600020906002020160000190600e6200045d92919062000c2f565b50635b40c760866020019063ffffffff16908163ffffffff1681525050601c866040019060ff16908160ff16815250506009866060019060ff16908160ff1681525050600386908060018154018082558091505090600182039060005260206000209060020201600090919290919091506000820151816000019080519060200190620004ec92919062000ad3565b5060208201518160010160006101000a81548163ffffffff021916908363ffffffff16021790555060408201518160010160046101000a81548160ff021916908360ff16021790555060608201518160010160056101000a81548160ff021916908360ff16021790555050505060c060405190810160405280600b60ff168152602001602860ff168152602001603060ff168152602001603f60ff168152602001604860ff168152602001604f60ff1681525060036002815481101515620005b057fe5b9060005260206000209060020201600001906006620005d192919062000cdd565b50635b40ffa0856020019063ffffffff16908163ffffffff16815250506016856040019060ff16908160ff16815250506006856060019060ff16908160ff16815250506003859080600181540180825580915050906001820390600052602060002090600202016000909192909190915060008201518160000190805190602001906200066092919062000ad3565b5060208201518160010160006101000a81548163ffffffff021916908363ffffffff16021790555060408201518160010160046101000a81548160ff021916908360ff16021790555060608201518160010160056101000a81548160ff021916908360ff16021790555050505060a060405190810160405280600660ff168152602001602b60ff168152602001604060ff168152602001604660ff168152602001605160ff168152506003808154811015156200071957fe5b90600052602060002090600202016000019060056200073a92919062000d8b565b50635b44f420846020019063ffffffff16908163ffffffff1681525050600384908060018154018082558091505090600182039060005260206000209060020201600090919290919091506000820151816000019080519060200190620007a392919062000ad3565b5060208201518160010160006101000a81548163ffffffff021916908363ffffffff16021790555060408201518160010160046101000a81548160ff021916908360ff16021790555060608201518160010160056101000a81548160ff021916908360ff160217905550505050635b4645a0836020019063ffffffff16908163ffffffff16815250506003839080600181540180825580915050906001820390600052602060002090600202016000909192909190915060008201518160000190805190602001906200087892919062000ad3565b5060208201518160010160006101000a81548163ffffffff021916908363ffffffff16021790555060408201518160010160046101000a81548160ff021916908360ff16021790555060608201518160010160056101000a81548160ff021916908360ff160217905550505050635b4a0ff0826020019063ffffffff16908163ffffffff16815250506003829080600181540180825580915050906001820390600052602060002090600202016000909192909190915060008201518160000190805190602001906200094d92919062000ad3565b5060208201518160010160006101000a81548163ffffffff021916908363ffffffff16021790555060408201518160010160046101000a81548160ff021916908360ff16021790555060608201518160010160056101000a81548160ff021916908360ff160217905550505050635b4b6170816020019063ffffffff16908163ffffffff168152505060038190806001815401808255809150509060018203906000526020600020906002020160009091929091909150600082015181600001908051906020019062000a2292919062000ad3565b5060208201518160010160006101000a81548163ffffffff021916908363ffffffff16021790555060408201518160010160046101000a81548160ff021916908360ff16021790555060608201518160010160056101000a81548160ff021916908360ff16021790555050505050505050505050505062000e6c565b60806040519081016040528060608152602001600063ffffffff168152602001600060ff168152602001600060ff1681525090565b82805482825590600052602060002090601f0160209004810192821562000b6e5791602002820160005b8382111562000b3d57835183826101000a81548160ff021916908360ff160217905550926020019260010160208160000104928301926001030262000afd565b801562000b6c5782816101000a81549060ff021916905560010160208160000104928301926001030262000b3d565b505b50905062000b7d919062000e39565b5090565b82805482825590600052602060002090601f0160209004810192821562000c1c5791602002820160005b8382111562000beb57835183826101000a81548160ff021916908360ff160217905550926020019260010160208160000104928301926001030262000bab565b801562000c1a5782816101000a81549060ff021916905560010160208160000104928301926001030262000beb565b505b50905062000c2b919062000e39565b5090565b82805482825590600052602060002090601f0160209004810192821562000cca5791602002820160005b8382111562000c9957835183826101000a81548160ff021916908360ff160217905550926020019260010160208160000104928301926001030262000c59565b801562000cc85782816101000a81549060ff021916905560010160208160000104928301926001030262000c99565b505b50905062000cd9919062000e39565b5090565b82805482825590600052602060002090601f0160209004810192821562000d785791602002820160005b8382111562000d4757835183826101000a81548160ff021916908360ff160217905550926020019260010160208160000104928301926001030262000d07565b801562000d765782816101000a81549060ff021916905560010160208160000104928301926001030262000d47565b505b50905062000d87919062000e39565b5090565b82805482825590600052602060002090601f0160209004810192821562000e265791602002820160005b8382111562000df557835183826101000a81548160ff021916908360ff160217905550926020019260010160208160000104928301926001030262000db5565b801562000e245782816101000a81549060ff021916905560010160208160000104928301926001030262000df5565b505b50905062000e35919062000e39565b5090565b62000e6991905b8082111562000e6557600081816101000a81549060ff02191690555060010162000e40565b5090565b90565b6119238062000e7c6000396000f3006080604052600436106100d0576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff1680630ed61407146100d5578063117a5b901461010f57806316a35f5d14610176578063715018a6146101bd5780637229063f146101d457806374b527b01461023557806377d79d10146102885780638da5cb5b1461033a578063922856da1461039157806399851eac14610410578063bc63cc9014610458578063d36a35c9146104f0578063e3599c2114610547578063f2fde38b146105b9575b600080fd5b3480156100e157600080fd5b5061010d600480360381019080803560ff169060200190929190803590602001909291905050506105fc565b005b34801561011b57600080fd5b5061013a60048036038101908080359060200190929190505050610b3e565b604051808463ffffffff1663ffffffff1681526020018360ff1660ff1681526020018260ff1660ff168152602001935050505060405180910390f35b34801561018257600080fd5b506101a160048036038101908080359060200190929190505050610ba1565b604051808260ff1660ff16815260200191505060405180910390f35b3480156101c957600080fd5b506101d2610bc1565b005b3480156101e057600080fd5b5061021f600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610cc3565b6040518082815260200191505060405180910390f35b34801561024157600080fd5b5061024a610cea565b6040518082608460200280838360005b8381101561027557808201518184015260208101905061025a565b5050505090500191505060405180910390f35b34801561029457600080fd5b506102b6600480360381019080803560ff169060200190929190505050610e1a565b60405180806020018563ffffffff1663ffffffff1681526020018460ff1660ff1681526020018360ff1660ff168152602001828103825286818151815260200191508051906020019060200280838360005b83811015610323578082015181840152602081019050610308565b505050509050019550505050505060405180910390f35b34801561034657600080fd5b5061034f610f59565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561039d57600080fd5b506103d2600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610f7e565b6040518082600860200280838360005b838110156103fd5780820151818401526020810190506103e2565b5050505090500191505060405180910390f35b34801561041c57600080fd5b50610456600480360381019080803560ff169060200190929190803590602001908201803590602001919091929391929390505050611008565b005b34801561046457600080fd5b50610499600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611260565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b838110156104dc5780820151818401526020810190506104c1565b505050509050019250505060405180910390f35b3480156104fc57600080fd5b506105056114c8565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561055357600080fd5b506105b7600480360381019080803560ff169060200190929190803590602001908201803590602001919091929391929390803563ffffffff169060200190929190803560ff169060200190929190803560ff1690602001909291905050506114ee565b005b3480156105c557600080fd5b506105fa600480360381019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506115e7565b005b6106046117a0565b600060038460ff1681548110151561061857fe5b906000526020600020906002020160806040519081016040529081600082018054806020026020016040519081016040528092919081815260200182805480156106a757602002820191906000526020600020906000905b82829054906101000a900460ff1660ff16815260200190600101906020826000010492830192600103820291508084116106705790505b505050505081526020016001820160009054906101000a900463ffffffff1663ffffffff1663ffffffff1681526020016001820160049054906101000a900460ff1660ff1660ff1681526020016001820160059054906101000a900460ff1660ff1660ff16815250509150816020015163ffffffff1642101515610793576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f546869732067616d652068617320616c726561647920737461727465642e000081525060200191505060405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e856040518263ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040180828152602001915050602060405180830381600087803b15801561083b57600080fd5b505af115801561084f573d6000803e3d6000fd5b505050506040513d602081101561086557600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff16141515610901576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f596f7520646f6e2774206f776e207468697320636172642e000000000000000081525060200191505060405180910390fd5b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16638dc10768846040518263ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040180828152602001915050606060405180830381600087803b15801561099257600080fd5b505af11580156109a6573d6000803e3d6000fd5b505050506040513d60608110156109bc57600080fd5b8101908080519060200190929190805190602001909291908051906020019092919050505090915050809150506109f782600001518261164e565b1515610a91576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001807f54686973206361726420697320696e76616c696420666f72207468697320676181526020017f6d652e000000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b82600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208560ff16600881101515610ae157fe5b01819055508360ff163373ffffffffffffffffffffffffffffffffffffffff167f4a91d4b4a3182fd8a3defa1bd2bcabb9baafd4f5176e1a32dc147dc4785b45a8856040518082815260200191505060405180910390a350505050565b600381815481101515610b4d57fe5b90600052602060002090600202016000915090508060010160009054906101000a900463ffffffff16908060010160049054906101000a900460ff16908060010160059054906101000a900460ff16905083565b60016020528060005260406000206000915054906101000a900460ff1681565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141515610c1c57600080fd5b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482060405160405180910390a260008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600260205281600052604060002081600881101515610cde57fe5b01600091509150505481565b610cf26117d5565b610cfa6117d5565b60008090505b608460ff168160ff161015610e1257600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16637f791d05826040518263ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808260ff1660ff168152602001915050602060405180830381600087803b158015610da657600080fd5b505af1158015610dba573d6000803e3d6000fd5b505050506040513d6020811015610dd057600080fd5b8101908080519060200190929190505050828260ff16608481101515610df257fe5b602002019061ffff16908161ffff16815250508080600101915050610d00565b819250505090565b60606000806000610e296117a0565b60038660ff16815481101515610e3b57fe5b90600052602060002090600202016080604051908101604052908160008201805480602002602001604051908101604052809291908181526020018280548015610eca57602002820191906000526020600020906000905b82829054906101000a900460ff1660ff1681526020019060010190602082600001049283019260010382029150808411610e935790505b505050505081526020016001820160009054906101000a900463ffffffff1663ffffffff1663ffffffff1681526020016001820160049054906101000a900460ff1660ff1660ff1681526020016001820160059054906101000a900460ff1660ff1660ff1681525050905080600001519450806020015193508060400151925080606001519150509193509193565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610f866117f9565b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600880602002604051908101604052809291908260088015610ffc576020028201915b815481526020019060010190808311610fe8575b50505050509050919050565b60008060008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151561106857600080fd5b600092505b8484905083101561125857848484818110151561108657fe5b905060200201359150600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040180828152602001915050602060405180830381600087803b15801561112057600080fd5b505af1158015611134573d6000803e3d6000fd5b505050506040513d602081101561114a57600080fd5b8101908080519060200190929190505050905081600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208760ff166008811015156111ad57fe5b0154141561124b5760016000838152602001908152602001600020600081819054906101000a900460ff168092919060010191906101000a81548160ff021916908360ff160217905550508560ff168173ffffffffffffffffffffffffffffffffffffffff167fca26b888e4648e2d72b9661459dfa110b0b0549e47f8d3ade764ee3570337d27846040518082815260200191505060405180910390a35b828060010193505061106d565b505050505050565b60608060006060600080600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f7ce25bb886040518263ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001915050600060405180830381600087803b15801561132757600080fd5b505af115801561133b573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250604081101561136557600080fd5b81019080805164010000000081111561137d57600080fd5b8281019050602081018481111561139357600080fd5b81518560208202830111640100000000821117156113b057600080fd5b505092919060200180516401000000008111156113cc57600080fd5b828101905060208101848111156113e257600080fd5b81518560208202830111640100000000821117156113ff57600080fd5b50509291905050505080955050845193508360405190808252806020026020018201604052801561143f5781602001602082028038833980820191505090505b509250600091505b838210156114bb57848281518110151561145d57fe5b9060200190602002015190506001600082815260200190815260200160002060009054906101000a900460ff16838381518110151561149857fe5b9060200190602002019060ff16908160ff16815250508180600101925050611447565b8295505050505050919050565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151561154b57600080fd5b60038760ff1681548110151561155d57fe5b90600052602060002090600202019050858582600001919061158092919061181d565b50838160010160006101000a81548163ffffffff021916908363ffffffff160217905550828160010160046101000a81548160ff021916908360ff160217905550818160010160056101000a81548160ff021916908360ff16021790555050505050505050565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151561164257600080fd5b61164b816116a6565b50565b600080600090505b835181101561169a578260ff16848281518110151561167157fe5b9060200190602002015160ff16141561168d576001915061169f565b8080600101915050611656565b600091505b5092915050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141515156116e257600080fd5b8073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60806040519081016040528060608152602001600063ffffffff168152602001600060ff168152602001600060ff1681525090565b61108060405190810160405280608490602082028038833980820191505090505090565b61010060405190810160405280600890602082028038833980820191505090505090565b82805482825590600052602060002090601f016020900481019282156118b65791602002820160005b8382111561188757833560ff1683826101000a81548160ff021916908360ff1602179055509260200192600101602081600001049283019260010302611846565b80156118b45782816101000a81549060ff0219169055600101602081600001049283019260010302611887565b505b5090506118c391906118c7565b5090565b6118f491905b808211156118f057600081816101000a81549060ff0219169055506001016118cd565b5090565b905600a165627a7a72305820856f33b4e47da0e46975e2e66b63a01ec19a4ac7ce7ef7c9cbd7099f78d5b91d0029000000000000000000000000dcaad9fd9a74144d226dbf94ce6162ca9f09ed7e
Deployed Bytecode
0x6080604052600436106100d0576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff1680630ed61407146100d5578063117a5b901461010f57806316a35f5d14610176578063715018a6146101bd5780637229063f146101d457806374b527b01461023557806377d79d10146102885780638da5cb5b1461033a578063922856da1461039157806399851eac14610410578063bc63cc9014610458578063d36a35c9146104f0578063e3599c2114610547578063f2fde38b146105b9575b600080fd5b3480156100e157600080fd5b5061010d600480360381019080803560ff169060200190929190803590602001909291905050506105fc565b005b34801561011b57600080fd5b5061013a60048036038101908080359060200190929190505050610b3e565b604051808463ffffffff1663ffffffff1681526020018360ff1660ff1681526020018260ff1660ff168152602001935050505060405180910390f35b34801561018257600080fd5b506101a160048036038101908080359060200190929190505050610ba1565b604051808260ff1660ff16815260200191505060405180910390f35b3480156101c957600080fd5b506101d2610bc1565b005b3480156101e057600080fd5b5061021f600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610cc3565b6040518082815260200191505060405180910390f35b34801561024157600080fd5b5061024a610cea565b6040518082608460200280838360005b8381101561027557808201518184015260208101905061025a565b5050505090500191505060405180910390f35b34801561029457600080fd5b506102b6600480360381019080803560ff169060200190929190505050610e1a565b60405180806020018563ffffffff1663ffffffff1681526020018460ff1660ff1681526020018360ff1660ff168152602001828103825286818151815260200191508051906020019060200280838360005b83811015610323578082015181840152602081019050610308565b505050509050019550505050505060405180910390f35b34801561034657600080fd5b5061034f610f59565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561039d57600080fd5b506103d2600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610f7e565b6040518082600860200280838360005b838110156103fd5780820151818401526020810190506103e2565b5050505090500191505060405180910390f35b34801561041c57600080fd5b50610456600480360381019080803560ff169060200190929190803590602001908201803590602001919091929391929390505050611008565b005b34801561046457600080fd5b50610499600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611260565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b838110156104dc5780820151818401526020810190506104c1565b505050509050019250505060405180910390f35b3480156104fc57600080fd5b506105056114c8565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561055357600080fd5b506105b7600480360381019080803560ff169060200190929190803590602001908201803590602001919091929391929390803563ffffffff169060200190929190803560ff169060200190929190803560ff1690602001909291905050506114ee565b005b3480156105c557600080fd5b506105fa600480360381019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506115e7565b005b6106046117a0565b600060038460ff1681548110151561061857fe5b906000526020600020906002020160806040519081016040529081600082018054806020026020016040519081016040528092919081815260200182805480156106a757602002820191906000526020600020906000905b82829054906101000a900460ff1660ff16815260200190600101906020826000010492830192600103820291508084116106705790505b505050505081526020016001820160009054906101000a900463ffffffff1663ffffffff1663ffffffff1681526020016001820160049054906101000a900460ff1660ff1660ff1681526020016001820160059054906101000a900460ff1660ff1660ff16815250509150816020015163ffffffff1642101515610793576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f546869732067616d652068617320616c726561647920737461727465642e000081525060200191505060405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e856040518263ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040180828152602001915050602060405180830381600087803b15801561083b57600080fd5b505af115801561084f573d6000803e3d6000fd5b505050506040513d602081101561086557600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff16141515610901576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f596f7520646f6e2774206f776e207468697320636172642e000000000000000081525060200191505060405180910390fd5b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16638dc10768846040518263ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040180828152602001915050606060405180830381600087803b15801561099257600080fd5b505af11580156109a6573d6000803e3d6000fd5b505050506040513d60608110156109bc57600080fd5b8101908080519060200190929190805190602001909291908051906020019092919050505090915050809150506109f782600001518261164e565b1515610a91576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001807f54686973206361726420697320696e76616c696420666f72207468697320676181526020017f6d652e000000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b82600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208560ff16600881101515610ae157fe5b01819055508360ff163373ffffffffffffffffffffffffffffffffffffffff167f4a91d4b4a3182fd8a3defa1bd2bcabb9baafd4f5176e1a32dc147dc4785b45a8856040518082815260200191505060405180910390a350505050565b600381815481101515610b4d57fe5b90600052602060002090600202016000915090508060010160009054906101000a900463ffffffff16908060010160049054906101000a900460ff16908060010160059054906101000a900460ff16905083565b60016020528060005260406000206000915054906101000a900460ff1681565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141515610c1c57600080fd5b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482060405160405180910390a260008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600260205281600052604060002081600881101515610cde57fe5b01600091509150505481565b610cf26117d5565b610cfa6117d5565b60008090505b608460ff168160ff161015610e1257600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16637f791d05826040518263ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808260ff1660ff168152602001915050602060405180830381600087803b158015610da657600080fd5b505af1158015610dba573d6000803e3d6000fd5b505050506040513d6020811015610dd057600080fd5b8101908080519060200190929190505050828260ff16608481101515610df257fe5b602002019061ffff16908161ffff16815250508080600101915050610d00565b819250505090565b60606000806000610e296117a0565b60038660ff16815481101515610e3b57fe5b90600052602060002090600202016080604051908101604052908160008201805480602002602001604051908101604052809291908181526020018280548015610eca57602002820191906000526020600020906000905b82829054906101000a900460ff1660ff1681526020019060010190602082600001049283019260010382029150808411610e935790505b505050505081526020016001820160009054906101000a900463ffffffff1663ffffffff1663ffffffff1681526020016001820160049054906101000a900460ff1660ff1660ff1681526020016001820160059054906101000a900460ff1660ff1660ff1681525050905080600001519450806020015193508060400151925080606001519150509193509193565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610f866117f9565b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600880602002604051908101604052809291908260088015610ffc576020028201915b815481526020019060010190808311610fe8575b50505050509050919050565b60008060008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151561106857600080fd5b600092505b8484905083101561125857848484818110151561108657fe5b905060200201359150600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040180828152602001915050602060405180830381600087803b15801561112057600080fd5b505af1158015611134573d6000803e3d6000fd5b505050506040513d602081101561114a57600080fd5b8101908080519060200190929190505050905081600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208760ff166008811015156111ad57fe5b0154141561124b5760016000838152602001908152602001600020600081819054906101000a900460ff168092919060010191906101000a81548160ff021916908360ff160217905550508560ff168173ffffffffffffffffffffffffffffffffffffffff167fca26b888e4648e2d72b9661459dfa110b0b0549e47f8d3ade764ee3570337d27846040518082815260200191505060405180910390a35b828060010193505061106d565b505050505050565b60608060006060600080600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f7ce25bb886040518263ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001915050600060405180830381600087803b15801561132757600080fd5b505af115801561133b573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250604081101561136557600080fd5b81019080805164010000000081111561137d57600080fd5b8281019050602081018481111561139357600080fd5b81518560208202830111640100000000821117156113b057600080fd5b505092919060200180516401000000008111156113cc57600080fd5b828101905060208101848111156113e257600080fd5b81518560208202830111640100000000821117156113ff57600080fd5b50509291905050505080955050845193508360405190808252806020026020018201604052801561143f5781602001602082028038833980820191505090505b509250600091505b838210156114bb57848281518110151561145d57fe5b9060200190602002015190506001600082815260200190815260200160002060009054906101000a900460ff16838381518110151561149857fe5b9060200190602002019060ff16908160ff16815250508180600101925050611447565b8295505050505050919050565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151561154b57600080fd5b60038760ff1681548110151561155d57fe5b90600052602060002090600202019050858582600001919061158092919061181d565b50838160010160006101000a81548163ffffffff021916908363ffffffff160217905550828160010160046101000a81548160ff021916908360ff160217905550818160010160056101000a81548160ff021916908360ff16021790555050505050505050565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151561164257600080fd5b61164b816116a6565b50565b600080600090505b835181101561169a578260ff16848281518110151561167157fe5b9060200190602002015160ff16141561168d576001915061169f565b8080600101915050611656565b600091505b5092915050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141515156116e257600080fd5b8073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60806040519081016040528060608152602001600063ffffffff168152602001600060ff168152602001600060ff1681525090565b61108060405190810160405280608490602082028038833980820191505090505090565b61010060405190810160405280600890602082028038833980820191505090505090565b82805482825590600052602060002090601f016020900481019282156118b65791602002820160005b8382111561188757833560ff1683826101000a81548160ff021916908360ff1602179055509260200192600101602081600001049283019260010302611846565b80156118b45782816101000a81549060ff0219169055600101602081600001049283019260010302611887565b505b5090506118c391906118c7565b5090565b6118f491905b808211156118f057600081816101000a81549060ff0219169055506001016118cd565b5090565b905600a165627a7a72305820856f33b4e47da0e46975e2e66b63a01ec19a4ac7ce7ef7c9cbd7099f78d5b91d0029
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000dcaad9fd9a74144d226dbf94ce6162ca9f09ed7e
-----Decoded View---------------
Arg [0] : _strikersBaseAddress (address): 0xdCAad9Fd9a74144d226DbF94ce6162ca9f09ED7e
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000dcaad9fd9a74144d226dbf94ce6162ca9f09ed7e
Swarm Source
bzzr://856f33b4e47da0e46975e2e66b63a01ec19a4ac7ce7ef7c9cbd7099f78d5b91d
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.