Transaction Hash:
Block:
11963396 at Mar-03-2021 05:27:29 AM +UTC
Transaction Fee:
0.00323031 ETH
$6.85
Gas Used:
37,130 Gas / 87 Gwei
Emitted Events:
| 268 |
SCCCoin.Transfer( from=[Sender] 0xd88861c93bcc8ee4e3bfd9d704c1863c8200f1cd, to=0x0bd80d9D4c8be5ccac3e70232f3aC8DBB4d16123, value=15261500000000000000000 )
|
Account State Difference:
| Address | Before | After | State Difference | ||
|---|---|---|---|---|---|
| 0x4a9f00dE...F725E680D | |||||
|
0x5A0b54D5...D3E029c4c
Miner
| (Spark Pool) | 90.471392320937297145 Eth | 90.474622630937297145 Eth | 0.00323031 | |
| 0xD88861c9...C8200F1cd |
0.188583318748902668 Eth
Nonce: 7823
|
0.185353008748902668 Eth
Nonce: 7824
| 0.00323031 |
Execution Trace
SCCCoin.transfer( _to=0x0bd80d9D4c8be5ccac3e70232f3aC8DBB4d16123, _value=15261500000000000000000 ) => ( True )
transfer[ERC20Basic (ln:63)]
pragma solidity ^0.4.13;
library SafeMath {
function mul(uint256 a, uint256 b) internal returns (uint256) {
if (a == 0) {
return 0;
}
uint256 c = a * b;
assert(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;
}
}
contract Ownable {
address public owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
function Ownable() public {
owner = msg.sender;
}
modifier onlyOwner() {
require(msg.sender == owner);
_;
}
function transferOwnership(address newOwner) public onlyOwner {
require(newOwner != address(0));
owner = newOwner;
}
}
contract ERC20Basic {
uint256 public totalSupply;
function balanceOf(address who) public returns (uint256);
function transfer(address to, uint256 value) public returns (bool);
event Transfer(address indexed from, address indexed to, uint256 value);
}
contract ERC20 is ERC20Basic {
function transferFrom(address from, address to, uint256 value) public returns (bool);
}
contract BasicToken is ERC20Basic {
using SafeMath for uint256;
mapping(address => uint256) balances;
function transfer(address _to, uint256 _value) public returns (bool) {
require(_to != address(0));
require(_value <= balances[msg.sender]);
// SafeMath.sub will throw if there is not enough balance.
balances[msg.sender] = balances[msg.sender].sub(_value);
balances[_to] = balances[_to].add(_value);
Transfer(msg.sender, _to, _value);
return true;
}
function balanceOf(address _owner) public returns (uint256 balance) {
return balances[_owner];
}
}
contract StandardToken is ERC20, BasicToken {
mapping (address => mapping (address => uint256)) internal allowed;
function transferFrom(address _from, address _to, uint256 _value) public returns (bool) {
require(_to != address(0));
require(_value <= balances[_from]);
require(_value <= allowed[_from][msg.sender]);
balances[_from] = balances[_from].sub(_value);
balances[_to] = balances[_to].add(_value);
allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value);
Transfer(_from, _to, _value);
return true;
}
}
contract PausableToken is StandardToken {
function transfer(address _to, uint256 _value) public returns (bool) {
return super.transfer(_to, _value);
}
function transferFrom(address _from, address _to, uint256 _value) public returns (bool) {
return super.transferFrom(_from, _to, _value);
}
}
contract SCCCoin is PausableToken {
string public name = "Science Chain";
string public symbol = "SCC";
uint public decimals = 18;
uint public INITIAL_SUPPLY = 2000000000000000000000000000;
function SCCCoin() public {
totalSupply = INITIAL_SUPPLY;
balances[msg.sender] = INITIAL_SUPPLY;
}
}