ETH Price: $2,996.81 (+1.82%)

Transaction Decoder

Block:
20759536 at Sep-16-2024 12:14:23 AM +UTC
Transaction Fee:
0.000087504128257 ETH $0.26
Gas Used:
47,125 Gas / 1.856851528 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x1503cAD6...79Cb618b6
0.000314199401027803 Eth
Nonce: 8
0.000226695272770803 Eth
Nonce: 9
0.000087504128257
0x519475b3...2BDAcB4f5
(beaverbuild)
10.788102686097841278 Eth10.788121454431677153 Eth0.000018768333835875

Execution Trace

VIUToken.transfer( _to=0x74569023C23A48ba2b0D9aEBD8eb334c46Bd108b, _value=584581025200000000000 ) => ( 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