Transaction Hash:
Block:
22205779 at Apr-05-2025 10:45:11 PM +UTC
Transaction Fee:
0.00002676135 ETH
$0.10
Gas Used:
48,657 Gas / 0.55 Gwei
Emitted Events:
243 |
DxToken.Approval( owner=[Sender] 0x792a83e74d76fcdab681249c82bc8ec6e1aa1111, spender=0x6131B5fa...8b66337b5, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 34.036893129848661199 Eth | 34.036898826645643495 Eth | 0.000005696796982296 | |
0x792A83e7...6e1AA1111 |
0.049421323808291185 Eth
Nonce: 11261
|
0.049394562458291185 Eth
Nonce: 11262
| 0.00002676135 | ||
0x973e5269...8d27041A9 |
Execution Trace
DxToken.approve( _spender=0x6131B5fae19EA4f9D964eAc0408E4408b66337b5, _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