ETH Price: $3,754.83 (+3.31%)
Gas: 0.24 Gwei

Transaction Decoder

Block:
17530899 at Jun-21-2023 10:06:23 PM +UTC
Transaction Fee:
0.000755169405205632 ETH $2.84
Gas Used:
30,336 Gas / 24.893506237 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x548f27e2...E60038f02
(Upbit Dep: 0x548f27e2c1eb0c90C9C0EF3a4A61a6aE60038f02)
55.280119349636517604 Eth
Nonce: 401
55.279364180231311972 Eth
Nonce: 402
0.000755169405205632
(Flashbots: Builder)
0.097316269103141114 Eth0.097376941103141114 Eth0.000060672
0xF629cBd9...80E2a3B9c

Execution Trace

ENJToken.transfer( _to=0xAc8d8d2E12C4491b3671c1bd87dE09a32C6692Ac, _value=8151999999990000000000 ) => ( 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