ETH Price: $2,981.82 (+1.40%)
Gas: 1.11 Gwei

Transaction Decoder

Block:
21337944 at Dec-05-2024 06:00:23 PM +UTC
Transaction Fee:
0.001421693373800947 ETH $4.24
Gas Used:
52,097 Gas / 27.289352051 Gwei

Account State Difference:

  Address   Before After State Difference Code
(Lido: Execution Layer Rewards Vault)
32.709687840277730004 Eth32.709688361247730004 Eth0.00000052097
0xcbCC0F03...A7487b908
0xe03c2351...0065C48B5
(Mercatox)
16.244918205430447823 Eth
Nonce: 522573
16.243496512056646876 Eth
Nonce: 522574
0.001421693373800947

Execution Trace

HumaniqToken.transfer( _to=0x3a94B854F6748F1Ab474DA8200BdA43362749323, _value=26597600000000 ) => ( 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