Transaction Hash:
Block:
20736218 at Sep-12-2024 06:07:35 PM +UTC
Transaction Fee:
0.000551878898947992 ETH
$2.01
Gas Used:
48,393 Gas / 11.404105944 Gwei
Emitted Events:
202 |
DxToken.Approval( owner=[Sender] 0x443e69b09f96a343cde8e6f680f2f2cb0c18c9cd, spender=0xDef1C0de...027b25EfF, value=34770357592807677462998 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x443e69B0...b0c18c9CD |
0.02270182114245626 Eth
Nonce: 37
|
0.022149942243508268 Eth
Nonce: 38
| 0.000551878898947992 | ||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 14.704770773012889082 Eth | 14.704770821405889082 Eth | 0.000000048393 | |
0x973e5269...8d27041A9 |
Execution Trace
DxToken.approve( _spender=0xDef1C0ded9bec7F1a1670819833240f027b25EfF, _value=34770357592807677462998 ) => ( 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