Transaction Hash:
Block:
22654417 at Jun-07-2025 06:11:47 PM +UTC
Transaction Fee:
0.000039399316493712 ETH
$0.12
Gas Used:
46,088 Gas / 0.854871474 Gwei
Emitted Events:
825 |
Dragon.Approval( owner=[Sender] 0x16169097677d6add8d085d5577b2293433304c65, spender=0x11111112...73A960582, value=102904321677341602028 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x16169097...433304C65 |
0.002204306368050443 Eth
Nonce: 92
|
0.002164907051556731 Eth
Nonce: 93
| 0.000039399316493712 | ||
0x419c4dB4...8D9fDA05E | |||||
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 9.126540867407288703 Eth | 9.126545476207288703 Eth | 0.0000046088 |
Execution Trace
Dragon.approve( _spender=0x1111111254EEB25477B68fb85Ed929f73A960582, _value=102904321677341602028 ) => ( 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) {