Transaction Hash:
Block:
22660678 at Jun-08-2025 03:11:47 PM +UTC
Transaction Fee:
0.000072370377996356 ETH
$0.28
Gas Used:
46,364 Gas / 1.560917479 Gwei
Emitted Events:
407 |
Dragon.Approval( owner=[Sender] 0xd1eb03f065fa022047b947c4305f60abce525a6c, spender=0x216B4B4B...4278Bfcae, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x419c4dB4...8D9fDA05E | |||||
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 7.606761086487154326 Eth | 7.60678263066012327 Eth | 0.000021544172968944 | |
0xD1eB03F0...BCE525a6c |
0.011969091297618915 Eth
Nonce: 5
|
0.011896720919622559 Eth
Nonce: 6
| 0.000072370377996356 |
Execution Trace
Dragon.approve( _spender=0x216B4B4Ba9F3e719726886d34a177484278Bfcae, _value=115792089237316195423570985008687907853269984665640564039457584007913129639935 ) => ( True )
approve[ERC20 (ln:143)]
1234567891011121314151617181920212223242526pragma solidity ^0.4.18;// File: zeppelin-solidity/contracts/math/SafeMath.sol/*** @title SafeMath* @dev Math operations with safety checks that throw on error*/library SafeMath {function mul(uint256 a, uint256 b) internal pure returns (uint256) {if (a == 0) {return 0;}uint256 c = a * b;assert(c / a == b);return c;}function div(uint256 a, uint256 b) internal pure returns (uint256) {// assert(b > 0); // Solidity automatically throws when dividing by 0uint256 c = a / b;// assert(a == b * c + a % b); // There is no case in which this doesn't holdreturn c;}function sub(uint256 a, uint256 b) internal pure returns (uint256) {