ETH Price: $2,487.68 (-1.02%)
Gas: 0.7 Gwei

Transaction Decoder

Block:
7947817 at Jun-13-2019 03:06:14 AM +UTC
Transaction Fee:
0.00009911484 ETH $0.25
Gas Used:
25,029 Gas / 3.96 Gwei

Emitted Events:

40 IdentityEvents.IdentityUpdated( account=[Sender] 0x343a3c7f789335c9ea60932d34be258f643678d9, ipfsHash=A0AEE79EF716DB38F976EC2F1EF8F3A39073BA80449B9F7CFF91FC113F9DD8C0 )

Account State Difference:

  Address   Before After State Difference Code
(PandaMiner)
191.580326127299213053 Eth191.580425242139213053 Eth0.00009911484
0x343a3C7F...F643678d9
0.083091483983029672 Eth
Nonce: 209
0.082992369143029672 Eth
Nonce: 210
0.00009911484

Execution Trace

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