ETH Price: $2,497.48 (-0.80%)

Transaction Decoder

Block:
7907768 at Jun-06-2019 08:18:48 PM +UTC
Transaction Fee:
0.000100116 ETH $0.25
Gas Used:
25,029 Gas / 4 Gwei

Emitted Events:

145 IdentityEvents.IdentityUpdated( account=[Sender] 0x343a3c7f789335c9ea60932d34be258f643678d9, ipfsHash=A018E5ABF4CF07E914D8C8F18C2A2764612E1EAB55B4BF5EF762E12AECE98F21 )

Account State Difference:

  Address   Before After State Difference Code
0x343a3C7F...F643678d9
0.084713380683029672 Eth
Nonce: 196
0.084613264683029672 Eth
Nonce: 197
0.000100116
(F2Pool Old)
2,990.079232347725710815 Eth2,990.079332463725710815 Eth0.000100116

Execution Trace

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