Transaction Hash:
Block:
9608756 at Mar-05-2020 03:21:14 AM +UTC
Transaction Fee:
0.00027006 ETH
$0.53
Gas Used:
38,580 Gas / 7 Gwei
Emitted Events:
| 142 |
CpcToken.Transfer( _from=[Sender] 0x0e95f8f8ecbd770585766c1cd216c81aa43439a6, _to=0xFCc4bf672B7f726D4c80c99F2aD8E421C140D2E9, _value=101097740000000000000 )
|
Account State Difference:
| Address | Before | After | State Difference | ||
|---|---|---|---|---|---|
| 0x0E95F8F8...aA43439a6 |
5.173587740285559445 Eth
Nonce: 754983
|
5.173317680285559445 Eth
Nonce: 754984
| 0.00027006 | ||
|
0x5A0b54D5...D3E029c4c
Miner
| (Spark Pool) | 76.26947094099776561 Eth | 76.26974100099776561 Eth | 0.00027006 | |
| 0x8fdcC30e...31E8365c5 |
Execution Trace
CpcToken.transfer( _to=0xFCc4bf672B7f726D4c80c99F2aD8E421C140D2E9, _value=101097740000000000000 ) => ( success=True )
transfer[CpcToken (ln:31)]
Transfer[CpcToken (ln:38)]
pragma solidity ^0.4.18;
contract CpcToken{
mapping (address => uint256) balances;
address public owner;
string public name;
string public symbol;
uint8 public decimals;
// total amount of tokens
uint256 public totalSupply;
// `allowed` tracks any extra transfer rights as in all ERC20 tokens
mapping (address => mapping (address => uint256)) allowed;
constructor () public {
owner = msg.sender; // Set owner of contract
name = "CpcToken"; // Set the name for display purposes
symbol = "CPCT"; // Set the symbol for display purposes
decimals = 18; // Amount of decimals for display purposes
totalSupply = 2000000000000000000000000000; // Total supply
balances[owner] = totalSupply; // Set owner balance equal totalsupply
}
/// @param _owner The address from which the balance will be retrieved
/// @return The balance
function balanceOf(address _owner) public constant returns (uint256 balance) {
return balances[_owner];
}
/// @notice send `_value` token to `_to` from `msg.sender`
/// @param _to The address of the recipient
/// @param _value The amount of token to be transferred
/// @return Whether the transfer was successful or not
function transfer(address _to, uint256 _value) public returns (bool success) {
require(_value > 0 ); // Check send token value > 0;
require(balances[msg.sender] >= _value); // Check if the sender has enough
require(balances[_to] + _value > balances[_to]); // Check for overflows
balances[msg.sender] -= _value; // Subtract from the sender
balances[_to] += _value; // Add the same to the recipient
emit Transfer(msg.sender, _to, _value); // Notify anyone listening that this transfer took place
return true;
}
/// @notice send `_value` token to `_to` from `_from` on the condition it is approved by `_from`
/// @param _from The address of the sender
/// @param _to The address of the recipient
/// @param _value The amount of token to be transferred
/// @return Whether the transfer was successful or not
function transferFrom(address _from, address _to, uint256 _value) public returns (bool success) {
require(balances[_from] >= _value); // Check if the sender has enough
require(balances[_to] + _value >= balances[_to]); // Check for overflows
require(_value <= allowed[_from][msg.sender]); // Check allowance
balances[_from] -= _value; // Subtract from the sender
balances[_to] += _value; // Add the same to the recipient
allowed[_from][msg.sender] -= _value;
emit Transfer(_from, _to, _value);
return true;
}
/// @notice `msg.sender` approves `_spender` to spend `_value` tokens
/// @param _spender The address of the account able to transfer the tokens
/// @param _value The amount of tokens to be approved for transfer
/// @return Whether the approval was successful or not
function approve(address _spender, uint256 _value) public returns (bool success) {
require(balances[msg.sender] >= _value);
allowed[msg.sender][_spender] = _value;
emit Approval(msg.sender, _spender, _value);
return true;
}
/// @param _owner The address of the account owning tokens
/// @param _spender The address of the account able to transfer the tokens
/// @return Amount of remaining tokens allowed to spent
function allowance(address _owner, address _spender) public constant returns (uint256 remaining) {
return allowed[_owner][_spender];
}
/* This unnamed function is called whenever someone tries to send ether to it */
function () private {
revert(); // Prevents accidental sending of ether
}
event Transfer(address indexed _from, address indexed _to, uint256 _value);
event Approval(address indexed _owner, address indexed _spender, uint256 _value);
}