Transaction Hash:
Block:
20067663 at Jun-11-2024 09:22:47 AM +UTC
Transaction Fee:
0.00044682 ETH
$1.39
Gas Used:
37,235 Gas / 12 Gwei
Emitted Events:
701 |
DxToken.Transfer( from=[Sender] 0xdbd789c942a5c0abf959031324b2b36a79d04d0e, to=0x8C8af18887Cd2B9cC87E7e4bdb9484F5e99AB49a, value=1336010000000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 14.671609286219345824 Eth | 14.671738084412352494 Eth | 0.00012879819300667 | |
0x973e5269...8d27041A9 | |||||
0xdBD789c9...a79D04d0E |
0.0004512 Eth
Nonce: 0
|
0.00000438 Eth
Nonce: 1
| 0.00044682 |
Execution Trace
DxToken.transfer( _to=0x8C8af18887Cd2B9cC87E7e4bdb9484F5e99AB49a, _value=1336010000000000000000000 ) => ( 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