ETH Price: $3,722.61 (-0.10%)

Transaction Decoder

Block:
21413477 at Dec-16-2024 07:06:23 AM +UTC
Transaction Fee:
0.000346059 ETH $1.29
Gas Used:
49,437 Gas / 7 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x0F5D2fB2...8908cC942
(Titan Builder)
14.118027904665943749 Eth14.118036871883494491 Eth0.000008967217550742
0xC9c2D493...4D3D22847
0.071852139504871131 Eth
Nonce: 4
0.071506080504871131 Eth
Nonce: 5
0.000346059

Execution Trace

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