ETH Price: $1,904.43 (-0.36%)
Gas: 0.55 Gwei

Transaction Decoder

Block:
7507070 at Apr-05-2019 08:48:02 AM +UTC
Transaction Fee:
0.000075087 ETH $0.14
Gas Used:
25,029 Gas / 3 Gwei

Emitted Events:

49 IdentityEvents.IdentityUpdated( account=[Sender] 0x2db839cc6f087318674563ccab6e1efbdede2599, ipfsHash=365E93585638CA2A804E371DB2BF058DF831DC5927162AEF0D77460D07445207 )

Account State Difference:

  Address   Before After State Difference Code
(PandaMiner)
136.648920550462099815 Eth136.648995637462099815 Eth0.000075087
0x2Db839cC...bdEDE2599
0.062076718387255655 Eth
Nonce: 104
0.062001631387255655 Eth
Nonce: 105
0.000075087

Execution Trace

IdentityEvents.emitIdentityUpdated( ipfsHash=365E93585638CA2A804E371DB2BF058DF831DC5927162AEF0D77460D07445207 )
emitIdentityUpdated[IdentityEvents (ln:12)]
pragma solidity ^0.4.24;

//
// A contract to emit events to track changes of users identity data stored in IPFS.
//

contract IdentityEvents {
    event IdentityUpdated(address indexed account, bytes32 ipfsHash);
    event IdentityDeleted(address indexed account);

    // @param ipfsHash IPFS hash of the updated identity.
    function emitIdentityUpdated(bytes32 ipfsHash) public {
        emit IdentityUpdated(msg.sender, ipfsHash);
    }

    function emitIdentityDeleted() public {
        emit IdentityDeleted(msg.sender);
    }
}