Transaction Hash:
Block:
16383148 at Jan-11-2023 11:03:11 AM +UTC
Transaction Fee:
0.001026522 ETH
$3.86
Gas Used:
48,882 Gas / 21 Gwei
Emitted Events:
103 |
NPXSToken.Approval( owner=[Sender] 0xe7fe6f72463c5a45ff8a3a20d254f58b350e237e, spender=0xBE6FEe37...b77dD81F9, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 13.709428535671208386 Eth | 13.709628075993169402 Eth | 0.000199540321961016 | |
0xA15C7Ebe...AC49Ae5B3 | |||||
0xe7Fe6F72...b350e237e |
0.03329349708478818 Eth
Nonce: 192
|
0.03226697508478818 Eth
Nonce: 193
| 0.001026522 |
Execution Trace
NPXSToken.approve( _spender=0xBE6FEe3756f7BE3A0cD492059341cb5b77dD81F9, _value=115792089237316195423570985008687907853269984665640564039457584007913129639935 ) => ( True )
approve[ERC20 (ln:231)]
1234567891011121314151617181920212223242526pragma solidity ^0.4.11;/*** @title SafeMath* @dev Math operations with safety checks that throw on error*/library SafeMath {function mul(uint256 a, uint256 b) internal constant returns (uint256) {uint256 c = a * b;assert(a == 0 || c / a == b);return c;}function div(uint256 a, uint256 b) internal constant 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 constant returns (uint256) {assert(b <= a);return a - b;}