ETH Price: $1,933.02 (-2.79%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

More Info

Private Name Tags

TokenTracker

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve218526972025-02-15 15:24:23377 days ago1739633063IN
0xd2Fa8f92...22db2BA49
0 ETH0.000037920.81860895
Approve205485992024-08-17 13:19:35559 days ago1723900775IN
0xd2Fa8f92...22db2BA49
0 ETH0.000075091.62807481
Transfer191191882024-01-30 12:00:47759 days ago1706616047IN
0xd2Fa8f92...22db2BA49
0 ETH0.0017145534.31029767
Transfer190830392024-01-25 10:29:47764 days ago1706178587IN
0xd2Fa8f92...22db2BA49
0 ETH0.0021242342.50850622
Transfer186582022023-11-26 20:24:11823 days ago1701030251IN
0xd2Fa8f92...22db2BA49
0 ETH0.001404828.11864097
Transfer170341552023-04-12 20:02:111051 days ago1681329731IN
0xd2Fa8f92...22db2BA49
0 ETH0.0012862525.74573
Approve170207072023-04-10 22:23:351053 days ago1681165415IN
0xd2Fa8f92...22db2BA49
0 ETH0.0005997622.96633335
Approve170090752023-04-09 6:47:111055 days ago1681022831IN
0xd2Fa8f92...22db2BA49
0 ETH0.0004979919.06920357
Transfer155448582022-09-16 7:59:591260 days ago1663315199IN
0xd2Fa8f92...22db2BA49
0 ETH0.000381427.63466532
Approve151563102022-07-16 22:01:591321 days ago1658008919IN
0xd2Fa8f92...22db2BA49
0 ETH0.0003161512.10611132
Transfer144309302022-03-21 17:00:081439 days ago1647882008IN
0xd2Fa8f92...22db2BA49
0 ETH0.0018176836.38282619
Transfer141457282022-02-05 11:22:301483 days ago1644060150IN
0xd2Fa8f92...22db2BA49
0 ETH0.0014475144.03478304
Approve135269242021-10-31 20:30:411579 days ago1635712241IN
0xd2Fa8f92...22db2BA49
0 ETH0.00719184155
Approve127541042021-07-03 10:38:541700 days ago1625308734IN
0xd2Fa8f92...22db2BA49
0 ETH0.000371198
Approve127127052021-06-26 23:52:111706 days ago1624751531IN
0xd2Fa8f92...22db2BA49
0 ETH0.0005536212
Approve126161672021-06-11 23:23:061721 days ago1623453786IN
0xd2Fa8f92...22db2BA49
0 ETH0.0005567812
Approve125439602021-05-31 19:19:531732 days ago1622488793IN
0xd2Fa8f92...22db2BA49
0 ETH0.0008765619
Approve124566232021-05-18 6:00:451746 days ago1621317645IN
0xd2Fa8f92...22db2BA49
0 ETH0.0027839460
Transfer123824702021-05-06 18:52:421757 days ago1620327162IN
0xd2Fa8f92...22db2BA49
0 ETH0.0038941298
Approve123726012021-05-05 6:27:581759 days ago1620196078IN
0xd2Fa8f92...22db2BA49
0 ETH0.0016842836.3
Approve123725082021-05-05 6:05:251759 days ago1620194725IN
0xd2Fa8f92...22db2BA49
0 ETH0.0013455729
Approve122537452021-04-16 22:06:421777 days ago1618610802IN
0xd2Fa8f92...22db2BA49
0 ETH0.00724319157
Transfer121961452021-04-08 1:09:471786 days ago1617844187IN
0xd2Fa8f92...22db2BA49
0 ETH0.00567925146.85714285
Approve121756592021-04-04 21:40:271789 days ago1617572427IN
0xd2Fa8f92...22db2BA49
0 ETH0.0038540187
Approve121138962021-03-26 9:47:571799 days ago1616752077IN
0xd2Fa8f92...22db2BA49
0 ETH0.00646765146
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Method Block
From
To
Transfer50595122018-02-09 14:33:242940 days ago1518186804  Contract Creation0 ETH
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
OrigamiToken

Compiler Version
v0.4.19+commit.c4cbbb05

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
/**
 *Submitted for verification at Etherscan.io on 2018-02-12
*/

pragma solidity 0.4.19;

/**
 * @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.
   */
  function Ownable() 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) onlyOwner public {
    require(newOwner != address(0));
    OwnershipTransferred(owner, newOwner);
    owner = newOwner;
  }
}

/**
 * @title SafeMath
 * @dev Math operations with safety checks that throw on error
 */
library SafeMath {
  function mul(uint256 a, uint256 b) internal pure returns (uint256)  {
    uint256 c = a * b;
    assert(a == 0 || 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;
  }
  
  function max(uint256 a, uint256 b) internal pure returns (uint256) {
    return a > b ? a : b;
  }
}

/**
 * @title ERC20Basic
 * @dev Simpler version of ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/179
 */
contract ERC20Basic {
  function totalSupply() public view returns (uint256);
  function balanceOf(address who) public constant returns (uint256);
  function transfer(address to, uint256 value) public returns (bool);
  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 constant 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);
}

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

  mapping(address => uint256) balances;

  uint256 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(_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;
  }

  /**
  * @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 constant 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
 * @dev Based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
 */
contract StandardToken is ERC20, BasicToken {

  mapping (address => mapping (address => uint256)) 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(_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;
  }

  /**
   * @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;
    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 constant returns (uint256 remaining) {
    return allowed[_owner][_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
   */
  function increaseApproval (address _spender, uint _addedValue)
    public
    returns (bool success) {
    allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue);
    Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
    return true;
  }

  function decreaseApproval (address _spender, uint _subtractedValue)
  public
    returns (bool success) {
    uint oldValue = allowed[msg.sender][_spender];
    if (_subtractedValue > oldValue) {
      allowed[msg.sender][_spender] = 0;
    } else {
      allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue);
    }
    Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
    return true;
  }
}

/**
 * @title The OrigamiToken contract
 * @dev The OrigamiToken Token contract
 * @dev inherite from StandardToken and Ownable by Zeppelin
 * @author ori.network
 */
contract OrigamiToken is StandardToken, Ownable {
    string  public  constant name = "Origami Network";
    string  public  constant symbol = "ORI";
    uint8    public  constant decimals = 18;

    uint    public  transferableStartTime;

    address public  tokenSaleContract;
    address public  bountyWallet;


    modifier onlyWhenTransferEnabled() 
    {
        if ( now <= transferableStartTime ) {
            require(msg.sender == tokenSaleContract || msg.sender == bountyWallet || msg.sender == owner);
        }
        _;
    }

    modifier validDestination(address to) 
    {
        require(to != address(this));
        _;
    }

    function OrigamiToken(
        uint tokenTotalAmount, 
        uint _transferableStartTime, 
        address _admin, 
        address _bountyWallet) public
    {
        // Mint all tokens. Then disable minting forever.
        totalSupply_ = tokenTotalAmount * (10 ** uint256(decimals));

        // Send token to the contract
        balances[msg.sender] = totalSupply_;
        Transfer(address(0x0), msg.sender, totalSupply_);

        // Transferable start time will be set x days after sale end
        transferableStartTime = _transferableStartTime;
        // Keep the sale contrat to allow transfer from contract during the sale
        tokenSaleContract = msg.sender;
        //  Keep bounty wallet to distribute bounties before transfer is allowed
        bountyWallet = _bountyWallet;

        transferOwnership(_admin); // admin could drain tokens and eth that were sent here by mistake
    }

    /**
     * @dev override transfer token for a specified address to add onlyWhenTransferEnabled and validDestination
     * @param _to The address to transfer to.
     * @param _value The amount to be transferred.
     */
    function transfer(address _to, uint _value)
        public
        validDestination(_to)
        onlyWhenTransferEnabled
        returns (bool) 
    {
        return super.transfer(_to, _value);
    }

    /**
     * @dev override transferFrom token for a specified address to add onlyWhenTransferEnabled and validDestination
     * @param _from The address to transfer from.
     * @param _to The address to transfer to.
     * @param _value The amount to be transferred.
     */
    function transferFrom(address _from, address _to, uint _value)
        public
        validDestination(_to)
        onlyWhenTransferEnabled
        returns (bool) 
    {
        return super.transferFrom(_from, _to, _value);
    }

    event Burn(address indexed _burner, uint _value);

    /**
     * @dev burn tokens
     * @param _value The amount to be burned.
     * @return always true (necessary in case of override)
     */
    function burn(uint _value) 
        public
        onlyWhenTransferEnabled
        returns (bool)
    {
        balances[msg.sender] = balances[msg.sender].sub(_value);
        totalSupply_ = totalSupply_.sub(_value);
        Burn(msg.sender, _value);
        Transfer(msg.sender, address(0x0), _value);
        return true;
    }

    /**
     * @dev burn tokens in the behalf of someone
     * @param _from The address of the owner of the token.
     * @param _value The amount to be burned.
     * @return always true (necessary in case of override)
     */
    function burnFrom(address _from, uint256 _value) 
        public
        onlyWhenTransferEnabled
        returns(bool) 
    {
        assert(transferFrom(_from, msg.sender, _value));
        return burn(_value);
    }

    /**
     * @dev transfer to owner any tokens send by mistake on this contracts
     * @param token The address of the token to transfer.
     * @param amount The amount to be transfered.
     */
    function emergencyERC20Drain(ERC20 token, uint amount )
        public
        onlyOwner 
    {
        token.transfer(owner, amount);
    }
}

Contract Security Audit

Contract ABI

API
[{"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":"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":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"tokenSaleContract","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_value","type":"uint256"}],"name":"burnFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"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":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"token","type":"address"},{"name":"amount","type":"uint256"}],"name":"emergencyERC20Drain","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"bountyWallet","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"transferableStartTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"tokenTotalAmount","type":"uint256"},{"name":"_transferableStartTime","type":"uint256"},{"name":"_admin","type":"address"},{"name":"_bountyWallet","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_burner","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Burn","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"}]

6060604052341561000f57600080fd5b604051608080610f828339810160405280805191906020018051919060200180519190602001805160038054600160a060020a03191633600160a060020a0316908117909155670de0b6b3a76400008702600181905560008281526020819052604080822083905593955091935090917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91905190815260200160405180910390a3600483905560058054600160a060020a03338116600160a060020a03199283161790925560068054928416929091169190911790556100fc82640100000000610a6061010582021704565b50505050610193565b60035433600160a060020a0390811691161461012057600080fd5b600160a060020a038116151561013557600080fd5b600354600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360038054600160a060020a031916600160a060020a0392909216919091179055565b610de0806101a26000396000f3006060604052600436106101065763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461010b578063095ea7b31461019557806318160ddd146101cb57806323b872dd146101f0578063313ce5671461021857806342966c68146102415780635d5aa27714610257578063661884631461028657806370a08231146102a857806379cc6790146102c75780638da5cb5b146102e957806395d89b41146102fc578063a9059cbb1461030f578063d73dd62314610331578063db0e16f114610353578063dd62ed3e14610377578063e57605201461039c578063f2fde38b146103af578063f6f5eb59146103ce575b600080fd5b341561011657600080fd5b61011e6103e1565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561015a578082015183820152602001610142565b50505050905090810190601f1680156101875780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101a057600080fd5b6101b7600160a060020a0360043516602435610418565b604051901515815260200160405180910390f35b34156101d657600080fd5b6101de610484565b60405190815260200160405180910390f35b34156101fb57600080fd5b6101b7600160a060020a036004358116906024351660443561048a565b341561022357600080fd5b61022b61051a565b60405160ff909116815260200160405180910390f35b341561024c57600080fd5b6101b760043561051f565b341561026257600080fd5b61026a610656565b604051600160a060020a03909116815260200160405180910390f35b341561029157600080fd5b6101b7600160a060020a0360043516602435610665565b34156102b357600080fd5b6101de600160a060020a036004351661075f565b34156102d257600080fd5b6101b7600160a060020a036004351660243561077a565b34156102f457600080fd5b61026a6107f8565b341561030757600080fd5b61011e610807565b341561031a57600080fd5b6101b7600160a060020a036004351660243561083e565b341561033c57600080fd5b6101b7600160a060020a03600435166024356108cc565b341561035e57600080fd5b610375600160a060020a0360043516602435610970565b005b341561038257600080fd5b6101de600160a060020a0360043581169060243516610a26565b34156103a757600080fd5b61026a610a51565b34156103ba57600080fd5b610375600160a060020a0360043516610a60565b34156103d957600080fd5b6101de610afb565b60408051908101604052600f81527f4f726967616d69204e6574776f726b0000000000000000000000000000000000602082015281565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b60015490565b60008230600160a060020a031681600160a060020a0316141515156104ae57600080fd5b60045442116105065760055433600160a060020a03908116911614806104e2575060065433600160a060020a039081169116145b806104fb575060035433600160a060020a039081169116145b151561050657600080fd5b610511858585610b01565b95945050505050565b601281565b600454600090421161057a5760055433600160a060020a0390811691161480610556575060065433600160a060020a039081169116145b8061056f575060035433600160a060020a039081169116145b151561057a57600080fd5b600160a060020a0333166000908152602081905260409020546105a3908363ffffffff610c8116565b600160a060020a0333166000908152602081905260409020556001546105cf908363ffffffff610c8116565b600155600160a060020a0333167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58360405190815260200160405180910390a2600033600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405190815260200160405180910390a3506001919050565b600554600160a060020a031681565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054808311156106c257600160a060020a0333811660009081526002602090815260408083209388168352929052908120556106f9565b6106d2818463ffffffff610c8116565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a35060019392505050565b600160a060020a031660009081526020819052604090205490565b60045460009042116107d55760055433600160a060020a03908116911614806107b1575060065433600160a060020a039081169116145b806107ca575060035433600160a060020a039081169116145b15156107d557600080fd5b6107e083338461048a565b15156107e857fe5b6107f18261051f565b9392505050565b600354600160a060020a031681565b60408051908101604052600381527f4f52490000000000000000000000000000000000000000000000000000000000602082015281565b60008230600160a060020a031681600160a060020a03161415151561086257600080fd5b60045442116108ba5760055433600160a060020a0390811691161480610896575060065433600160a060020a039081169116145b806108af575060035433600160a060020a039081169116145b15156108ba57600080fd5b6108c48484610c93565b949350505050565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054610904908363ffffffff610da516565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b60035433600160a060020a0390811691161461098b57600080fd5b600354600160a060020a038084169163a9059cbb9116836000604051602001526040517c010000000000000000000000000000000000000000000000000000000063ffffffff8516028152600160a060020a0390921660048301526024820152604401602060405180830381600087803b1515610a0757600080fd5b6102c65a03f11515610a1857600080fd5b505050604051805150505050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600654600160a060020a031681565b60035433600160a060020a03908116911614610a7b57600080fd5b600160a060020a0381161515610a9057600080fd5b600354600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60045481565b6000600160a060020a0383161515610b1857600080fd5b600160a060020a038416600090815260208190526040902054821115610b3d57600080fd5b600160a060020a0380851660009081526002602090815260408083203390941683529290522054821115610b7057600080fd5b600160a060020a038416600090815260208190526040902054610b99908363ffffffff610c8116565b600160a060020a038086166000908152602081905260408082209390935590851681522054610bce908363ffffffff610da516565b600160a060020a0380851660009081526020818152604080832094909455878316825260028152838220339093168252919091522054610c14908363ffffffff610c8116565b600160a060020a03808616600081815260026020908152604080832033861684529091529081902093909355908516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060019392505050565b600082821115610c8d57fe5b50900390565b6000600160a060020a0383161515610caa57600080fd5b600160a060020a033316600090815260208190526040902054821115610ccf57600080fd5b600160a060020a033316600090815260208190526040902054610cf8908363ffffffff610c8116565b600160a060020a033381166000908152602081905260408082209390935590851681522054610d2d908363ffffffff610da516565b60008085600160a060020a0316600160a060020a031681526020019081526020016000208190555082600160a060020a031633600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405190815260200160405180910390a350600192915050565b6000828201838110156107f157fe00a165627a7a7230582088efebfd8cc73be58f048b02df635844d9039674fb66acd4c34fadc139466dc800290000000000000000000000000000000000000000000000000000000002faf080000000000000000000000000000000000000000000000000000000005abecf7f000000000000000000000000f498ed871995c178a5815dd6d80ae60e1c5ca2f4000000000000000000000000dba7a16383658aedf0a28eabf2032479f128f26d

Deployed Bytecode

0x6060604052600436106101065763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461010b578063095ea7b31461019557806318160ddd146101cb57806323b872dd146101f0578063313ce5671461021857806342966c68146102415780635d5aa27714610257578063661884631461028657806370a08231146102a857806379cc6790146102c75780638da5cb5b146102e957806395d89b41146102fc578063a9059cbb1461030f578063d73dd62314610331578063db0e16f114610353578063dd62ed3e14610377578063e57605201461039c578063f2fde38b146103af578063f6f5eb59146103ce575b600080fd5b341561011657600080fd5b61011e6103e1565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561015a578082015183820152602001610142565b50505050905090810190601f1680156101875780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101a057600080fd5b6101b7600160a060020a0360043516602435610418565b604051901515815260200160405180910390f35b34156101d657600080fd5b6101de610484565b60405190815260200160405180910390f35b34156101fb57600080fd5b6101b7600160a060020a036004358116906024351660443561048a565b341561022357600080fd5b61022b61051a565b60405160ff909116815260200160405180910390f35b341561024c57600080fd5b6101b760043561051f565b341561026257600080fd5b61026a610656565b604051600160a060020a03909116815260200160405180910390f35b341561029157600080fd5b6101b7600160a060020a0360043516602435610665565b34156102b357600080fd5b6101de600160a060020a036004351661075f565b34156102d257600080fd5b6101b7600160a060020a036004351660243561077a565b34156102f457600080fd5b61026a6107f8565b341561030757600080fd5b61011e610807565b341561031a57600080fd5b6101b7600160a060020a036004351660243561083e565b341561033c57600080fd5b6101b7600160a060020a03600435166024356108cc565b341561035e57600080fd5b610375600160a060020a0360043516602435610970565b005b341561038257600080fd5b6101de600160a060020a0360043581169060243516610a26565b34156103a757600080fd5b61026a610a51565b34156103ba57600080fd5b610375600160a060020a0360043516610a60565b34156103d957600080fd5b6101de610afb565b60408051908101604052600f81527f4f726967616d69204e6574776f726b0000000000000000000000000000000000602082015281565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b60015490565b60008230600160a060020a031681600160a060020a0316141515156104ae57600080fd5b60045442116105065760055433600160a060020a03908116911614806104e2575060065433600160a060020a039081169116145b806104fb575060035433600160a060020a039081169116145b151561050657600080fd5b610511858585610b01565b95945050505050565b601281565b600454600090421161057a5760055433600160a060020a0390811691161480610556575060065433600160a060020a039081169116145b8061056f575060035433600160a060020a039081169116145b151561057a57600080fd5b600160a060020a0333166000908152602081905260409020546105a3908363ffffffff610c8116565b600160a060020a0333166000908152602081905260409020556001546105cf908363ffffffff610c8116565b600155600160a060020a0333167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58360405190815260200160405180910390a2600033600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405190815260200160405180910390a3506001919050565b600554600160a060020a031681565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054808311156106c257600160a060020a0333811660009081526002602090815260408083209388168352929052908120556106f9565b6106d2818463ffffffff610c8116565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a35060019392505050565b600160a060020a031660009081526020819052604090205490565b60045460009042116107d55760055433600160a060020a03908116911614806107b1575060065433600160a060020a039081169116145b806107ca575060035433600160a060020a039081169116145b15156107d557600080fd5b6107e083338461048a565b15156107e857fe5b6107f18261051f565b9392505050565b600354600160a060020a031681565b60408051908101604052600381527f4f52490000000000000000000000000000000000000000000000000000000000602082015281565b60008230600160a060020a031681600160a060020a03161415151561086257600080fd5b60045442116108ba5760055433600160a060020a0390811691161480610896575060065433600160a060020a039081169116145b806108af575060035433600160a060020a039081169116145b15156108ba57600080fd5b6108c48484610c93565b949350505050565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054610904908363ffffffff610da516565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b60035433600160a060020a0390811691161461098b57600080fd5b600354600160a060020a038084169163a9059cbb9116836000604051602001526040517c010000000000000000000000000000000000000000000000000000000063ffffffff8516028152600160a060020a0390921660048301526024820152604401602060405180830381600087803b1515610a0757600080fd5b6102c65a03f11515610a1857600080fd5b505050604051805150505050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600654600160a060020a031681565b60035433600160a060020a03908116911614610a7b57600080fd5b600160a060020a0381161515610a9057600080fd5b600354600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60045481565b6000600160a060020a0383161515610b1857600080fd5b600160a060020a038416600090815260208190526040902054821115610b3d57600080fd5b600160a060020a0380851660009081526002602090815260408083203390941683529290522054821115610b7057600080fd5b600160a060020a038416600090815260208190526040902054610b99908363ffffffff610c8116565b600160a060020a038086166000908152602081905260408082209390935590851681522054610bce908363ffffffff610da516565b600160a060020a0380851660009081526020818152604080832094909455878316825260028152838220339093168252919091522054610c14908363ffffffff610c8116565b600160a060020a03808616600081815260026020908152604080832033861684529091529081902093909355908516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060019392505050565b600082821115610c8d57fe5b50900390565b6000600160a060020a0383161515610caa57600080fd5b600160a060020a033316600090815260208190526040902054821115610ccf57600080fd5b600160a060020a033316600090815260208190526040902054610cf8908363ffffffff610c8116565b600160a060020a033381166000908152602081905260408082209390935590851681522054610d2d908363ffffffff610da516565b60008085600160a060020a0316600160a060020a031681526020019081526020016000208190555082600160a060020a031633600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405190815260200160405180910390a350600192915050565b6000828201838110156107f157fe00a165627a7a7230582088efebfd8cc73be58f048b02df635844d9039674fb66acd4c34fadc139466dc80029

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

0000000000000000000000000000000000000000000000000000000002faf080000000000000000000000000000000000000000000000000000000005abecf7f000000000000000000000000f498ed871995c178a5815dd6d80ae60e1c5ca2f4000000000000000000000000dba7a16383658aedf0a28eabf2032479f128f26d

-----Decoded View---------------
Arg [0] : tokenTotalAmount (uint256): 50000000
Arg [1] : _transferableStartTime (uint256): 1522454399
Arg [2] : _admin (address): 0xf498ED871995C178a5815dd6D80AE60e1c5Ca2F4
Arg [3] : _bountyWallet (address): 0xDBA7a16383658AeDf0A28Eabf2032479F128f26D

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000002faf080
Arg [1] : 000000000000000000000000000000000000000000000000000000005abecf7f
Arg [2] : 000000000000000000000000f498ed871995c178a5815dd6d80ae60e1c5ca2f4
Arg [3] : 000000000000000000000000dba7a16383658aedf0a28eabf2032479f128f26d


Swarm Source

bzzr://88efebfd8cc73be58f048b02df635844d9039674fb66acd4c34fadc139466dc8

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.