ETH Price: $3,646.65 (-2.18%)

Transaction Decoder

Block:
21413211 at Dec-16-2024 06:12:35 AM +UTC
Transaction Fee:
0.000536497170092484 ETH $1.96
Gas Used:
32,349 Gas / 16.584660116 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x0F5D2fB2...8908cC942
(Titan Builder)
13.437193714429717783 Eth13.437452506429717783 Eth0.000258792
0x716e1Ecc...29f3da2DA
0.003556395338551696 Eth
Nonce: 924
0.003019898168459212 Eth
Nonce: 925
0.000536497170092484

Execution Trace

MANAToken.transfer( _to=0xdE2fACa4BBC0aca08fF04D387c39B6f6325bf82A, _value=50261000000000000000000 ) => ( 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