Transaction Hash:
Block:
20067836 at Jun-11-2024 09:57:47 AM +UTC
Transaction Fee:
0.000638010380649785 ETH
$2.32
Gas Used:
37,235 Gas / 17.134695331 Gwei
Emitted Events:
131 |
DxToken.Transfer( from=[Sender] 0x470ac7b65d5cb178ec9a6c6ec54eb87f9cace552, to=0x8C8af18887Cd2B9cC87E7e4bdb9484F5e99AB49a, value=2331505000000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x470aC7B6...f9CacE552 |
0.0006768 Eth
Nonce: 0
|
0.000038789619350215 Eth
Nonce: 1
| 0.000638010380649785 | ||
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 14.798691095840186634 Eth | 14.798840035840186634 Eth | 0.00014894 | |
0x973e5269...8d27041A9 |
Execution Trace
DxToken.transfer( _to=0x8C8af18887Cd2B9cC87E7e4bdb9484F5e99AB49a, _value=2331505000000000000000000 ) => ( True )
transfer[ERC20Basic (ln:156)]
1234567891011121314151617181920212223242526pragma solidity ^0.4.23;/*** @title SafeMath* @dev Math operations with safety checks that throw on error*/library SafeMath {/*** @dev Multiplies two numbers, throws on overflow.*/function mul(uint256 a, uint256 b) internal pure returns (uint256 c) {if (a == 0) {return 0;}c = a * b;assert(c / a == b);return c;}/*** @dev Integer division of two numbers, truncating the quotient.*/function div(uint256 a, uint256 b) internal pure returns (uint256) {// assert(b > 0); // Solidity automatically throws when dividing by 0