ETH Price: $2,498.21 (-0.77%)
Gas: 0.48 Gwei

Transaction Decoder

Block:
8067630 at Jul-01-2019 07:55:46 PM +UTC
Transaction Fee:
0.000050167952397 ETH $0.13
Gas Used:
25,029 Gas / 2.004393 Gwei

Emitted Events:

81 IdentityEvents.IdentityUpdated( account=[Sender] 0x343a3c7f789335c9ea60932d34be258f643678d9, ipfsHash=3A831F95F9BD086BFBD896DDC1F57DB67E8B5778626BA2791849FECCEAC5D3F8 )

Account State Difference:

  Address   Before After State Difference Code
0x343a3C7F...F643678d9
0.072217116743029672 Eth
Nonce: 236
0.072166948790632672 Eth
Nonce: 237
0.000050167952397
(Ethermine)
898.601206204569102608 Eth898.601256372521499608 Eth0.000050167952397

Execution Trace

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