ETH Price: $2,047.13 (+6.38%)

Transaction Decoder

Block:
5054372 at Feb-08-2018 06:09:00 PM +UTC
Transaction Fee:
0.00152286 ETH $3.12
Gas Used:
76,143 Gas / 20 Gwei

Emitted Events:

16 CryptoLandmarks.Transfer( from=0x5f8568ad07413eb409247ee2a31c33c0ce82f19d, to=[Sender] 0x6132e824e08b78eef93a58108b13497104637122, tokenId=45 )
17 CryptoLandmarks.Purchase( tokenId=45, oldPrice=105284033552675897, newPrice=132990358171801133, prevOwner=0x5f8568ad07413eb409247ee2a31c33c0ce82f19d, owner=[Sender] 0x6132e824e08b78eef93a58108b13497104637122, charityId=0 )

Account State Difference:

  Address   Before After State Difference Code
0x5f8568aD...0ce82f19d 0.087918911130439565 Eth0.187938743005481667 Eth0.100019831875042102
0x6132e824...104637122
0.683236823510419558 Eth
Nonce: 846
0.576429929957743661 Eth
Nonce: 847
0.106806893552675897
0x99474b0a...A7276B931 2.764738444503333058 Eth2.770002646180966853 Eth0.005264201677633795
(Ethermine)
669.080205346155873937 Eth669.081728206155873937 Eth0.00152286

Execution Trace

ETH 0.105284033552676 CryptoLandmarks.purchase( _tokenId=45, _charityId=0 )
  • ETH 0.100019831875042102 0x5f8568ad07413eb409247ee2a31c33c0ce82f19d.CALL( )
  • ETH 0.000000000000000103 0x6132e824e08b78eef93a58108b13497104637122.CALL( )
    pragma solidity ^0.4.18;
    
    contract AccessControl {
        address public owner;
        address[] public admins;
    
        modifier onlyOwner() {
            require(msg.sender == owner);
            _;
        }
    
        modifier onlyAdmins {
            bool found = false;
    
            for (uint i = 0; i < admins.length; i++) {
                if (admins[i] == msg.sender) {
                    found = true;
                    break;
                }
            }
            require(found);
            _;
        }
    
        function addAdmin(address _adminAddress) public onlyOwner {
            admins.push(_adminAddress);
        }
    
        function transferOwnership(address newOwner) public onlyOwner {
            if (newOwner != address(0)) {
                owner = newOwner;
            }
        }
    
    }
    
    contract ERC721 {
        // Required Functions
        function implementsERC721() public pure returns (bool);
        function totalSupply() public view returns (uint256);
        function balanceOf(address _owner) public view returns (uint256);
        function ownerOf(uint256 _tokenId) public view returns (address);
        function transfer(address _to, uint _tokenId) public;
        function approve(address _to, uint256 _tokenId) public;
        function transferFrom(address _from, address _to, uint256 _tokenId) public;
    
        // Optional Functions
        function name() public pure returns (string);
        function symbol() public pure returns (string);
        // function tokenOfOwnerByIndex(address _owner, uint256 _index) public view returns (uint256);
        // function tokenMetadata(uint256 _tokenId) public view returns (string infoUrl);
    
        // Required Events
        event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
        event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
    }
    
    
    contract CryptoLandmarks is AccessControl, ERC721 {
        // Event fired for every new landmark created
        event Creation(uint256 tokenId, string name, address owner);
    
        // Event fired whenever landmark is sold
        event Purchase(uint256 tokenId, uint256 oldPrice, uint256 newPrice, address prevOwner, address owner, uint256 charityId);
    
        // Event fired when price of landmark changes
        event PriceChange(uint256 tokenId, uint256 price);
    
        // Event fired when charities are modified
        event Charity(uint256 charityId, address charity);
    
        string public constant NAME = "Crypto Landmarks"; 
        string public constant SYMBOL = "LANDMARK"; 
    
        // Initial price of card
        uint256 private startingPrice = 0.001 ether;
    
        // Charities enabled in the future
        bool charityEnabled;
    
        // Landmark card
        struct Landmark {
            // unique name of landmark
            string name;
    
            // selling price
            uint256 price;
    
            // maximum price
            uint256 maxPrice;
        }
    
        Landmark[] public landmarks;
    
        address[] public charities;
        
        mapping (uint256 => address) public landmarkToOwner;
        mapping (address => uint256) public landmarkOwnershipCount;
        mapping (uint256 => address) public landmarkToApproved;
    
        function CryptoLandmarks() public {
            owner = msg.sender;
            admins.push(msg.sender);
            charityEnabled = false;
        }
    
        function implementsERC721() public pure returns (bool) {
            return true;
        }
    
        function totalSupply() public view returns (uint256) {
            return landmarks.length;
        }
    
        function balanceOf(address _owner) public view returns (uint256 balance) {
            return landmarkOwnershipCount[_owner];
        }
        function ownerOf(uint256 _tokenId) public view returns (address owner) {
            owner = landmarkToOwner[_tokenId];
            require(owner != address(0));
        }
        function transfer(address _to, uint256 _tokenId) public {
            require(_to != address(0));
            require(landmarkToOwner[_tokenId] == msg.sender);
    
            _transfer(msg.sender, _to, _tokenId);
        }
        function approve(address _to, uint256 _tokenId) public {
            require(landmarkToOwner[_tokenId] == msg.sender);
            landmarkToApproved[_tokenId] = _to;
            Approval(msg.sender, _to, _tokenId);
        }
        function transferFrom(address _from, address _to, uint256 _tokenId) public {
            require(landmarkToApproved[_tokenId] == _to);
            require(_to != address(0));
            require(landmarkToOwner[_tokenId] == _from);
    
            _transfer(_from, _to, _tokenId);
        }
        function name() public pure returns (string) {
            return NAME;
        }
        function symbol() public pure returns (string) {
            return SYMBOL;
        }
    
        function addCharity(address _charity) public onlyAdmins {
            require(_charity != address(0));
    
            uint256 newCharityId = charities.push(_charity) - 1;
    
            // emit charity event
            Charity(newCharityId, _charity);
        }
    
        function deleteCharity(uint256 _charityId) public onlyAdmins {
            delete charities[_charityId];
    
            // emit charity event
            Charity(_charityId, address(0));
        }
    
        function getCharity(uint256 _charityId) public view returns (address) {
            return charities[_charityId];
        }
    
        function createLandmark(string _name, address _owner, uint256 _price) public onlyAdmins {
            if (_price <= 0) {
                _price = startingPrice;
            }
            
            Landmark memory _landmark = Landmark({
                name: _name,
                price: _price,
                maxPrice: _price
            });
            uint256 newLandmarkId = landmarks.push(_landmark) - 1;
    
            Creation(newLandmarkId, _name, _owner);
    
            _transfer(address(0), _owner, newLandmarkId);
    
    
        }
    
        function getLandmark(uint256 _tokenId) public view returns (
            string landmarkName,
            uint256 sellingPrice,
            uint256 maxPrice,
            address owner
        ) {
            Landmark storage landmark = landmarks[_tokenId];
            landmarkName = landmark.name;
            sellingPrice = landmark.price;
            maxPrice = landmark.maxPrice;
            owner = landmarkToOwner[_tokenId];
        }
    
        function purchase(uint256 _tokenId, uint256 _charityId) public payable {
            // seller
            address oldOwner = landmarkToOwner[_tokenId];
            // current price
            uint sellingPrice = landmarks[_tokenId].price;
            // buyer
            address newOwner = msg.sender;
            
            
            require(oldOwner != newOwner);
            require(newOwner != address(0));
            require(msg.value >= sellingPrice);
    
            uint256 payment = uint256(SafeMath.div(SafeMath.mul(sellingPrice, 95), 100));
            uint256 excess = SafeMath.sub(msg.value, sellingPrice);
    
            if (charityEnabled == true) {
                
                // address of choosen charity
                address charity = charities[_charityId];
    
                // check if charity address is not null
                require(charity != address(0));
                
                // 1% of selling price
                uint256 donate = uint256(SafeMath.div(SafeMath.mul(sellingPrice, 1), 100));
    
                // transfer money to charity
                charity.transfer(donate);
                
            }
    
            uint priceIncrease = 120;
    
            // price doubles below 32 finney
            if (sellingPrice <= 32 finney) {
                priceIncrease = 200;
            }
    
            // set new price
            landmarks[_tokenId].price = SafeMath.div(SafeMath.mul(sellingPrice, priceIncrease), 95);
            
            // set maximum price
            landmarks[_tokenId].maxPrice = SafeMath.div(SafeMath.mul(sellingPrice, priceIncrease), 95);
    
            // transfer card to buyer
            _transfer(oldOwner, newOwner, _tokenId);
    
            // transfer money to seller
            if (oldOwner != address(this)) {
                oldOwner.transfer(payment);
            }
    
            // emit event that landamrk was sold;
            Purchase(_tokenId, sellingPrice, landmarks[_tokenId].price, oldOwner, newOwner, _charityId);
            
    
            // transfer excess back to buyer
            newOwner.transfer(excess);
        }
    
        // owner can change price
        function changePrice(uint256 _tokenId, uint256 _price) public {
            // only owner can change price
            require(landmarkToOwner[_tokenId] == msg.sender);
    
            // price cannot be higher than maximum price
            require(landmarks[_tokenId].maxPrice >= _price);
    
            // set new price
            landmarks[_tokenId].price = _price;
            
            // emit event
            PriceChange(_tokenId, _price);
        }
    
        function priceOfLandmark(uint256 _tokenId) public view returns (uint256) {
            return landmarks[_tokenId].price;
        }
    
        function tokensOfOwner(address _owner) public view returns(uint256[]) {
            uint256 tokenCount = balanceOf(_owner);
    
            uint256[] memory result = new uint256[](tokenCount);
            uint256 total = totalSupply();
            uint256 resultIndex = 0;
    
            for(uint256 i = 0; i <= total; i++) {
                if (landmarkToOwner[i] == _owner) {
                    result[resultIndex] = i;
                    resultIndex++;
                }
            }
            return result;
        }
    
    
        function _transfer(address _from, address _to, uint256 _tokenId) private {
            landmarkOwnershipCount[_to]++;
            landmarkToOwner[_tokenId] = _to;
    
            if (_from != address(0)) {
                landmarkOwnershipCount[_from]--;
                delete landmarkToApproved[_tokenId];
            }
            Transfer(_from, _to, _tokenId);
        }
    
        function enableCharity() external onlyOwner {
            require(!charityEnabled);
            charityEnabled = true;
        }
    
        function disableCharity() external onlyOwner {
            require(charityEnabled);
            charityEnabled = false;
        }
    
        function withdrawBalance() external onlyOwner {
            owner.transfer(this.balance);
        }
    
    }
    
    
    /**
     * @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) {
        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;
      }
    }