ETH Price: $3,658.18 (+0.22%)

Transaction Decoder

Block:
21607453 at Jan-12-2025 09:16:11 AM +UTC
Transaction Fee:
0.000101938032712128 ETH $0.37
Gas Used:
27,213 Gas / 3.745931456 Gwei

Account State Difference:

  Address   Before After State Difference Code
0x45516602...462c51F8b
0.008543965630159946 Eth
Nonce: 89
0.008442027597447818 Eth
Nonce: 90
0.000101938032712128
(Titan Builder)
12.87211913246065373 Eth12.87217355846065373 Eth0.000054426

Execution Trace

VIUToken.transfer( _to=0x45516602553B374502276d15291A697462c51F8b, _value=8983076000000000000 ) => ( 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.18;
/**
* Welcome to the Telegram chat http://www.devsolidity.io/
*/
/**
* @title SafeMath
* @dev Math operations with safety checks that throw on error
*/
library SafeMath {
function mul(uint256 a, uint256 b) internal constant returns (uint256) {
uint256 c = a * b;
assert(a == 0 || c / a == b);
return c;
}
function div(uint256 a, uint256 b) internal constant returns (uint256) {
// assert(b > 0); // Solidity automatically throws when dividing by 0
uint256 c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
return c;
}
function sub(uint256 a, uint256 b) internal constant returns (uint256) {
assert(b <= a);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX