Transaction Hash:
Block:
21632714 at Jan-15-2025 09:56:47 PM +UTC
Transaction Fee:
0.000344375142047289 ETH
$1.30
Gas Used:
46,503 Gas / 7.405439263 Gwei
Emitted Events:
470 |
HumaniqToken.Approval( owner=[Sender] 0x88fccd2564750e38e15a243868b2631031c2b8e3, spender=0x68b34658...D8665Fc45, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x88FccD25...031C2B8E3 |
0.046163062897913787 Eth
Nonce: 251
|
0.045818687755866498 Eth
Nonce: 252
| 0.000344375142047289 | ||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 10.009447487367917452 Eth | 10.009449192605025652 Eth | 0.0000017052371082 | |
0xcbCC0F03...A7487b908 |
Execution Trace
HumaniqToken.approve( _spender=0x68b3465833fb72A70ecDF485E0e4C7bD8665Fc45, _value=115792089237316195423570985008687907853269984665640564039457584007913129639935 ) => ( success=True )
approve[AbstractToken (ln:48)]
1234567891011121314151617181920212223242526pragma solidity ^0.4.6;/*** Math operations with safety checks*/contract SafeMath {function mul(uint a, uint b) internal returns (uint) {uint c = a * b;assert(a == 0 || c / a == b);return c;}function div(uint a, uint b) internal returns (uint) {assert(b > 0);uint c = a / b;assert(a == b * c + a % b);return c;}function sub(uint a, uint b) internal returns (uint) {assert(b <= a);return a - b;}function add(uint a, uint b) internal returns (uint) {