Transaction Hash:
Block:
22639597 at Jun-05-2025 04:27:47 PM +UTC
Transaction Fee:
0.000412574984539112 ETH
$1.77
Gas Used:
46,076 Gas / 8.954227462 Gwei
Emitted Events:
293 |
Dragon.Approval( owner=[Sender] 0x07b172d47bea438bec597feb1c2ccf1674872dc8, spender=0x1231DEB6...7486F4EaE, value=659141300000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x07b172D4...674872Dc8 |
0.452701670361286415 Eth
Nonce: 48
|
0.452289095376747303 Eth
Nonce: 49
| 0.000412574984539112 | ||
0x419c4dB4...8D9fDA05E | |||||
0xdadB0d80...24f783711
Miner
| (BuilderNet) | 85.945748767235764037 Eth | 85.945751942830544837 Eth | 0.0000031755947808 |
Execution Trace
Dragon.approve( _spender=0x1231DEB6f5749EF6cE6943a275A1D3E7486F4EaE, _value=659141300000000000000 ) => ( 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) {