ETH Price: $2,975.41 (-2.99%)

Transaction Decoder

Block:
21416717 at Dec-16-2024 05:56:47 PM +UTC
Transaction Fee:
0.001337378142067437 ETH $3.98
Gas Used:
49,449 Gas / 27.045605413 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x0F5D2fB2...8908cC942
(beaverbuild)
14.058553985670934456 Eth14.058572271683421811 Eth0.000018286012487355
0xd9eC6012...2e35aE0f7
20.699397238963563882 Eth
Nonce: 17
20.698059860821496445 Eth
Nonce: 18
0.001337378142067437

Execution Trace

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