ETH Price: $3,887.23 (-0.66%)

Token

ERC-20: Tevvo (TVO)
 

Overview

Max Total Supply

21,000,000 TVO

Holders

2,218

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
10 TVO

Value
$0.00
0xdbdfb404351e3aba854061e5ef2846ee00caa90c
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
TevvoToken

Compiler Version
v0.5.17+commit.d19bba13

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license
/**
 *Submitted for verification at Etherscan.io on 2020-07-28
*/

pragma solidity 0.5.17;

/**
 * @title SafeMath
 * @dev Math operations with safety checks that throw on error
 */
library SafeMath {
  function mul(uint256 a, uint256 b) internal pure returns (uint256) {
    if (a == 0) {
      return 0;
    }
    uint256 c = a * b;
    assert(c / a == b);
    return c;
  }

  function div(uint256 a, uint256 b) internal pure 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 pure returns (uint256) {
    assert(b <= a);
    return a - b;
  }

  function add(uint256 a, uint256 b) internal pure returns (uint256) {
    uint256 c = a + b;
    assert(c >= a);
    return c;
  }
}
/**
 * @title Ownable
 * @dev The Ownable contract has an owner address, and provides basic authorization control
 * functions, this simplifies the implementation of "user permissions".
 */
contract Ownable {
  address public owner;


  event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);


  /**
   * @dev The Ownable constructor sets the original `owner` of the contract to the sender
   * account.
   */
  constructor () public {
    owner = msg.sender;
  }

  /**
   * @dev Throws if called by any account other than the owner.
   */
  modifier onlyOwner() {
    require(msg.sender == owner);
    _;
  }

  /**
   * @dev Allows the current owner to transfer control of the contract to a newOwner.
   * @param newOwner The address to transfer ownership to.
   */
  function transferOwnership(address newOwner) public onlyOwner {
    require(newOwner != address(0));
    emit OwnershipTransferred(owner, newOwner);
    owner = newOwner;
  }

}
/**
 * @title ERC20Basic
 * @dev Simpler version of ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/179
 */
contract ERC20Basic {
    /// Total amount of tokens
  uint256 public totalSupply;
  
  function balanceOf(address _owner) public view returns (uint256 balance);
  
  function transfer(address _to, uint256 _amount) public returns (bool success);
  
  event Transfer(address indexed from, address indexed to, uint256 value);
}

/**
 * @title ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */
contract ERC20 is ERC20Basic {
  function allowance(address _owner, address _spender) public view returns (uint256 remaining);
  
  function transferFrom(address _from, address _to, uint256 _amount) public returns (bool success);
  
  function approve(address _spender, uint256 _amount) public returns (bool success);
  
  event Approval(address indexed owner, address indexed spender, uint256 value);
}

/**
 * @title Basic token
 * @dev Basic version of StandardToken, with no allowances.
 */
contract BasicToken is ERC20Basic {
  using SafeMath for uint256;

  //balance in each address account
  mapping(address => uint256) balances;

  /**
  * @dev transfer token for a specified address
  * @param _to The address to transfer to.
  * @param _amount The amount to be transferred.
  */
  function transfer(address _to, uint256 _amount) public returns (bool success) {
    require(_to != address(0));
    require(balances[msg.sender] >= _amount && _amount > 0
        && balances[_to].add(_amount) > balances[_to]);

    // SafeMath.sub will throw if there is not enough balance.
    balances[msg.sender] = balances[msg.sender].sub(_amount);
    balances[_to] = balances[_to].add(_amount);
    emit Transfer(msg.sender, _to, _amount);
    return true;
  }

  /**
  * @dev Gets the balance of the specified address.
  * @param _owner The address to query the the balance of.
  * @return An uint256 representing the amount owned by the passed address.
  */
  function balanceOf(address _owner) public view returns (uint256 balance) {
    return balances[_owner];
  }

}

/**
 * @title Standard ERC20 token
 *
 * @dev Implementation of the basic standard token.
 * @dev https://github.com/ethereum/EIPs/issues/20
 */
contract StandardToken is ERC20, BasicToken {
  
  
  mapping (address => mapping (address => uint256)) internal allowed;


  /**
   * @dev Transfer tokens from one address to another
   * @param _from address The address which you want to send tokens from
   * @param _to address The address which you want to transfer to
   * @param _amount uint256 the amount of tokens to be transferred
   */
  function transferFrom(address _from, address _to, uint256 _amount) public returns (bool success) {
    require(_to != address(0));
    require(balances[_from] >= _amount);
    require(allowed[_from][msg.sender] >= _amount);
    require(_amount > 0 && balances[_to].add(_amount) > balances[_to]);

    balances[_from] = balances[_from].sub(_amount);
    balances[_to] = balances[_to].add(_amount);
    allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_amount);
    emit Transfer(_from, _to, _amount);
    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 _amount The amount of tokens to be spent.
   */
  function approve(address _spender, uint256 _amount) public returns (bool success) {
    allowed[msg.sender][_spender] = _amount;
    emit Approval(msg.sender, _spender, _amount);
    return true;
  }

  /**
   * @dev Function to check the amount of tokens that an owner allowed to a spender.
   * @param _owner address The address which owns the funds.
   * @param _spender address 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 remaining) {
    return allowed[_owner][_spender];
  }

}

/**
 * @title Tevvo Token 
 * @dev Token representing TVO.
 */
 contract TevvoToken is StandardToken, Ownable{
     string public name ;
     string public symbol ;
     uint8 public decimals = 18 ;
     
     /**
     *@dev users sending ether to this contract will be reverted. Any ether sent to the contract will be sent back to the caller
     */
     function ()external payable {
         revert();
     }
     
     /**
     * @dev Constructor function to initialize the initial supply of token to the creator of the contract
     * @param initialSupply The initial supply of tokens which will be fixed through out
     * @param tokenName The name of the token
     * @param tokenSymbol The symboll of the token
     */
     constructor (
            uint256 initialSupply,
            string memory tokenName,
            string memory tokenSymbol
         ) public {
         totalSupply = initialSupply.mul( 10 ** uint256(decimals)); //Update total supply with the decimal amount
         name = tokenName;
         symbol = tokenSymbol;
         balances[msg.sender] = totalSupply;
         
         //Emitting transfer event since assigning all tokens to the creator also corresponds to the transfer of tokens to the creator
         emit Transfer(address(0), msg.sender, totalSupply);
     }
     
     /**
     *@dev helper method to get token details, name, symbol and totalSupply in one go
     */
    function getTokenDetail() public view returns (string memory, string memory, uint256) {
	    return (name, symbol, totalSupply);
    }
 }

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"initialSupply","type":"uint256"},{"internalType":"string","name":"tokenName","type":"string"},{"internalType":"string","name":"tokenSymbol","type":"string"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"constant":true,"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getTokenDetail","outputs":[{"internalType":"string","name":"","type":"string"},{"internalType":"string","name":"","type":"string"},{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]

60806040526006805460ff191660121790553480156200001e57600080fd5b5060405162000e5738038062000e57833981810160405260608110156200004457600080fd5b8151602083018051604051929492938301929190846401000000008211156200006c57600080fd5b9083019060208201858111156200008257600080fd5b82516401000000008111828201881017156200009d57600080fd5b82525081516020918201929091019080838360005b83811015620000cc578181015183820152602001620000b2565b50505050905090810190601f168015620000fa5780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200011e57600080fd5b9083019060208201858111156200013457600080fd5b82516401000000008111828201881017156200014f57600080fd5b82525081516020918201929091019080838360005b838110156200017e57818101518382015260200162000164565b50505050905090810190601f168015620001ac5780820380516001836020036101000a031916815260200191505b50604052505060038054336001600160a01b031990911617905550600654620001e990849060ff16600a0a6200026c602090811b62000aac17901c565b6000558151620002019060049060208501906200029d565b508051620002179060059060208401906200029d565b5060008054338083526001602090815260408085208490558051938452519193927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a350505062000342565b6000826200027d5750600062000297565b828202828482816200028b57fe5b04146200029457fe5b90505b92915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620002e057805160ff191683800117855562000310565b8280016001018555821562000310579182015b8281111562000310578251825591602001919060010190620002f3565b506200031e92915062000322565b5090565b6200033f91905b808211156200031e576000815560010162000329565b90565b610b0580620003526000396000f3fe6080604052600436106100a75760003560e01c806370a082311161006457806370a08231146103125780638da5cb5b1461034557806395d89b4114610376578063a9059cbb1461038b578063dd62ed3e146103c4578063f2fde38b146103ff576100a7565b806306fdde03146100ac578063095ea7b31461013657806318160ddd1461018357806323b872dd146101aa578063289de615146101ed578063313ce567146102e7575b600080fd5b3480156100b857600080fd5b506100c1610434565b6040805160208082528351818301528351919283929083019185019080838360005b838110156100fb5781810151838201526020016100e3565b50505050905090810190601f1680156101285780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561014257600080fd5b5061016f6004803603604081101561015957600080fd5b506001600160a01b0381351690602001356104c2565b604080519115158252519081900360200190f35b34801561018f57600080fd5b50610198610529565b60408051918252519081900360200190f35b3480156101b657600080fd5b5061016f600480360360608110156101cd57600080fd5b506001600160a01b0381358116916020810135909116906040013561052f565b3480156101f957600080fd5b506102026106e5565b604051808060200180602001848152602001838103835286818151815260200191508051906020019080838360005b83811015610249578181015183820152602001610231565b50505050905090810190601f1680156102765780820380516001836020036101000a031916815260200191505b50838103825285518152855160209182019187019080838360005b838110156102a9578181015183820152602001610291565b50505050905090810190601f1680156102d65780820380516001836020036101000a031916815260200191505b509550505050505060405180910390f35b3480156102f357600080fd5b506102fc610826565b6040805160ff9092168252519081900360200190f35b34801561031e57600080fd5b506101986004803603602081101561033557600080fd5b50356001600160a01b031661082f565b34801561035157600080fd5b5061035a61084a565b604080516001600160a01b039092168252519081900360200190f35b34801561038257600080fd5b506100c1610859565b34801561039757600080fd5b5061016f600480360360408110156103ae57600080fd5b506001600160a01b0381351690602001356108b4565b3480156103d057600080fd5b50610198600480360360408110156103e757600080fd5b506001600160a01b03813581169160200135166109d3565b34801561040b57600080fd5b506104326004803603602081101561042257600080fd5b50356001600160a01b03166109fe565b005b6004805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104ba5780601f1061048f576101008083540402835291602001916104ba565b820191906000526020600020905b81548152906001019060200180831161049d57829003601f168201915b505050505081565b3360008181526002602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a35060015b92915050565b60005481565b60006001600160a01b03831661054457600080fd5b6001600160a01b03841660009081526001602052604090205482111561056957600080fd5b6001600160a01b038416600090815260026020908152604080832033845290915290205482111561059957600080fd5b6000821180156105cf57506001600160a01b0383166000908152600160205260409020546105cd818463ffffffff610a8416565b115b6105d857600080fd5b6001600160a01b038416600090815260016020526040902054610601908363ffffffff610a9a16565b6001600160a01b038086166000908152600160205260408082209390935590851681522054610636908363ffffffff610a8416565b6001600160a01b03808516600090815260016020908152604080832094909455918716815260028252828120338252909152205461067a908363ffffffff610a9a16565b6001600160a01b03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b606080600060046005600054828054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156107865780601f1061075b57610100808354040283529160200191610786565b820191906000526020600020905b81548152906001019060200180831161076957829003601f168201915b5050855460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152959850879450925084019050828280156108145780601f106107e957610100808354040283529160200191610814565b820191906000526020600020905b8154815290600101906020018083116107f757829003601f168201915b50505050509150925092509250909192565b60065460ff1681565b6001600160a01b031660009081526001602052604090205490565b6003546001600160a01b031681565b6005805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104ba5780601f1061048f576101008083540402835291602001916104ba565b60006001600160a01b0383166108c957600080fd5b3360009081526001602052604090205482118015906108e85750600082115b801561091a57506001600160a01b038316600090815260016020526040902054610918818463ffffffff610a8416565b115b61092357600080fd5b33600090815260016020526040902054610943908363ffffffff610a9a16565b33600090815260016020526040808220929092556001600160a01b03851681522054610975908363ffffffff610a8416565b6001600160a01b0384166000818152600160209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6003546001600160a01b03163314610a1557600080fd5b6001600160a01b038116610a2857600080fd5b6003546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600380546001600160a01b0319166001600160a01b0392909216919091179055565b600082820183811015610a9357fe5b9392505050565b600082821115610aa657fe5b50900390565b600082610abb57506000610523565b82820282848281610ac857fe5b0414610a9357fefea265627a7a723158206c24b4bf51f680b7282cbd8543723efb7762f4d52e3922f60c8b5e443614fa8e64736f6c634300051100320000000000000000000000000000000000000000000000000000000001406f40000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000005546576766f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000354564f0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106100a75760003560e01c806370a082311161006457806370a08231146103125780638da5cb5b1461034557806395d89b4114610376578063a9059cbb1461038b578063dd62ed3e146103c4578063f2fde38b146103ff576100a7565b806306fdde03146100ac578063095ea7b31461013657806318160ddd1461018357806323b872dd146101aa578063289de615146101ed578063313ce567146102e7575b600080fd5b3480156100b857600080fd5b506100c1610434565b6040805160208082528351818301528351919283929083019185019080838360005b838110156100fb5781810151838201526020016100e3565b50505050905090810190601f1680156101285780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561014257600080fd5b5061016f6004803603604081101561015957600080fd5b506001600160a01b0381351690602001356104c2565b604080519115158252519081900360200190f35b34801561018f57600080fd5b50610198610529565b60408051918252519081900360200190f35b3480156101b657600080fd5b5061016f600480360360608110156101cd57600080fd5b506001600160a01b0381358116916020810135909116906040013561052f565b3480156101f957600080fd5b506102026106e5565b604051808060200180602001848152602001838103835286818151815260200191508051906020019080838360005b83811015610249578181015183820152602001610231565b50505050905090810190601f1680156102765780820380516001836020036101000a031916815260200191505b50838103825285518152855160209182019187019080838360005b838110156102a9578181015183820152602001610291565b50505050905090810190601f1680156102d65780820380516001836020036101000a031916815260200191505b509550505050505060405180910390f35b3480156102f357600080fd5b506102fc610826565b6040805160ff9092168252519081900360200190f35b34801561031e57600080fd5b506101986004803603602081101561033557600080fd5b50356001600160a01b031661082f565b34801561035157600080fd5b5061035a61084a565b604080516001600160a01b039092168252519081900360200190f35b34801561038257600080fd5b506100c1610859565b34801561039757600080fd5b5061016f600480360360408110156103ae57600080fd5b506001600160a01b0381351690602001356108b4565b3480156103d057600080fd5b50610198600480360360408110156103e757600080fd5b506001600160a01b03813581169160200135166109d3565b34801561040b57600080fd5b506104326004803603602081101561042257600080fd5b50356001600160a01b03166109fe565b005b6004805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104ba5780601f1061048f576101008083540402835291602001916104ba565b820191906000526020600020905b81548152906001019060200180831161049d57829003601f168201915b505050505081565b3360008181526002602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a35060015b92915050565b60005481565b60006001600160a01b03831661054457600080fd5b6001600160a01b03841660009081526001602052604090205482111561056957600080fd5b6001600160a01b038416600090815260026020908152604080832033845290915290205482111561059957600080fd5b6000821180156105cf57506001600160a01b0383166000908152600160205260409020546105cd818463ffffffff610a8416565b115b6105d857600080fd5b6001600160a01b038416600090815260016020526040902054610601908363ffffffff610a9a16565b6001600160a01b038086166000908152600160205260408082209390935590851681522054610636908363ffffffff610a8416565b6001600160a01b03808516600090815260016020908152604080832094909455918716815260028252828120338252909152205461067a908363ffffffff610a9a16565b6001600160a01b03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b606080600060046005600054828054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156107865780601f1061075b57610100808354040283529160200191610786565b820191906000526020600020905b81548152906001019060200180831161076957829003601f168201915b5050855460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152959850879450925084019050828280156108145780601f106107e957610100808354040283529160200191610814565b820191906000526020600020905b8154815290600101906020018083116107f757829003601f168201915b50505050509150925092509250909192565b60065460ff1681565b6001600160a01b031660009081526001602052604090205490565b6003546001600160a01b031681565b6005805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104ba5780601f1061048f576101008083540402835291602001916104ba565b60006001600160a01b0383166108c957600080fd5b3360009081526001602052604090205482118015906108e85750600082115b801561091a57506001600160a01b038316600090815260016020526040902054610918818463ffffffff610a8416565b115b61092357600080fd5b33600090815260016020526040902054610943908363ffffffff610a9a16565b33600090815260016020526040808220929092556001600160a01b03851681522054610975908363ffffffff610a8416565b6001600160a01b0384166000818152600160209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6003546001600160a01b03163314610a1557600080fd5b6001600160a01b038116610a2857600080fd5b6003546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600380546001600160a01b0319166001600160a01b0392909216919091179055565b600082820183811015610a9357fe5b9392505050565b600082821115610aa657fe5b50900390565b600082610abb57506000610523565b82820282848281610ac857fe5b0414610a9357fefea265627a7a723158206c24b4bf51f680b7282cbd8543723efb7762f4d52e3922f60c8b5e443614fa8e64736f6c63430005110032

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000000000000000000000000000000000000001406f40000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000005546576766f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000354564f0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : initialSupply (uint256): 21000000
Arg [1] : tokenName (string): Tevvo
Arg [2] : tokenSymbol (string): TVO

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000001406f40
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [4] : 546576766f000000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 54564f0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

6548:1530:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6888:8;;;6601:18;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6601:18:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;6601:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5803:203;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5803:203:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;5803:203:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;2070:26;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2070:26:0;;;:::i;:::-;;;;;;;;;;;;;;;;4625:542;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4625:542:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;4625:542:0;;;;;;;;;;;;;;;;;:::i;7938:136::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7938:136:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;7938:136:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7938:136:0;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;7938:136:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6657:26;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6657:26:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;3946:109;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3946:109:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;3946:109:0;-1:-1:-1;;;;;3946:109:0;;:::i;1079:20::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1079:20:0;;;:::i;:::-;;;;-1:-1:-1;;;;;1079:20:0;;;;;;;;;;;;;;6628;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6628:20:0;;;:::i;3261:476::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3261:476:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;3261:476:0;;;;;;;;:::i;6333:138::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6333:138:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;6333:138:0;;;;;;;;;;:::i;1695:178::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1695:178:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;1695:178:0;-1:-1:-1;;;;;1695:178:0;;:::i;:::-;;6601:18;;;;;;;;;;;;;;;-1:-1:-1;;6601:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;5803:203::-;5900:10;5871:12;5892:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;5892:29:0;;;;;;;;;;;:39;;;5943;;;;;;;5871:12;;5892:29;;5900:10;;5943:39;;;;;;;;-1:-1:-1;5996:4:0;5803:203;;;;;:::o;2070:26::-;;;;:::o;4625:542::-;4708:12;-1:-1:-1;;;;;4737:17:0;;4729:26;;;;;;-1:-1:-1;;;;;4770:15:0;;;;;;:8;:15;;;;;;:26;-1:-1:-1;4770:26:0;4762:35;;;;;;-1:-1:-1;;;;;4812:14:0;;;;;;:7;:14;;;;;;;;4827:10;4812:26;;;;;;;;:37;-1:-1:-1;4812:37:0;4804:46;;;;;;4875:1;4865:7;:11;:57;;;;-1:-1:-1;;;;;;4909:13:0;;;;;;:8;:13;;;;;;4880:26;4909:13;4898:7;4880:26;:17;:26;:::i;:::-;:42;4865:57;4857:66;;;;;;-1:-1:-1;;;;;4950:15:0;;;;;;:8;:15;;;;;;:28;;4970:7;4950:28;:19;:28;:::i;:::-;-1:-1:-1;;;;;4932:15:0;;;;;;;:8;:15;;;;;;:46;;;;5001:13;;;;;;;:26;;5019:7;5001:26;:17;:26;:::i;:::-;-1:-1:-1;;;;;4985:13:0;;;;;;;:8;:13;;;;;;;;:42;;;;5063:14;;;;;:7;:14;;;;;5078:10;5063:26;;;;;;;:39;;5094:7;5063:39;:30;:39;:::i;:::-;-1:-1:-1;;;;;5034:14:0;;;;;;;:7;:14;;;;;;;;5049:10;5034:26;;;;;;;;:68;;;;5114:29;;;;;;;;;;;5034:14;;5114:29;;;;;;;;;;;-1:-1:-1;5157:4:0;4625:542;;;;;:::o;7938:136::-;7985:13;8000;8015:7;8040:4;8046:6;8054:11;;8032:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;8032:34:0;;;;;;;;;;;;;-1:-1:-1;;8032:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8032:34:0;;-1:-1:-1;8032:34:0;-1:-1:-1;8032:34:0;;;-1:-1:-1;8032:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7938:136;;;:::o;6657:26::-;;;;;;:::o;3946:109::-;-1:-1:-1;;;;;4033:16:0;4002:15;4033:16;;;:8;:16;;;;;;;3946:109::o;1079:20::-;;;-1:-1:-1;;;;;1079:20:0;;:::o;6628:::-;;;;;;;;;;;;;;;-1:-1:-1;;6628:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3261:476;3325:12;-1:-1:-1;;;;;3354:17:0;;3346:26;;;;;;3396:10;3387:20;;;;:8;:20;;;;;;:31;-1:-1:-1;3387:31:0;;;:46;;;3432:1;3422:7;:11;3387:46;:101;;;;-1:-1:-1;;;;;;3475:13:0;;;;;;:8;:13;;;;;;3446:26;3475:13;3464:7;3446:26;:17;:26;:::i;:::-;:42;3387:101;3379:110;;;;;;3594:10;3585:20;;;;:8;:20;;;;;;:33;;3610:7;3585:33;:24;:33;:::i;:::-;3571:10;3562:20;;;;:8;:20;;;;;;:56;;;;-1:-1:-1;;;;;3641:13:0;;;;;;:26;;3659:7;3641:26;:17;:26;:::i;:::-;-1:-1:-1;;;;;3625:13:0;;;;;;:8;:13;;;;;;;;;:42;;;;3679:34;;;;;;;3625:13;;3688:10;;3679:34;;;;;;;;;;-1:-1:-1;3727:4:0;3261:476;;;;:::o;6333:138::-;-1:-1:-1;;;;;6440:15:0;;;6407:17;6440:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;6333:138::o;1695:178::-;1508:5;;-1:-1:-1;;;;;1508:5:0;1494:10;:19;1486:28;;;;;;-1:-1:-1;;;;;1772:22:0;;1764:31;;;;;;1828:5;;1807:37;;-1:-1:-1;;;;;1807:37:0;;;;1828:5;;1807:37;;1828:5;;1807:37;1851:5;:16;;-1:-1:-1;;;;;;1851:16:0;-1:-1:-1;;;;;1851:16:0;;;;;;;;;;1695:178::o;724:133::-;782:7;810:5;;;829:6;;;;822:14;;;;850:1;724:133;-1:-1:-1;;;724:133:0:o;605:113::-;663:7;691:1;686;:6;;679:14;;;;-1:-1:-1;707:5:0;;;605:113::o;143:180::-;201:7;221:6;217:37;;-1:-1:-1;245:1:0;238:8;;217:37;272:5;;;276:1;272;:5;:1;291:5;;;;;:10;284:18;;

Swarm Source

bzzr://6c24b4bf51f680b7282cbd8543723efb7762f4d52e3922f60c8b5e443614fa8e
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.