ETH Price: $2,693.56 (+8.00%)

Transaction Decoder

Block:
7824623 at May-24-2019 08:55:07 PM +UTC
Transaction Fee:
0.000024965 ETH $0.07
Gas Used:
24,965 Gas / 1 Gwei

Emitted Events:

92 IdentityEvents.IdentityUpdated( account=[Sender] 0x343a3c7f789335c9ea60932d34be258f643678d9, ipfsHash=BC9738D4A19108D54CF5730AB56B612EE0352D803B0ADC27BE00055E834E99B7 )

Account State Difference:

  Address   Before After State Difference Code
0x343a3C7F...F643678d9
0.102623792583029672 Eth
Nonce: 176
0.102598827583029672 Eth
Nonce: 177
0.000024965
(Ethermine)
840.185581883802607116 Eth840.185606848802607116 Eth0.000024965

Execution Trace

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