ETH Price: $4,307.93 (+1.40%)

Transaction Decoder

Block:
21409225 at Dec-15-2024 04:51:35 PM +UTC
Transaction Fee:
0.000467374942932984 ETH $2.01
Gas Used:
32,349 Gas / 14.447894616 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x0F5D2fB2...8908cC942
0x1348550E...2DDb1Cc6F
(ByBit Dep: 0x1348550Eff161a0aC890DBF524993382DDb1Cc6F)
0.073296611767763513 Eth
Nonce: 21511
0.072829236824830529 Eth
Nonce: 21512
0.000467374942932984
(beaverbuild)
13.297549320002045937 Eth13.297614018002045937 Eth0.000064698

Execution Trace

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