Transaction Hash:
Block:
20067678 at Jun-11-2024 09:25:47 AM +UTC
Transaction Fee:
0.000373746074982669 ETH
$1.39
Gas Used:
32,423 Gas / 11.527189803 Gwei
Emitted Events:
315 |
DxToken.Transfer( from=[Sender] 0xe2967bdb29eba295705b149ac8020f99025309a1, to=0x8C8af18887Cd2B9cC87E7e4bdb9484F5e99AB49a, value=504056000000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 14.712814188560951278 Eth | 14.712943880560951278 Eth | 0.000129692 | |
0x973e5269...8d27041A9 | |||||
0xE2967bDB...9025309a1 |
0.000447024 Eth
Nonce: 0
|
0.000073277925017331 Eth
Nonce: 1
| 0.000373746074982669 |
Execution Trace
DxToken.transfer( _to=0x8C8af18887Cd2B9cC87E7e4bdb9484F5e99AB49a, _value=504056000000000000000000 ) => ( 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