ETH Price: $2,792.72 (+6.37%)
Gas: 2.26 Gwei

Transaction Decoder

Block:
4294786 at Sep-20-2017 12:59:01 PM +UTC
Transaction Fee:
0.0015 ETH $4.19
Gas Used:
50,000 Gas / 30 Gwei

Account State Difference:

  Address   Before After State Difference Code
0x0fe777FA...65eE557Ee
0.107923495 Eth
Nonce: 36
0.106423495 Eth
Nonce: 37
0.0015
(Ethermine)
578.651553437415310873 Eth578.653053437415310873 Eth0.0015

Execution Trace

KairosToken.transfer( _to=0x0a8ae399dc448218a4bda545f6fAeD4e44E8Fdfa, _value=10000000000000000000 )
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;
library SafeMath {
function mul(uint256 a, uint256 b) internal returns (uint256) {
uint256 c = a * b;
assert(a == 0 || c / a == b);
return c;
}
function div(uint256 a, uint256 b) internal returns (uint256) {
// assert(b > 0); // Solidity automatically throws when dividing by 0
uint256 c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
return c;
}
function sub(uint256 a, uint256 b) internal returns (uint256) {
assert(b <= a);
return a - b;
}
function add(uint256 a, uint256 b) internal returns (uint256) {
uint256 c = a + b;
assert(c >= a);
return c;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX