ETH Price: $3,130.61 (+5.45%)

Transaction Decoder

Block:
17546324 at Jun-24-2023 02:08:35 AM +UTC
Transaction Fee:
0.000460960503487462 ETH $1.44
Gas Used:
29,854 Gas / 15.440493853 Gwei

Account State Difference:

  Address   Before After State Difference Code
0x548f27e2...E60038f02
(Upbit Dep: 0x548f27e2c1eb0c90C9C0EF3a4A61a6aE60038f02)
0.244954571039707837 Eth
Nonce: 477
0.244493610536220375 Eth
Nonce: 478
0.000460960503487462
(payload)
33.816907021608206114 Eth33.816966729608206114 Eth0.000059708
0xF4330893...eCF30355e

Execution Trace

MetalToken.transfer( _to=0x971972218F0e3Dc0d55C9A159E44a24372d02850, _value=736284999999 )
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.11;
/**
* Math operations with safety checks
*/
library SafeMath {
function mul(uint a, uint b) internal returns (uint) {
uint c = a * b;
assert(a == 0 || c / a == b);
return c;
}
function div(uint a, uint b) internal returns (uint) {
// assert(b > 0); // Solidity automatically throws when dividing by 0
uint c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
return c;
}
function sub(uint a, uint b) internal returns (uint) {
assert(b <= a);
return a - b;
}
function add(uint a, uint b) internal returns (uint) {
uint c = a + b;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX