ETH Price: $2,534.26 (+1.19%)

Transaction Decoder

Block:
7633835 at Apr-25-2019 02:10:13 AM +UTC
Transaction Fee:
0.000075087 ETH $0.19
Gas Used:
25,029 Gas / 3 Gwei

Emitted Events:

68 IdentityEvents.IdentityUpdated( account=[Sender] 0x343a3c7f789335c9ea60932d34be258f643678d9, ipfsHash=0A98F23A15BE97E1855E2DC8C285F682DC36584583984503B723F7933DC38EF2 )

Account State Difference:

  Address   Before After State Difference Code
0x343a3C7F...F643678d9
0.04546704232582348 Eth
Nonce: 150
0.04539195532582348 Eth
Nonce: 151
0.000075087
(Ethermine)
411.648906439395571608 Eth411.648981526395571608 Eth0.000075087

Execution Trace

IdentityEvents.emitIdentityUpdated( ipfsHash=0A98F23A15BE97E1855E2DC8C285F682DC36584583984503B723F7933DC38EF2 )
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);
    }
}