Transaction Hash:
Block:
20067862 at Jun-11-2024 10:02:59 AM +UTC
Transaction Fee:
0.000583614 ETH
$1.85
Gas Used:
32,423 Gas / 18 Gwei
Emitted Events:
663 |
DxToken.Transfer( from=[Sender] 0xd4d403bd4d267fd6ac23bc192a228d995cafb7b2, to=0x8C8af18887Cd2B9cC87E7e4bdb9484F5e99AB49a, value=1105900000000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 5.054981308078124617 Eth | 5.055067920699975136 Eth | 0.000086612621850519 | |
0x973e5269...8d27041A9 | |||||
0xD4d403BD...95CafB7b2 |
0.000670536 Eth
Nonce: 0
|
0.000086922 Eth
Nonce: 1
| 0.000583614 |
Execution Trace
DxToken.transfer( _to=0x8C8af18887Cd2B9cC87E7e4bdb9484F5e99AB49a, _value=1105900000000000000000000 ) => ( 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