ETH Price: $3,756.01 (-2.15%)

Transaction Decoder

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 Code
(beaverbuild)
13.709428535671208386 Eth13.709628075993169402 Eth0.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 )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
pragma 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 0
uint256 c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
return c;
}
function sub(uint256 a, uint256 b) internal constant returns (uint256) {
assert(b <= a);
return a - b;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX