Transaction Hash:
Block:
22593867 at May-30-2025 06:49:11 AM +UTC
Transaction Fee:
0.000098358350276312 ETH
$0.37
Gas Used:
46,088 Gas / 2.134142299 Gwei
Emitted Events:
390 |
Dragon.Approval( owner=[Sender] 0x04058566ff20d81eb57bcb74f84a125feeeb7432, spender=0x11111112...73A960582, value=4377027009911749000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x04058566...FEEeb7432 |
0.010345480768723579 Eth
Nonce: 135
|
0.010247122418447267 Eth
Nonce: 136
| 0.000098358350276312 | ||
0x419c4dB4...8D9fDA05E | |||||
0xdadB0d80...24f783711
Miner
| (BuilderNet) | 48.334801077543635819 Eth | 48.334805686343635819 Eth | 0.0000046088 |
Execution Trace
Dragon.approve( _spender=0x1111111254EEB25477B68fb85Ed929f73A960582, _value=4377027009911749000000 ) => ( 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) {