ETH Price: $2,967.05 (-2.43%)

Transaction Decoder

Block:
21416673 at Dec-16-2024 05:47:59 PM +UTC
Transaction Fee:
0.00161949701485344 ETH $4.81
Gas Used:
46,460 Gas / 34.857878064 Gwei

Emitted Events:

244 MANAToken.Approval( owner=[Sender] 0x990a90453f9233a7bfef3399fd696c2949155bf3, spender=0x2D6b3508...32e73C1ff, value=19000000000000000000000 )

Account State Difference:

  Address   Before After State Difference Code
0x0F5D2fB2...8908cC942
(Titan Builder)
7.714206626116186131 Eth7.714292555854789251 Eth0.00008592973860312
0x990A9045...949155bf3
0.041765726903605279 Eth
Nonce: 337
0.040146229888751839 Eth
Nonce: 338
0.00161949701485344

Execution Trace

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