Transaction Hash:
Block:
6521156 at Oct-15-2018 06:23:14 PM +UTC
Transaction Fee:
0.00102788 ETH
$2.06
Gas Used:
51,394 Gas / 20 Gwei
Emitted Events:
| 26 |
Salt.Transfer( _from=[Sender] 0x5aeb348870bec0945a733cc42ed948c38c30b27d, _to=0x08923217840AA593ea72458AF47F3dA25707399c, _value=1000000000 )
|
Account State Difference:
| Address | Before | After | State Difference | ||
|---|---|---|---|---|---|
| 0x4156D334...592000581 | |||||
|
0x5A0b54D5...D3E029c4c
Miner
| (Spark Pool) | 4,781.251169638795293803 Eth | 4,781.252197518795293803 Eth | 0.00102788 | |
| 0x5aeb3488...38c30b27D |
0.0624933897 Eth
Nonce: 2955
|
0.0614655097 Eth
Nonce: 2956
| 0.00102788 |
Execution Trace
Salt.transfer( _to=0x08923217840AA593ea72458AF47F3dA25707399c, _value=1000000000 ) => ( success=True )
transfer[Token (ln:9)]
pragma solidity ^0.4.8;
contract Token {
uint256 public totalSupply;
function balanceOf(address _owner) constant returns (uint256 balance);
function transfer(address _to, uint256 _value) returns (bool success);
function transferFrom(address _from, address _to, uint256 _value) returns (bool success);
function approve(address _spender, uint256 _value) returns (bool success);
function allowance(address _owner, address _spender) constant returns (uint256 remaining);
event Transfer(address indexed _from, address indexed _to, uint256 _value);
event Approval(address indexed _owner, address indexed _spender, uint256 _value);
}
contract StandardToken is Token {
function transfer(address _to, uint256 _value) returns (bool success) {
if (balances[msg.sender] >= _value && _value > 0) {
balances[msg.sender] -= _value;
balances[_to] += _value;
Transfer(msg.sender, _to, _value);
return true;
} else { return false; }
}
function transferFrom(address _from, address _to, uint256 _value) returns (bool success) {
if (balances[_from] >= _value && allowed[_from][msg.sender] >= _value && _value > 0) {
balances[_to] += _value;
balances[_from] -= _value;
allowed[_from][msg.sender] -= _value;
Transfer(_from, _to, _value);
return true;
} else { return false; }
}
function balanceOf(address _owner) constant returns (uint256 balance) {
return balances[_owner];
}
function approve(address _spender, uint256 _value) returns (bool success) {
allowed[msg.sender][_spender] = _value;
Approval(msg.sender, _spender, _value);
return true;
}
function allowance(address _owner, address _spender) constant returns (uint256 remaining) {
return allowed[_owner][_spender];
}
mapping (address => uint256) balances;
mapping (address => mapping (address => uint256)) allowed;
}
contract Salt is StandardToken {
function () {
throw;
}
string public name;
uint8 public decimals;
string public symbol;
string public version = '1.0';
function Salt() {
balances[msg.sender] = 12000000000000000; // Give the creator all initial tokens
totalSupply = 12000000000000000; // Update total supply
name = 'Salt'; // Set the name for display purposes
decimals = 8; // Amount of decimals for display purposes
symbol = 'SALT'; // Set the symbol for display purposes
}
}