First deploy of CryptHall Of Fame by colmea.eth, abandoned 8 minutes later. No tokens were ever created on this instance. The canonical contract is at 0xb041de4
Token Information
Key Facts
Description
Abandoned first deploy of CryptHall Of Fame. colmea.eth (0xc1E83b6004f94729fF9CFa5db5B4C744150b2619) deployed this contract on 2018-02-08 at 16:44 UTC and abandoned it 8 minutes later, deploying the canonical version at 0xb041de495505262e113d090edc9633389e1a3596 at 16:52 UTC instead.
Why two deploys back-to-back is unknown — likely a fixed bug or a config tweak the dev wanted in the genesis state. No tokens were ever created here. totalSupply() is 0 and the contract has never received a transaction beyond its own creation. Bytecode is identical to the canonical contract (10,022 bytes runtime); the on-chain name() / symbol() / ceoAddress() all match.
Go to the canonical CryptHall Of Fame contract for the actual game history, the 12 hero tokens, and the on-chain updateHero rename mechanic.
Source Verified
Exact runtime bytecode match (10,022 bytes; only the bzzr metadata hash at the tail differs, expected). CelebrityToken-template fork with 4-string Hero struct, owner-renameable updateHero, simplified 150/94 single-step pricing.. Optimizer: OFF
Heuristic Analysis
The following characteristics were detected through bytecode analysis and may not be accurate.
Byzantium Era
First Metropolis hard fork. Added zk-SNARK precompiles, REVERT opcode, and staticcall.
Bytecode Overview
Verified Source Available
Source verified through compiler archaeology and exact bytecode matching.
View Verification ProofShow source code (Solidity)
// Submitted by EthereumHistory (ethereumhistory.com)
pragma solidity ^0.4.18; // solhint-disable-line
/// @title Interface for contracts conforming to ERC-721: Non-Fungible Tokens
/// @author Dieter Shirley <dete@axiomzen.co> (https://github.com/dete)
contract ERC721 {
// Required methods
function approve(address _to, uint256 _tokenId) public;
function balanceOf(address _owner) public view returns (uint256 balance);
function implementsERC721() public pure returns (bool);
function ownerOf(uint256 _tokenId) public view returns (address addr);
function takeOwnership(uint256 _tokenId) public;
function totalSupply() public view returns (uint256 total);
function transferFrom(address _from, address _to, uint256 _tokenId) public;
function transfer(address _to, uint256 _tokenId) public;
event Transfer(address indexed from, address indexed to, uint256 tokenId);
event Approval(address indexed owner, address indexed approved, uint256 tokenId);
// Optional
// function name() public view returns (string name);
// function symbol() public view returns (string symbol);
// function tokenOfOwnerByIndex(address _owner, uint256 _index) external view returns (uint256 tokenId);
// function tokenMetadata(uint256 _tokenId) public view returns (string infoUrl);
}
contract HeroToken is ERC721 {
/*** EVENTS ***/
/// @dev The Birth event is fired whenever a new hero comes into existence.
event Birth(uint256 tokenId, string slug, address owner);
/// @dev The TokenSold event is fired whenever a token is sold.
event TokenSold(uint256 tokenId, uint256 oldPrice, uint256 newPrice, address prevOwner, address winner, string slug);
/// @dev Transfer event as defined in current draft of ERC721.
/// ownership is assigned, including births.
event Transfer(address from, address to, uint256 tokenId);
/*** CONSTANTS ***/
/// @notice Name and symbol of the non fungible token, as defined in ERC721.
string public constant NAME = "CryptHall Of Fame"; // solhint-disable-line
string public constant SYMBOL = "HeroToken"; // solhint-disable-line
uint256 private startingPrice = 0.003 ether;
/*** STORAGE ***/
/// @dev A mapping from hero IDs to the address that owns them. All heroes have
/// some valid owner address.
mapping (uint256 => address) public heroIndexToOwner;
// @dev A mapping from owner address to count of tokens that address owns.
// Used internally inside balanceOf() to resolve ownership count.
mapping (address => uint256) private ownershipTokenCount;
/// @dev A mapping from HeroIDs to an address that has been approved to call
/// transferFrom(). Each Hero can only have one approved address for transfer
/// at any time. A zero value means no approval is outstanding.
mapping (uint256 => address) public heroIndexToApproved;
// @dev A mapping from HeroIDs to the price of the token.
mapping (uint256 => uint256) private heroIndexToPrice;
// The addresses of the accounts (or contracts) that can execute actions within each roles.
address public ceoAddress;
address public cooAddress;
uint256 public heroCreatedCount;
/*** DATATYPES ***/
struct Hero {
string slug;
string name;
string imageFilename;
string heroName;
}
Hero[] private heroes;
/*** ACCESS MODIFIERS ***/
/// @dev Access modifier for CEO-only functionality
modifier onlyCEO() {
require(msg.sender == ceoAddress);
_;
}
/// @dev Access modifier for COO-only functionality
modifier onlyCOO() {
require(msg.sender == cooAddress);
_;
}
/// Access modifier for contract owner only functionality
modifier onlyCLevel() {
require(
msg.sender == ceoAddress ||
msg.sender == cooAddress
);
_;
}
/*** CONSTRUCTOR ***/
function HeroToken() public {
ceoAddress = msg.sender;
cooAddress = msg.sender;
}
/*** PUBLIC FUNCTIONS ***/
/// @notice Grant another address the right to transfer token via takeOwnership() and transferFrom().
/// @param _to The address to be granted transfer approval. Pass address(0) to
/// clear all approvals.
/// @param _tokenId The ID of the Token that can be transferred if this call succeeds.
/// @dev Required for ERC-721 compliance.
function approve(
address _to,
uint256 _tokenId
) public {
// Caller must own token.
require(_owns(msg.sender, _tokenId));
heroIndexToApproved[_tokenId] = _to;
Approval(msg.sender, _to, _tokenId);
}
/// For querying balance of a particular account
/// @param _owner The address for balance query
/// @dev Required for ERC-721 compliance.
function balanceOf(address _owner) public view returns (uint256 balance) {
return ownershipTokenCount[_owner];
}
/// @dev Creates a new special Hero with the given slug, with given _price and assignes it to an address.
function createSpecialHero(address _owner, string _slug, uint256 _price) public onlyCOO {
address heroOwner = _owner;
if (heroOwner == address(0)) {
heroOwner = cooAddress;
}
if (_price <= 0) {
_price = startingPrice;
}
heroCreatedCount++;
_createHero(_slug, heroOwner, _price);
}
/// @dev Creates a new Hero with the given slug.
function createNewHero(string _slug) public onlyCOO {
_createHero(_slug, address(this), startingPrice);
}
/// @notice Returns all the relevant information about a specific hero.
/// @param _tokenId The tokenId of the hero of interest.
function getHero(uint256 _tokenId) public view returns (
string slug,
uint256 sellingPrice,
address owner,
string name,
string imageFilename,
string heroName
) {
Hero storage hero = heroes[_tokenId];
slug = hero.slug;
sellingPrice = heroIndexToPrice[_tokenId];
owner = heroIndexToOwner[_tokenId];
name = hero.name;
imageFilename = hero.imageFilename;
heroName = hero.heroName;
}
function implementsERC721() public pure returns (bool) {
return true;
}
/// @dev Required for ERC-721 compliance.
function name() public pure returns (string) {
return NAME;
}
/// For querying owner of token
/// @param _tokenId The tokenID for owner inquiry
/// @dev Required for ERC-721 compliance.
function ownerOf(uint256 _tokenId)
public
view
returns (address owner)
{
owner = heroIndexToOwner[_tokenId];
require(owner != address(0));
}
function payout(address _to) public onlyCLevel {
_payout(_to);
}
// Allows someone to send ether and obtain the token
function purchase(uint256 _tokenId) public payable {
address oldOwner = heroIndexToOwner[_tokenId];
address newOwner = msg.sender;
uint256 sellingPrice = heroIndexToPrice[_tokenId];
// Making sure token owner is not sending to self
require(oldOwner != newOwner);
// Safety check to prevent against an unexpected 0x0 default.
require(_addressNotNull(newOwner));
// Making sure sent amount is greater than or equal to the sellingPrice
require(msg.value >= sellingPrice);
uint256 payment = uint256(SafeMath.div(SafeMath.mul(sellingPrice, 94), 100));
uint256 purchaseExcess = SafeMath.sub(msg.value, sellingPrice);
heroIndexToPrice[_tokenId] = SafeMath.div(SafeMath.mul(sellingPrice, 150), 94);
_transfer(oldOwner, newOwner, _tokenId);
// Pay previous tokenOwner if owner is not contract
if (oldOwner != address(this)) {
oldOwner.transfer(payment); //(1-0.06)
}
TokenSold(_tokenId, sellingPrice, heroIndexToPrice[_tokenId], oldOwner, newOwner, heroes[_tokenId].slug);
msg.sender.transfer(purchaseExcess);
}
function priceOf(uint256 _tokenId) public view returns (uint256 price) {
return heroIndexToPrice[_tokenId];
}
/// @dev Clears the imageFilename of a hero. CLevel only.
function resetImage(uint256 _tokenId) public onlyCLevel {
Hero storage hero = heroes[_tokenId];
hero.imageFilename = "";
}
/// @dev Updates the imageFilename and heroName for a hero. Owner only.
function updateHero(uint256 _tokenId, string _imageFilename, string _heroName) public {
require(_owns(msg.sender, _tokenId));
Hero storage hero = heroes[_tokenId];
hero.imageFilename = _imageFilename;
hero.heroName = _heroName;
}
/// @dev Assigns a new address to act as the CEO. Only available to the current CEO.
/// @param _newCEO The address of the new CEO
function setCEO(address _newCEO) public onlyCEO {
require(_newCEO != address(0));
ceoAddress = _newCEO;
}
/// @dev Assigns a new address to act as the COO. Only available to the current COO.
/// @param _newCOO The address of the new COO
function setCOO(address _newCOO) public onlyCEO {
require(_newCOO != address(0));
cooAddress = _newCOO;
}
/// @dev Required for ERC-721 compliance.
function symbol() public pure returns (string) {
return SYMBOL;
}
/// @notice Allow pre-approved user to take ownership of a token
/// @param _tokenId The ID of the Token that can be transferred if this call succeeds.
/// @dev Required for ERC-721 compliance.
function takeOwnership(uint256 _tokenId) public {
address newOwner = msg.sender;
address oldOwner = heroIndexToOwner[_tokenId];
// Safety check to prevent against an unexpected 0x0 default.
require(_addressNotNull(newOwner));
// Making sure transfer is approved
require(_approved(newOwner, _tokenId));
_transfer(oldOwner, newOwner, _tokenId);
}
/// @param _owner The owner whose hero tokens we are interested in.
/// @dev This method MUST NEVER be called by smart contract code. First, it's fairly
/// expensive (it walks the entire Heroes array looking for heroes belonging to owner),
/// but it also returns a dynamic array, which is only supported for web3 calls, and
/// not contract-to-contract calls.
function tokensOfOwner(address _owner) public view returns(uint256[] ownerTokens) {
uint256 tokenCount = balanceOf(_owner);
if (tokenCount == 0) {
// Return an empty array
return new uint256[](0);
} else {
uint256[] memory result = new uint256[](tokenCount);
uint256 totalHeroes = totalSupply();
uint256 resultIndex = 0;
uint256 heroId;
for (heroId = 0; heroId <= totalHeroes; heroId++) {
if (heroIndexToOwner[heroId] == _owner) {
result[resultIndex] = heroId;
resultIndex++;
}
}
return result;
}
}
/// For querying totalSupply of token
/// @dev Required for ERC-721 compliance.
function totalSupply() public view returns (uint256 total) {
return heroes.length;
}
/// Owner initates the transfer of the token to another account
/// @param _to The address for the token to be transferred to.
/// @param _tokenId The ID of the Token that can be transferred if this call succeeds.
/// @dev Required for ERC-721 compliance.
function transfer(
address _to,
uint256 _tokenId
) public {
require(_owns(msg.sender, _tokenId));
require(_addressNotNull(_to));
_transfer(msg.sender, _to, _tokenId);
}
/// Third-party initiates transfer of token from address _from to address _to
/// @param _from The address for the token to be transferred from.
/// @param _to The address for the token to be transferred to.
/// @param _tokenId The ID of the Token that can be transferred if this call succeeds.
/// @dev Required for ERC-721 compliance.
function transferFrom(
address _from,
address _to,
uint256 _tokenId
) public {
require(_owns(_from, _tokenId));
require(_approved(_to, _tokenId));
require(_addressNotNull(_to));
_transfer(_from, _to, _tokenId);
}
/*** PRIVATE FUNCTIONS ***/
/// Safety check on _to address to prevent against an unexpected 0x0 default.
function _addressNotNull(address _to) private pure returns (bool) {
return _to != address(0);
}
/// For checking approval of transfer for address _to
function _approved(address _to, uint256 _tokenId) private view returns (bool) {
return heroIndexToApproved[_tokenId] == _to;
}
/// For creating Hero
function _createHero(string _slug, address _owner, uint256 _price) private {
Hero memory _hero = Hero({
slug: _slug,
name: "",
imageFilename: "",
heroName: ""
});
uint256 newHeroId = heroes.push(_hero) - 1;
// It's probably never going to happen, 4 billion tokens are A LOT, but
// let's just be 100% sure we never let this happen.
require(newHeroId == uint256(uint32(newHeroId)));
Birth(newHeroId, _slug, _owner);
heroIndexToPrice[newHeroId] = _price;
// This will assign ownership, and also emit the Transfer event as
// per ERC721 draft
_transfer(address(0), _owner, newHeroId);
}
/// Check for token ownership
function _owns(address claimant, uint256 _tokenId) private view returns (bool) {
return claimant == heroIndexToOwner[_tokenId];
}
/// For paying out balance on contract
function _payout(address _to) private {
if (_to == address(0)) {
ceoAddress.transfer(this.balance);
} else {
_to.transfer(this.balance);
}
}
/// @dev Assigns ownership of a specific Hero to an address.
function _transfer(address _from, address _to, uint256 _tokenId) private {
// Since the number of heroes is capped to 2^32 we can't overflow this
ownershipTokenCount[_to]++;
//transfer ownership
heroIndexToOwner[_tokenId] = _to;
// When creating new heroes _from is 0x0, but we can't account that address.
if (_from != address(0)) {
ownershipTokenCount[_from]--;
// clear any previously approved ownership exchange
delete heroIndexToApproved[_tokenId];
}
// Emit the transfer event.
Transfer(_from, _to, _tokenId);
}
}
library SafeMath {
/**
* @dev Multiplies two numbers, throws on overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
if (a == 0) {
return 0;
}
uint256 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 c;
}
/**
* @dev Substracts 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) {
uint256 c = a + b;
assert(c >= a);
return c;
}
}