Transaction Hash:
Block:
9818512 at Apr-06-2020 12:33:27 PM +UTC
Transaction Fee:
0.007330356 ETH
$14.34
Gas Used:
370,220 Gas / 19.8 Gwei
Emitted Events:
| 86 |
GABAToken.Transfer( from=[Sender] 0xf15017de43277ed3f10bc80580aedaa8bd6084b9, to=[Receiver] 0x3fdb50062c5c6b9608700e7528a204dd53bada11, value=1000000000000000000 )
|
| 87 |
GABAToken.Approval( owner=[Sender] 0xf15017de43277ed3f10bc80580aedaa8bd6084b9, spender=[Receiver] 0x3fdb50062c5c6b9608700e7528a204dd53bada11, value=99999999000000000000000000 )
|
| 88 |
0x3fdb50062c5c6b9608700e7528a204dd53bada11.0xa281b5b87d919fea384481d7cc84b9464f629dc7a4da2ba24c43fcaa5ce3aa6b( 0xa281b5b87d919fea384481d7cc84b9464f629dc7a4da2ba24c43fcaa5ce3aa6b, 0x000000000000000000000000f15017de43277ed3f10bc80580aedaa8bd6084b9, 0x000000000000000000000000000000000000000000000000000000000000000c, 0x0000000000000000000000000000000000000000000000000000000000000001, 000000000000000000000000000000000000000000000000000000005e8b2197, fffffffffffffffffffffffffffffffffffffffffffffffff21f494c589c0000 )
|
Account State Difference:
| Address | Before | After | State Difference | ||
|---|---|---|---|---|---|
| 0x3fDB5006...d53BadA11 | |||||
|
0x5A0b54D5...D3E029c4c
Miner
| (Spark Pool) | 11.213919121878786641 Eth | 11.221249477878786641 Eth | 0.007330356 | |
| 0xC6cC22F8...97D535540 | |||||
| 0xf15017DE...8bD6084B9 |
0.0311493349 Eth
Nonce: 10
|
0.0238189789 Eth
Nonce: 11
| 0.007330356 |
Execution Trace
0x3fdb50062c5c6b9608700e7528a204dd53bada11.4b4e0e56( )
-
0xbd2aa67529d597d0910d1fbcc5b195271053e467.96f0ff62( ) -
GABAToken.allowance( owner=0xf15017DE43277eD3f10bC80580AEdAa8bD6084B9, spender=0x3fDB50062c5C6B9608700e7528A204Dd53BadA11 ) => ( 100000000000000000000000000 )
-
GABAToken.transferFrom( from=0xf15017DE43277eD3f10bC80580AEdAa8bD6084B9, to=0x3fDB50062c5C6B9608700e7528A204Dd53BadA11, value=1000000000000000000 ) => ( True )
-
0xbd2aa67529d597d0910d1fbcc5b195271053e467.96f0ff62( ) -
0xbd2aa67529d597d0910d1fbcc5b195271053e467.96f0ff62( ) -
0xbd2aa67529d597d0910d1fbcc5b195271053e467.96f0ff62( ) -
0xbd2aa67529d597d0910d1fbcc5b195271053e467.96f0ff62( ) -
0xbd2aa67529d597d0910d1fbcc5b195271053e467.96f0ff62( ) -
0xbd2aa67529d597d0910d1fbcc5b195271053e467.96f0ff62( ) -
0xbd2aa67529d597d0910d1fbcc5b195271053e467.96f0ff62( ) -
0xbd2aa67529d597d0910d1fbcc5b195271053e467.96f0ff62( )
pragma solidity 0.5.9;
/**
* @title SafeMath
* @dev Unsigned math operations with safety checks that revert on error.
*/
library SafeMath {
/**
* @dev Multiplie two unsigned integers, revert on overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
if (a == 0) {
return 0;
}
uint256 c = a * b;
require(c / a == b);
return c;
}
/**
* @dev Integer division of two unsigned integers truncating the quotient, revert on division by zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
// Solidity only automatically asserts when dividing by 0
require(b > 0);
uint256 c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
return c;
}
/**
* @dev Subtract two unsigned integers, revert on underflow (i.e. if subtrahend is greater than minuend).
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
require(b <= a);
uint256 c = a - b;
return c;
}
/**
* @dev Add two unsigned integers, revert on overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a);
return c;
}
}
/**
* @title ERC20 interface
* @dev See https://eips.ethereum.org/EIPS/eip-20
*/
interface IERC20 {
function transfer(address to, uint256 value) external returns (bool);
function approve(address spender, uint256 value) external returns (bool);
function transferFrom(address from, address to, uint256 value) external returns (bool);
function totalSupply() external view returns (uint256);
function balanceOf(address who) external view returns (uint256);
function allowance(address owner, address spender) external view returns (uint256);
event Transfer(address indexed from, address indexed to, uint256 value);
event Approval(address indexed owner, address indexed spender, uint256 value);
}
/**
* @title Standard ERC20 token
* @dev Implementation of the basic standard token.
*/
contract StandardToken is IERC20 {
using SafeMath for uint256;
mapping (address => uint256) internal _balances;
mapping (address => mapping (address => uint256)) internal _allowed;
uint256 internal _totalSupply;
/**
* @dev Total number of tokens in existence.
*/
function totalSupply() public view returns (uint256) {
return _totalSupply;
}
/**
* @dev Get the balance of the specified address.
* @param owner The address to query the balance of.
* @return A uint256 representing the amount owned by the passed address.
*/
function balanceOf(address owner) public view returns (uint256) {
return _balances[owner];
}
/**
* @dev Function to check the amount of tokens that an owner allowed to a spender.
* @param owner The address which owns the funds.
* @param spender The address which will spend the funds.
* @return A uint256 specifying the amount of tokens still available for the spender.
*/
function allowance(address owner, address spender) public view returns (uint256) {
return _allowed[owner][spender];
}
/**
* @dev Transfer tokens to a specified address.
* @param to The address to transfer to.
* @param value The amount to be transferred.
*/
function transfer(address to, uint256 value) public returns (bool) {
_transfer(msg.sender, to, value);
return true;
}
/**
* @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
* Beware that changing an allowance with this method brings the risk that someone may use both the old
* and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this
* race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
* @param spender The address which will spend the funds.
* @param value The amount of tokens to be spent.
*/
function approve(address spender, uint256 value) public returns (bool) {
_approve(msg.sender, spender, value);
return true;
}
/**
* @dev Transfer tokens from one address to another.
* Note that while this function emits an Approval event, this is not required as per the specification,
* and other compliant implementations may not emit the event.
* @param from The address which you want to send tokens from.
* @param to The address which you want to transfer to.
* @param value The amount of tokens to be transferred.
*/
function transferFrom(address from, address to, uint256 value) public returns (bool) {
_transfer(from, to, value);
_approve(from, msg.sender, _allowed[from][msg.sender].sub(value));
return true;
}
/**
* @dev Increase the amount of tokens that an owner allowed to a spender.
* approve should be called when _allowed[msg.sender][spender] == 0. To increment
* allowed value is better to use this function to avoid 2 calls (and wait until
* the first transaction is mined)
* From MonolithDAO Token.sol
* Emits an Approval event.
* @param spender The address which will spend the funds.
* @param addedValue The amount of tokens to increase the allowance by.
*/
function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
_approve(msg.sender, spender, _allowed[msg.sender][spender].add(addedValue));
return true;
}
/**
* @dev Decrease the amount of tokens that an owner allowed to a spender.
* approve should be called when _allowed[msg.sender][spender] == 0. To decrement
* allowed value is better to use this function to avoid 2 calls (and wait until
* the first transaction is mined)
* From MonolithDAO Token.sol
* Emits an Approval event.
* @param spender The address which will spend the funds.
* @param subtractedValue The amount of tokens to decrease the allowance by.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) {
_approve(msg.sender, spender, _allowed[msg.sender][spender].sub(subtractedValue));
return true;
}
/**
* @dev Transfer tokens for a specified address.
* @param from The address to transfer from.
* @param to The address to transfer to.
* @param value The amount to be transferred.
*/
function _transfer(address from, address to, uint256 value) internal {
require(to != address(0), "Cannot transfer to the zero address");
_balances[from] = _balances[from].sub(value);
_balances[to] = _balances[to].add(value);
emit Transfer(from, to, value);
}
/**
* @dev Approve an address to spend another addresses' tokens.
* @param owner The address that owns the tokens.
* @param spender The address that will spend the tokens.
* @param value The number of tokens that can be spent.
*/
function _approve(address owner, address spender, uint256 value) internal {
require(spender != address(0), "Cannot approve to the zero address");
require(owner != address(0), "Setter cannot be the zero address");
_allowed[owner][spender] = value;
emit Approval(owner, spender, value);
}
}
contract GABAToken is StandardToken {
string public constant name = "Global Alliance of Cultural and Art Block Chains";
string public constant symbol = "GABA";
uint8 public constant decimals = 18;
uint256 internal constant INIT_TOTALSUPPLY = 210000000;
address public constant tokenWallet = 0x94A1aB2335577C80ef79f4E4D94BebB49B6a5285;
/**
* @dev Constructor, initialize the basic information of contract.
*/
constructor() public {
_totalSupply = INIT_TOTALSUPPLY * 10 ** uint256(decimals);
_balances[tokenWallet] = _totalSupply;
emit Transfer(address(0), tokenWallet, _totalSupply);
}
}