ETH Price: $3,792.91 (+4.88%)

Transaction Decoder

Block:
15487262 at Sep-07-2022 12:40:53 AM +UTC
Transaction Fee:
0.0005274479400582 ETH $2.00
Gas Used:
30,324 Gas / 17.39374555 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
41.171115194846077905 Eth41.171175842846077905 Eth0.000060648
0xe3792A9c...C41631090
(Upbit Dep: 0xe3792A9c235D434B702023b33F03C48C41631090)
152.16768188665751606 Eth
Nonce: 6806
152.16715443871745786 Eth
Nonce: 6807
0.0005274479400582
0xF629cBd9...80E2a3B9c

Execution Trace

ENJToken.transfer( _to=0x11819123d080d0aE04c682e3FC47d21D36a03cb0, _value=72081721869440000000000 ) => ( success=True )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
pragma solidity ^0.4.15;
/*
Utilities & Common Modifiers
*/
contract Utils {
/**
constructor
*/
function Utils() {
}
// validates an address - currently only checks that it isn't null
modifier validAddress(address _address) {
require(_address != 0x0);
_;
}
// verifies that the address is different than this contract address
modifier notThis(address _address) {
require(_address != address(this));
_;
}
// Overflow protected math functions
/**
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX