ETH Price: $3,751.31 (+0.81%)

Transaction Decoder

Block:
7824623 at May-24-2019 08:55:07 PM +UTC
Transaction Fee:
0.000024965 ETH $0.09
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)]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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);
}
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX