Transaction Hash:
Block:
21564781 at Jan-06-2025 10:19:11 AM +UTC
Transaction Fee:
0.000626577003210975 ETH
$2.41
Gas Used:
48,585 Gas / 12.896511335 Gwei
Emitted Events:
435 |
DxToken.Approval( owner=[Sender] 0xeb7f8306db581da48f90abb69fd3ffce4bd57fa7, spender=0x00000000...072C22734, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 5.624502196979141929 Eth | 5.624550781979141929 Eth | 0.000048585 | |
0x973e5269...8d27041A9 | |||||
0xEB7f8306...e4bD57Fa7 |
0.01015787987122381 Eth
Nonce: 17
|
0.009531302868012835 Eth
Nonce: 18
| 0.000626577003210975 |
Execution Trace
DxToken.approve( _spender=0x0000000000001fF3684f28c67538d4D072C22734, _value=115792089237316195423570985008687907853269984665640564039457584007913129639935 ) => ( True )
approve[ERC20 (ln:172)]
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