ETH Price: $3,637.08 (-2.62%)

Transaction Decoder

Block:
21415438 at Dec-16-2024 01:40:23 PM +UTC
Transaction Fee:
0.000583362642468375 ETH $2.12
Gas Used:
37,125 Gas / 15.713471851 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x0F5D2fB2...8908cC942
0x3495Ba76...80E66809c
1.640656775996930433 Eth
Nonce: 2047
1.640073413354462058 Eth
Nonce: 2048
0.000583362642468375
(Lido: Execution Layer Rewards Vault)
9.80281393072868371 Eth9.802855900564089835 Eth0.000041969835406125

Execution Trace

MANAToken.transfer( _to=0x21e587e3978F40A9E41C599f4D60A3C4d610386e, _value=1000000000000000 ) => ( 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;
contract ERC20Basic {
uint256 public totalSupply;
function balanceOf(address who) constant returns (uint256);
function transfer(address to, uint256 value) returns (bool);
event Transfer(address indexed from, address indexed to, uint256 value);
}
contract Ownable {
address public owner;
/**
* @dev The Ownable constructor sets the original `owner` of the contract to the sender
* account.
*/
function Ownable() {
owner = msg.sender;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX