Transaction Hash:
Block:
22123056 at Mar-25-2025 09:34:23 AM +UTC
Transaction Fee:
0.000083143516471079 ETH
$0.30
Gas Used:
54,347 Gas / 1.529863957 Gwei
Emitted Events:
331 |
DxToken.Transfer( from=[Sender] 0x0d0707963952f2fba59dd06f2b425ace40b492fe, to=0x9d9D49682BbEe5D4e27e90Fd8Df0dfB03b576f4E, value=2593803601000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x0D070796...e40b492Fe | (Gate.io 1) |
10,810.885824775105833355 Eth
Nonce: 7737614
|
10,810.885741631589362276 Eth
Nonce: 7737615
| 0.000083143516471079 | |
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 9.949725541603906383 Eth | 9.949779892408196383 Eth | 0.00005435080429 | |
0x973e5269...8d27041A9 |
Execution Trace
DxToken.transfer( _to=0x9d9D49682BbEe5D4e27e90Fd8Df0dfB03b576f4E, _value=2593803601000000000000000 ) => ( 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