ETH Price: $2,954.73 (-0.45%)

Transaction Decoder

Block:
21233906 at Nov-21-2024 05:05:23 AM +UTC
Transaction Fee:
0.000467021161420975 ETH $1.38
Gas Used:
30,025 Gas / 15.554410039 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x0825297B...623247949
0.01573356864355053 Eth
Nonce: 19
0.015266547482129555 Eth
Nonce: 20
0.000467021161420975
0x519475b3...2BDAcB4f5
(beaverbuild)
13.781714357986097978 Eth13.781778176308371828 Eth0.00006381832227385

Execution Trace

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