Transaction Hash:
Block:
22642937 at Jun-06-2025 03:40:47 AM +UTC
Transaction Fee:
0.00010406207381424 ETH
$0.38
Gas Used:
54,335 Gas / 1.915194144 Gwei
Emitted Events:
7 |
DxToken.Transfer( from=[Sender] 0x0d0707963952f2fba59dd06f2b425ace40b492fe, to=0x116aF2Bc00B240C1A34518254b26888DE89dD6b8, value=1479987909506840000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x0D070796...e40b492Fe | (Gate.io 1) |
7,509.364070928093289036 Eth
Nonce: 8061771
|
7,509.363966866019474796 Eth
Nonce: 8061772
| 0.00010406207381424 | |
0x95035E67...dC2D7C320
Miner
| (Fee Recipient: 0x9503...320) | 30.507205076739576558 Eth | 30.507259415543026558 Eth | 0.00005433880345 | |
0x973e5269...8d27041A9 |
Execution Trace
DxToken.transfer( _to=0x116aF2Bc00B240C1A34518254b26888DE89dD6b8, _value=1479987909506840000000000 ) => ( 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