ETH Price: $2,291.42 (+1.20%)

Token

Javvy (JVY)
 

Overview

Max Total Supply

333,333,333.333333 JVY

Holders

2,727 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2,678.57 JVY

Value
$0.00
0xf2b08995d61eb1d1b1042cc5ee96ba6ae745dad5
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Javvy brings all major crypto functionality within a single, simple, and secure app-based platform.

ICO Information

ICO Start Date : Dec 01, 2018
ICO End Date : Apr 30, 2019
Total Cap : 333,333,333.333333
Hard Cap : $8,000,000
ICO Price  : 0.0004 ETH
Bonus : 25% during pre-ICO
Country : Cayman Islands

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
JavvyToken

Compiler Version
v0.4.25+commit.59dbf8f1

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2018-11-16
*/

pragma solidity ^0.4.24;

contract Config {
    uint256 public constant jvySupply = 333333333333333;
    uint256 public constant bonusSupply = 83333333333333;
    uint256 public constant saleSupply =  250000000000000;
    uint256 public constant hardCapUSD = 8000000;

    uint256 public constant preIcoBonus = 25;
    uint256 public constant minimalContributionAmount = 0.4 ether;

    function getStartPreIco() public view returns (uint256) {
        // solium-disable-next-line security/no-block-members
        uint256 nowTime = block.timestamp;
        // uint256 _preIcoStartTime = nowTime + 2 days;
        uint256 _preIcoStartTime = nowTime + 1 minutes;
        return _preIcoStartTime;
    }

    function getStartIco() public view returns (uint256) {
        // solium-disable-next-line security/no-block-members
        // uint256 nowTime = block.timestamp;
        // uint256 _icoStartTime = nowTime + 20 days;
        uint256 _icoStartTime = 1543554000;
        return _icoStartTime;
    }

    function getEndIco() public view returns (uint256) {
        // solium-disable-next-line security/no-block-members
        // uint256 nowTime = block.timestamp;
        // uint256 _icoEndTime = nowTime + 50 days;
        uint256 _icoEndTime = 1551416400;
        return _icoEndTime;
    }
}

contract ERC20Basic {
  function totalSupply() public view returns (uint256);
  function balanceOf(address _who) public view returns (uint256);
  function transfer(address _to, uint256 _value) public returns (bool);
  event Transfer(address indexed from, address indexed to, uint256 value);
}

library SafeMath {

  /**
  * @dev Multiplies two numbers, throws on overflow.
  */
  function mul(uint256 _a, uint256 _b) internal pure returns (uint256 c) {
    // Gas optimization: this is cheaper than asserting '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;
    }

    c = _a * _b;
    assert(c / _a == _b);
    return c;
  }

  /**
  * @dev Integer division of two numbers, truncating the quotient.
  */
  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 _a / _b;
  }

  /**
  * @dev Subtracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend).
  */
  function sub(uint256 _a, uint256 _b) internal pure returns (uint256) {
    assert(_b <= _a);
    return _a - _b;
  }

  /**
  * @dev Adds two numbers, throws on overflow.
  */
  function add(uint256 _a, uint256 _b) internal pure returns (uint256 c) {
    c = _a + _b;
    assert(c >= _a);
    return c;
  }
}


contract ERC20 is ERC20Basic {
  function allowance(address _owner, address _spender)
    public view returns (uint256);

  function transferFrom(address _from, address _to, uint256 _value)
    public returns (bool);

  function approve(address _spender, uint256 _value) public returns (bool);
  event Approval(
    address indexed owner,
    address indexed spender,
    uint256 value
  );
}


contract DetailedERC20 is ERC20 {
  string public name;
  string public symbol;
  uint8 public decimals;

  constructor(string _name, string _symbol, uint8 _decimals) public {
    name = _name;
    symbol = _symbol;
    decimals = _decimals;
  }
}

contract BasicToken is ERC20Basic {
  using SafeMath for uint256;

  mapping(address => uint256) internal balances;

  uint256 internal totalSupply_;

  /**
  * @dev Total number of tokens in existence
  */
  function totalSupply() public view returns (uint256) {
    return totalSupply_;
  }

  /**
  * @dev Transfer token for 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) {
    require(_value <= balances[msg.sender]);
    require(_to != address(0));

    balances[msg.sender] = balances[msg.sender].sub(_value);
    balances[_to] = balances[_to].add(_value);
    emit Transfer(msg.sender, _to, _value);
    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) {
    return balances[_owner];
  }

}

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 _value uint256 the amount of tokens to be transferred
   */
  function transferFrom(
    address _from,
    address _to,
    uint256 _value
  )
    public
    returns (bool)
  {
    require(_value <= balances[_from]);
    require(_value <= allowed[_from][msg.sender]);
    require(_to != address(0));

    balances[_from] = balances[_from].sub(_value);
    balances[_to] = balances[_to].add(_value);
    allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value);
    emit Transfer(_from, _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) {
    allowed[msg.sender][_spender] = _value;
    emit Approval(msg.sender, _spender, _value);
    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)
  {
    return allowed[_owner][_spender];
  }

  /**
   * @dev Increase the amount of tokens that an owner allowed to a spender.
   * approve should be called when allowed[_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
   * @param _spender The address which will spend the funds.
   * @param _addedValue The amount of tokens to increase the allowance by.
   */
  function increaseApproval(
    address _spender,
    uint256 _addedValue
  )
    public
    returns (bool)
  {
    allowed[msg.sender][_spender] = (
      allowed[msg.sender][_spender].add(_addedValue));
    emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
    return true;
  }

  /**
   * @dev Decrease the amount of tokens that an owner allowed to a spender.
   * approve should be called when allowed[_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
   * @param _spender The address which will spend the funds.
   * @param _subtractedValue The amount of tokens to decrease the allowance by.
   */
  function decreaseApproval(
    address _spender,
    uint256 _subtractedValue
  )
    public
    returns (bool)
  {
    uint256 oldValue = allowed[msg.sender][_spender];
    if (_subtractedValue >= oldValue) {
      allowed[msg.sender][_spender] = 0;
    } else {
      allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue);
    }
    emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
    return true;
  }

}

contract Ownable {
  address public owner;


  event OwnershipRenounced(address indexed previousOwner);
  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 relinquish control of the contract.
   * @notice Renouncing to ownership will leave the contract without an owner.
   * It will not be possible to call the functions with the `onlyOwner`
   * modifier anymore.
   */
  function renounceOwnership() public onlyOwner {
    emit OwnershipRenounced(owner);
    owner = address(0);
  }

  /**
   * @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 {
    _transferOwnership(_newOwner);
  }

  /**
   * @dev Transfers control of the contract to a newOwner.
   * @param _newOwner The address to transfer ownership to.
   */
  function _transferOwnership(address _newOwner) internal {
    require(_newOwner != address(0));
    emit OwnershipTransferred(owner, _newOwner);
    owner = _newOwner;
  }
}

contract JavvyToken is DetailedERC20, StandardToken, Ownable, Config {
    address public crowdsaleAddress;
    address public bonusAddress;
    address public multiSigAddress;

    constructor(
        string _name, 
        string _symbol, 
        uint8 _decimals
    ) public
    DetailedERC20(_name, _symbol, _decimals) {
        require(
            jvySupply == saleSupply + bonusSupply,
            "Sum of provided supplies is not equal to declared total Javvy supply. Check config!"
        );
        totalSupply_ = tokenToDecimals(jvySupply);
    }

    function initializeBalances(
        address _crowdsaleAddress,
        address _bonusAddress,
        address _multiSigAddress
    ) public 
    onlyOwner() {
        crowdsaleAddress = _crowdsaleAddress;
        bonusAddress = _bonusAddress;
        multiSigAddress = _multiSigAddress;

        _initializeBalance(_crowdsaleAddress, saleSupply);
        _initializeBalance(_bonusAddress, bonusSupply);
    }

    function _initializeBalance(address _address, uint256 _supply) private {
        require(_address != address(0), "Address cannot be equal to 0x0!");
        require(_supply != 0, "Supply cannot be equal to 0!");
        balances[_address] = tokenToDecimals(_supply);
        emit Transfer(address(0), _address, _supply);
    }

    function tokenToDecimals(uint256 _amount) private view returns (uint256){
        // NOTE for additional accuracy, we're using 6 decimal places in supply
        return _amount * (10 ** 12);
    }

    function getRemainingSaleTokens() external view returns (uint256) {
        return balanceOf(crowdsaleAddress);
    }

}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"getStartIco","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"multiSigAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"crowdsaleAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"minimalContributionAmount","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"preIcoBonus","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"bonusSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getEndIco","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"bonusAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"jvySupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getRemainingSaleTokens","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"saleSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_crowdsaleAddress","type":"address"},{"name":"_bonusAddress","type":"address"},{"name":"_multiSigAddress","type":"address"}],"name":"initializeBalances","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"hardCapUSD","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getStartPreIco","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_name","type":"string"},{"name":"_symbol","type":"string"},{"name":"_decimals","type":"uint8"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"}],"name":"OwnershipRenounced","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]

60806040523480156200001157600080fd5b5060405162000ffb38038062000ffb8339810160409081528151602080840151928401519184018051909493909301928491849184916200005891600091860190620000ca565b5081516200006e906001906020850190620000ca565b506002805460ff90921660ff19909216919091179055505060068054600160a060020a03191633179055620000b366012f2a36ecd555640100000000620000c0810204565b600455506200016f915050565b64e8d4a510000290565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200010d57805160ff19168380011785556200013d565b828001600101855582156200013d579182015b828111156200013d57825182559160200191906001019062000120565b506200014b9291506200014f565b5090565b6200016c91905b808211156200014b576000815560010162000156565b90565b610e7c806200017f6000396000f3006080604052600436106101695763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461016e578063095ea7b3146101f85780630d950a02146102305780631516def71461025757806318160ddd1461028857806323b872dd1461029d578063313ce567146102c757806331d2f891146102f257806348ef200f1461030757806362492e9d1461031c578063661884631461033157806370a0823114610355578063715018a614610376578063863843bc1461038d5780638da5cb5b146103a257806392417064146103b757806395d89b41146103cc578063a381de54146103e1578063a4c2001d146103f6578063a55df3f91461040b578063a9059cbb14610420578063a96af0f414610444578063c4ddc49214610459578063d73dd62314610486578063dd62ed3e146104aa578063de81aaaa146104d1578063f073e3ef146104e6578063f2fde38b146104fb575b600080fd5b34801561017a57600080fd5b5061018361051c565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101bd5781810151838201526020016101a5565b50505050905090810190601f1680156101ea5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561020457600080fd5b5061021c600160a060020a03600435166024356105aa565b604080519115158252519081900360200190f35b34801561023c57600080fd5b50610245610610565b60408051918252519081900360200190f35b34801561026357600080fd5b5061026c610618565b60408051600160a060020a039092168252519081900360200190f35b34801561029457600080fd5b50610245610627565b3480156102a957600080fd5b5061021c600160a060020a036004358116906024351660443561062d565b3480156102d357600080fd5b506102dc6107a4565b6040805160ff9092168252519081900360200190f35b3480156102fe57600080fd5b5061026c6107ad565b34801561031357600080fd5b506102456107bc565b34801561032857600080fd5b506102456107c8565b34801561033d57600080fd5b5061021c600160a060020a03600435166024356107cd565b34801561036157600080fd5b50610245600160a060020a03600435166108bc565b34801561038257600080fd5b5061038b6108d7565b005b34801561039957600080fd5b50610245610945565b3480156103ae57600080fd5b5061026c61094f565b3480156103c357600080fd5b5061024561095e565b3480156103d857600080fd5b50610183610966565b3480156103ed57600080fd5b5061026c6109c0565b34801561040257600080fd5b506102456109cf565b34801561041757600080fd5b506102456109da565b34801561042c57600080fd5b5061021c600160a060020a03600435166024356109f7565b34801561045057600080fd5b50610245610ad8565b34801561046557600080fd5b5061038b600160a060020a0360043581169060243581169060443516610ae2565b34801561049257600080fd5b5061021c600160a060020a0360043516602435610b68565b3480156104b657600080fd5b50610245600160a060020a0360043581169060243516610c01565b3480156104dd57600080fd5b50610245610c2c565b3480156104f257600080fd5b50610245610c33565b34801561050757600080fd5b5061038b600160a060020a0360043516610c3a565b6000805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105a25780601f10610577576101008083540402835291602001916105a2565b820191906000526020600020905b81548152906001019060200180831161058557829003601f168201915b505050505081565b336000818152600560209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b635c00c3d090565b600954600160a060020a031681565b60045490565b600160a060020a03831660009081526003602052604081205482111561065257600080fd5b600160a060020a038416600090815260056020908152604080832033845290915290205482111561068257600080fd5b600160a060020a038316151561069757600080fd5b600160a060020a0384166000908152600360205260409020546106c0908363ffffffff610c5d16565b600160a060020a0380861660009081526003602052604080822093909355908516815220546106f5908363ffffffff610c6f16565b600160a060020a038085166000908152600360209081526040808320949094559187168152600582528281203382529091522054610739908363ffffffff610c5d16565b600160a060020a03808616600081815260056020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b60025460ff1681565b600754600160a060020a031681565b67058d15e17628000081565b601981565b336000908152600560209081526040808320600160a060020a038616845290915281205480831061082157336000908152600560209081526040808320600160a060020a0388168452909152812055610856565b610831818463ffffffff610c5d16565b336000908152600560209081526040808320600160a060020a03891684529091529020555b336000818152600560209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a031660009081526003602052604090205490565b600654600160a060020a031633146108ee57600080fd5b600654604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a26006805473ffffffffffffffffffffffffffffffffffffffff19169055565b654bca8dbb355581565b600654600160a060020a031681565b635c78bc5090565b60018054604080516020600284861615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105a25780601f10610577576101008083540402835291602001916105a2565b600854600160a060020a031681565b66012f2a36ecd55581565b6007546000906109f290600160a060020a03166108bc565b905090565b33600090815260036020526040812054821115610a1357600080fd5b600160a060020a0383161515610a2857600080fd5b33600090815260036020526040902054610a48908363ffffffff610c5d16565b3360009081526003602052604080822092909255600160a060020a03851681522054610a7a908363ffffffff610c6f16565b600160a060020a0384166000818152600360209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b65e35fa931a00081565b600654600160a060020a03163314610af957600080fd5b60078054600160a060020a0380861673ffffffffffffffffffffffffffffffffffffffff1992831617909255600880548584169083161790556009805492841692909116919091179055610b538365e35fa931a000610c82565b610b6382654bca8dbb3555610c82565b505050565b336000908152600560209081526040808320600160a060020a0386168452909152812054610b9c908363ffffffff610c6f16565b336000818152600560209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260056020908152604080832093909416825291909152205490565b627a120081565b42603c0190565b600654600160a060020a03163314610c5157600080fd5b610c5a81610dc8565b50565b600082821115610c6957fe5b50900390565b81810182811015610c7c57fe5b92915050565b600160a060020a0382161515610cf957604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f416464726573732063616e6e6f7420626520657175616c20746f203078302100604482015290519081900360640190fd5b801515610d6757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f537570706c792063616e6e6f7420626520657175616c20746f20302100000000604482015290519081900360640190fd5b610d7081610e46565b600160a060020a03831660008181526003602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600160a060020a0381161515610ddd57600080fd5b600654604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36006805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b64e8d4a5100002905600a165627a7a72305820a2bb81cd432b2acf50e6f0690c95dfd4f91fb395672e92eb3ce3197296452e1a0029000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000054a6176767900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034a56590000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101695763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461016e578063095ea7b3146101f85780630d950a02146102305780631516def71461025757806318160ddd1461028857806323b872dd1461029d578063313ce567146102c757806331d2f891146102f257806348ef200f1461030757806362492e9d1461031c578063661884631461033157806370a0823114610355578063715018a614610376578063863843bc1461038d5780638da5cb5b146103a257806392417064146103b757806395d89b41146103cc578063a381de54146103e1578063a4c2001d146103f6578063a55df3f91461040b578063a9059cbb14610420578063a96af0f414610444578063c4ddc49214610459578063d73dd62314610486578063dd62ed3e146104aa578063de81aaaa146104d1578063f073e3ef146104e6578063f2fde38b146104fb575b600080fd5b34801561017a57600080fd5b5061018361051c565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101bd5781810151838201526020016101a5565b50505050905090810190601f1680156101ea5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561020457600080fd5b5061021c600160a060020a03600435166024356105aa565b604080519115158252519081900360200190f35b34801561023c57600080fd5b50610245610610565b60408051918252519081900360200190f35b34801561026357600080fd5b5061026c610618565b60408051600160a060020a039092168252519081900360200190f35b34801561029457600080fd5b50610245610627565b3480156102a957600080fd5b5061021c600160a060020a036004358116906024351660443561062d565b3480156102d357600080fd5b506102dc6107a4565b6040805160ff9092168252519081900360200190f35b3480156102fe57600080fd5b5061026c6107ad565b34801561031357600080fd5b506102456107bc565b34801561032857600080fd5b506102456107c8565b34801561033d57600080fd5b5061021c600160a060020a03600435166024356107cd565b34801561036157600080fd5b50610245600160a060020a03600435166108bc565b34801561038257600080fd5b5061038b6108d7565b005b34801561039957600080fd5b50610245610945565b3480156103ae57600080fd5b5061026c61094f565b3480156103c357600080fd5b5061024561095e565b3480156103d857600080fd5b50610183610966565b3480156103ed57600080fd5b5061026c6109c0565b34801561040257600080fd5b506102456109cf565b34801561041757600080fd5b506102456109da565b34801561042c57600080fd5b5061021c600160a060020a03600435166024356109f7565b34801561045057600080fd5b50610245610ad8565b34801561046557600080fd5b5061038b600160a060020a0360043581169060243581169060443516610ae2565b34801561049257600080fd5b5061021c600160a060020a0360043516602435610b68565b3480156104b657600080fd5b50610245600160a060020a0360043581169060243516610c01565b3480156104dd57600080fd5b50610245610c2c565b3480156104f257600080fd5b50610245610c33565b34801561050757600080fd5b5061038b600160a060020a0360043516610c3a565b6000805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105a25780601f10610577576101008083540402835291602001916105a2565b820191906000526020600020905b81548152906001019060200180831161058557829003601f168201915b505050505081565b336000818152600560209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b635c00c3d090565b600954600160a060020a031681565b60045490565b600160a060020a03831660009081526003602052604081205482111561065257600080fd5b600160a060020a038416600090815260056020908152604080832033845290915290205482111561068257600080fd5b600160a060020a038316151561069757600080fd5b600160a060020a0384166000908152600360205260409020546106c0908363ffffffff610c5d16565b600160a060020a0380861660009081526003602052604080822093909355908516815220546106f5908363ffffffff610c6f16565b600160a060020a038085166000908152600360209081526040808320949094559187168152600582528281203382529091522054610739908363ffffffff610c5d16565b600160a060020a03808616600081815260056020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b60025460ff1681565b600754600160a060020a031681565b67058d15e17628000081565b601981565b336000908152600560209081526040808320600160a060020a038616845290915281205480831061082157336000908152600560209081526040808320600160a060020a0388168452909152812055610856565b610831818463ffffffff610c5d16565b336000908152600560209081526040808320600160a060020a03891684529091529020555b336000818152600560209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a031660009081526003602052604090205490565b600654600160a060020a031633146108ee57600080fd5b600654604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a26006805473ffffffffffffffffffffffffffffffffffffffff19169055565b654bca8dbb355581565b600654600160a060020a031681565b635c78bc5090565b60018054604080516020600284861615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105a25780601f10610577576101008083540402835291602001916105a2565b600854600160a060020a031681565b66012f2a36ecd55581565b6007546000906109f290600160a060020a03166108bc565b905090565b33600090815260036020526040812054821115610a1357600080fd5b600160a060020a0383161515610a2857600080fd5b33600090815260036020526040902054610a48908363ffffffff610c5d16565b3360009081526003602052604080822092909255600160a060020a03851681522054610a7a908363ffffffff610c6f16565b600160a060020a0384166000818152600360209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b65e35fa931a00081565b600654600160a060020a03163314610af957600080fd5b60078054600160a060020a0380861673ffffffffffffffffffffffffffffffffffffffff1992831617909255600880548584169083161790556009805492841692909116919091179055610b538365e35fa931a000610c82565b610b6382654bca8dbb3555610c82565b505050565b336000908152600560209081526040808320600160a060020a0386168452909152812054610b9c908363ffffffff610c6f16565b336000818152600560209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260056020908152604080832093909416825291909152205490565b627a120081565b42603c0190565b600654600160a060020a03163314610c5157600080fd5b610c5a81610dc8565b50565b600082821115610c6957fe5b50900390565b81810182811015610c7c57fe5b92915050565b600160a060020a0382161515610cf957604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f416464726573732063616e6e6f7420626520657175616c20746f203078302100604482015290519081900360640190fd5b801515610d6757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f537570706c792063616e6e6f7420626520657175616c20746f20302100000000604482015290519081900360640190fd5b610d7081610e46565b600160a060020a03831660008181526003602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600160a060020a0381161515610ddd57600080fd5b600654604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36006805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b64e8d4a5100002905600a165627a7a72305820a2bb81cd432b2acf50e6f0690c95dfd4f91fb395672e92eb3ce3197296452e1a0029

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000054a6176767900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034a56590000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Javvy
Arg [1] : _symbol (string): JVY
Arg [2] : _decimals (uint8): 18

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [4] : 4a61767679000000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 4a56590000000000000000000000000000000000000000000000000000000000


Swarm Source

bzzr://a2bb81cd432b2acf50e6f0690c95dfd4f91fb395672e92eb3ce3197296452e1a
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.