Transaction Hash:
Block:
21408177 at Dec-15-2024 01:20:11 PM +UTC
Transaction Fee:
0.000332242791387984 ETH
$1.26
Gas Used:
46,503 Gas / 7.144545328 Gwei
Emitted Events:
256 |
HumaniqToken.Approval( owner=[Sender] 0x7b5970a79daa19f346c1832d43dcdd97d433757d, spender=0x881D4023...dC08D300C, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x7B5970a7...7d433757D |
0.031784713839942443 Eth
Nonce: 271
|
0.031452471048554459 Eth
Nonce: 272
| 0.000332242791387984 | ||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 9.631238881839165917 Eth | 9.631285384839305426 Eth | 0.000046503000139509 | |
0xcbCC0F03...A7487b908 |
Execution Trace
HumaniqToken.approve( _spender=0x881D40237659C251811CEC9c364ef91dC08D300C, _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) {