ETH Price: $2,488.46 (-0.98%)

Transaction Decoder

Block:
7850416 at May-28-2019 09:24:14 PM +UTC
Transaction Fee:
0.000025029 ETH $0.06
Gas Used:
25,029 Gas / 1 Gwei

Emitted Events:

59 IdentityEvents.IdentityUpdated( account=[Sender] 0x343a3c7f789335c9ea60932d34be258f643678d9, ipfsHash=F0364D6EF70E408B707EE60949AC2D1669A24FC45A7FEC36D8D0100C3D0963A5 )

Account State Difference:

  Address   Before After State Difference Code
0x343a3C7F...F643678d9
0.099618751583029672 Eth
Nonce: 184
0.099593722583029672 Eth
Nonce: 185
0.000025029
(Spark Pool)
3,822.840740085207956895 Eth3,822.840765114207956895 Eth0.000025029

Execution Trace

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