Stoken Main Contract

This is the MAIN CONTRACT of Stoken – Unique token in the Beyou Network ecosystem, updated and deployed at 2019-10-02 16:12:41 UTC.

logo_etherscan_verified logo_github logo_verified

View on Etherscan.io:

The token symbol named Stoken

Displayed in various wallet software such as MetaMask, MyEtherWallet, imToken, etherscan.io and Ethereum blockchain browsers.

Features and functions

Based on [EIP 20] ERC-20 Token Standard of Ethereum

Includes:

  • function name() public view returns (string)
  • function symbol() public view returns (string)
  • function decimals() public view returns (uint8)
  • function totalSupply() public view returns (uint256)
  • function balanceOf(address account) public view returns (uint256)
  • function transfer(address recipient, uint256 amount) public returns (bool)
  • function transferFrom(address sender, address recipient, uint256 amount) public returns (bool)
  • function approve(address spender, uint256 value) public returns (bool)
  • function allowance(address owner, address spender) public view returns (uint256)
  • event Transfer(address indexed from, address indexed to, uint256 value)
  • event Approval(address indexed owner, address indexed spender, uint256 value)

With advanced functions for allowance:

  • function increaseSupply(address spender, uint256 addedValue) public returns (bool)
  • function decreaseSupply(address spender, uint256 subtractedValue) public returns (bool)
Supports flexible rules for LOCK

Function for lock:

  • function lock(address _addr, uint256 _value) external returns (uint256)

Function for unlock:

  • function unlock(address _addr, uint256 _value) public returns (uint256)