ETH Price: $3,065.15 (+1.87%)

Transaction Decoder

Block:
21410735 at Dec-15-2024 09:55:23 PM +UTC
Transaction Fee:
0.000567310057280346 ETH $1.74
Gas Used:
54,273 Gas / 10.452896602 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x0F5D2fB2...8908cC942
0x5770815B...86075B605
(SwissBorg 1)
55,527.020241656333992019 Eth
Nonce: 18440
55,527.019674346276711673 Eth
Nonce: 18441
0.000567310057280346
(beaverbuild)
8.2883432065988303 Eth8.288402992065270179 Eth0.000059785466439879

Execution Trace

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