ETH Price: $2,958.75 (-0.08%)

Transaction Decoder

Block:
21416777 at Dec-16-2024 06:08:47 PM +UTC
Transaction Fee:
0.00055837306062849 ETH $1.65
Gas Used:
24,235 Gas / 23.039944734 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x0F5D2fB2...8908cC942
(Titan Builder)
8.773328608594738558 Eth8.773331032094738558 Eth0.0000024235
0xACea2aF3...39157B409
0.054785653085039801 Eth
Nonce: 48
0.054227280024411311 Eth
Nonce: 49
0.00055837306062849

Execution Trace

MANAToken.approve( _spender=0xF740B67dA229f2f10bcBd38A7979992fCC71B8Eb, _value=0 ) => ( 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