ETH Price: $3,798.92 (+1.00%)

Transaction Decoder

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 Code
0x7B5970a7...7d433757D
0.031784713839942443 Eth
Nonce: 271
0.031452471048554459 Eth
Nonce: 272
0.000332242791387984
(beaverbuild)
9.631238881839165917 Eth9.631285384839305426 Eth0.000046503000139509
0xcbCC0F03...A7487b908

Execution Trace

HumaniqToken.approve( _spender=0x881D40237659C251811CEC9c364ef91dC08D300C, _value=115792089237316195423570985008687907853269984665640564039457584007913129639935 ) => ( success=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.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) {
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX