ETH Price: $2,741.55 (+5.46%)

Transaction Decoder

Block:
21397281 at Dec-14-2024 12:50:35 AM +UTC
Transaction Fee:
0.000428987773748975 ETH $1.18
Gas Used:
34,825 Gas / 12.318385463 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x10Dce18d...dfc3a51F0
11.936793954118206319 Eth
Nonce: 29534
11.936364966344457344 Eth
Nonce: 29535
0.000428987773748975
0x519475b3...2BDAcB4f5
(beaverbuild)
5.707908849637396205 Eth5.707978499637396205 Eth0.00006965

Execution Trace

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