Transaction Hash:
Block:
22637995 at Jun-05-2025 11:04:23 AM +UTC
Transaction Fee:
0.000124159550739124 ETH
$0.47
Gas Used:
46,364 Gas / 2.677930091 Gwei
Emitted Events:
1091 |
Dragon.Approval( owner=[Sender] 0x6cb091d3fa80b76ddb2e21b1c975d01763049955, spender=0x881D4023...dC08D300C, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x419c4dB4...8D9fDA05E | |||||
0x6Cb091d3...763049955 |
0.013433254353530648 Eth
Nonce: 4
|
0.013309094802791524 Eth
Nonce: 5
| 0.000124159550739124 | ||
0xdadB0d80...24f783711
Miner
| (BuilderNet) | 84.206435323489142481 Eth | 84.206470419357838401 Eth | 0.00003509586869592 |
Execution Trace
Dragon.approve( _spender=0x881D40237659C251811CEC9c364ef91dC08D300C, _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) {