ETH Price: $2,410.40 (-0.32%)
Gas: 1.64 Gwei

Token

Finder Hyper (FH)
 

Overview

Max Total Supply

1,900,000,000 FH

Holders

1,388

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 2 Decimals)

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:
FinderHyper

Compiler Version
v0.4.24+commit.e67f0147

Optimization Enabled:
Yes with 200 runs

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

pragma solidity ^0.4.8;

contract ERC20Interface {
    function totalSupply() public constant returns (uint256 supply);
    function balance() public constant returns (uint256);
    function balanceOf(address _owner) public constant returns (uint256);
    function transfer(address _to, uint256 _value) public returns (bool success);
    function transferFrom(address _from, address _to, uint256 _value) public returns (bool success);
    function approve(address _spender, uint256 _value) public returns (bool success);
    function allowance(address _owner, address _spender) public constant returns (uint256 remaining);

    event Transfer(address indexed _from, address indexed _to, uint256 _value);
    event Approval(address indexed _owner, address indexed _spender, uint256 _value);
}

// FinderHyper
// YOU get a FinderHyper, and YOU get a FinderHyper, and YOU get a FinderHyper!
contract FinderHyper is ERC20Interface {
    string public constant symbol = "FH";
    string public constant name = "Finder Hyper";
    uint8 public constant decimals = 2;

    uint256 _totalSupply = 0;
    uint256 _airdropAmount = 100 * 10 ** uint256(decimals);
    uint256 _cutoff = _airdropAmount * 10000;
    uint256 _outAmount = 0;

    mapping(address => uint256) balances;
    mapping(address => bool) initialized;

    // FinderHyper accepts request to tip-touch another FinderHyper
    mapping(address => mapping (address => uint256)) allowed;

    function FinderHyper() {
        initialized[msg.sender] = true;
        balances[msg.sender] = _airdropAmount * 19000000 - _cutoff;
        _totalSupply = balances[msg.sender];
    }

    function totalSupply() constant returns (uint256 supply) {
        return _totalSupply;
    }

    // What's my girth?
    function balance() constant returns (uint256) {
        return getBalance(msg.sender);
    }

    // What is the length of a particular FinderHyper?
    function balanceOf(address _address) constant returns (uint256) {
        return getBalance(_address);
    }

    // Tenderly remove hand from FinderHyper and place on another FinderHyper
    function transfer(address _to, uint256 _amount) returns (bool success) {
        initialize(msg.sender);

        if (balances[msg.sender] >= _amount
            && _amount > 0) {
            initialize(_to);
            if (balances[_to] + _amount > balances[_to]) {

                balances[msg.sender] -= _amount;
                balances[_to] += _amount;

                Transfer(msg.sender, _to, _amount);

                return true;
            } else {
                return false;
            }
        } else {
            return false;
        }
    }

    // Perform the inevitable actions which cause release of that which each FinderHyper
    // is built to deliver. In EtherFinderHyperLand there are only FinderHyperes, so this 
    // allows the transmission of one FinderHyper's payload (or partial payload but that
    // is not as much fun) INTO another FinderHyper. This causes the FinderHyperae to change 
    // form such that all may see the glory they each represent. Erections.
    function transferFrom(address _from, address _to, uint256 _amount) returns (bool success) {
        initialize(_from);

        if (balances[_from] >= _amount
            && allowed[_from][msg.sender] >= _amount
            && _amount > 0) {
            initialize(_to);
            if (balances[_to] + _amount > balances[_to]) {

                balances[_from] -= _amount;
                allowed[_from][msg.sender] -= _amount;
                balances[_to] += _amount;

                Transfer(_from, _to, _amount);

                return true;
            } else {
                return false;
            }
        } else {
            return false;
        }
    }

    // Allow splooger to cause a payload release from your FinderHyper, multiple times, up to 
    // the point at which no further release is possible..
    function approve(address _spender, uint256 _amount) returns (bool success) {
        allowed[msg.sender][_spender] = _amount;
        Approval(msg.sender, _spender, _amount);
        return true;
    }

    function allowance(address _owner, address _spender) constant returns (uint256 remaining) {
        return allowed[_owner][_spender];
    }

    // internal privats
    function initialize(address _address) internal returns (bool success) {
        if (_outAmount < _cutoff && !initialized[_address]) {
            initialized[_address] = true;
            balances[_address] = _airdropAmount;
            _outAmount += _airdropAmount;
            _totalSupply += _airdropAmount;
        }
        return true;
    }

    function getBalance(address _address) internal returns (uint256) {
        if (_outAmount < _cutoff && !initialized[_address]) {
            return balances[_address] + _airdropAmount;
        }
        else {
            return balances[_address];
        }
    }
    
    function getOutAmount()constant returns(uint256 amount){
        return _outAmount;
    }
    
}

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":"_amount","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"supply","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","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":"_address","type":"address"}],"name":"balanceOf","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":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"balance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getOutAmount","outputs":[{"name":"amount","type":"uint256"}],"payable":false,"stateMutability":"view","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"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"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"},{"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"}]

608060405260008080556127106001556305f5e10060025560035534801561002657600080fd5b50336000908152600560209081526040808320805460ff1916600190811790915560025490546004909352908320630121eac0909202039081905590556106e4806100726000396000f3006080604052600436106100ae5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100b3578063095ea7b31461013d57806318160ddd1461017557806323b872dd1461019c578063313ce567146101c657806370a08231146101f157806395d89b4114610212578063a9059cbb14610227578063b69ef8a81461024b578063d07adab314610260578063dd62ed3e14610275575b600080fd5b3480156100bf57600080fd5b506100c861029c565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101025781810151838201526020016100ea565b50505050905090810190601f16801561012f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561014957600080fd5b50610161600160a060020a03600435166024356102d3565b604080519115158252519081900360200190f35b34801561018157600080fd5b5061018a61033a565b60408051918252519081900360200190f35b3480156101a857600080fd5b50610161600160a060020a0360043581169060243516604435610340565b3480156101d257600080fd5b506101db610465565b6040805160ff9092168252519081900360200190f35b3480156101fd57600080fd5b5061018a600160a060020a036004351661046a565b34801561021e57600080fd5b506100c861047d565b34801561023357600080fd5b50610161600160a060020a03600435166024356104b4565b34801561025757600080fd5b5061018a610585565b34801561026c57600080fd5b5061018a610595565b34801561028157600080fd5b5061018a600160a060020a036004358116906024351661059b565b60408051808201909152600c81527f46696e6465722048797065720000000000000000000000000000000000000000602082015281565b336000818152600660209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a35060015b92915050565b60005490565b600061034b846105c6565b50600160a060020a03841660009081526004602052604090205482118015906103975750600160a060020a03841660009081526006602090815260408083203384529091529020548211155b80156103a35750600082115b1561045a576103b1836105c6565b50600160a060020a038316600090815260046020526040902054828101111561045a57600160a060020a0380851660008181526004602081815260408084208054899003905560068252808420338552825280842080548990039055948816808452918152918490208054870190558351868152935190937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92908290030190a350600161045e565b5060005b9392505050565b600281565b600061047582610643565b90505b919050565b60408051808201909152600281527f4648000000000000000000000000000000000000000000000000000000000000602082015281565b60006104bf336105c6565b503360009081526004602052604090205482118015906104df5750600082115b1561057d576104ed836105c6565b50600160a060020a038316600090815260046020526040902054828101111561057d5733600081815260046020908152604080832080548790039055600160a060020a03871680845292819020805487019055805186815290519293927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a3506001610334565b506000610334565b600061059033610643565b905090565b60035490565b600160a060020a03918216600090815260066020908152604080832093909416825291909152205490565b60006002546003541080156105f45750600160a060020a03821660009081526005602052604090205460ff16155b1561063b57600160a060020a0382166000908152600560209081526040808320805460ff191660019081179091555460049092528220819055600380548201905581540190555b506001919050565b60006002546003541080156106715750600160a060020a03821660009081526005602052604090205460ff16155b156106995750600154600160a060020a03821660009081526004602052604090205401610478565b50600160a060020a0381166000908152600460205260409020546104785600a165627a7a72305820dd34f425f6cf193f9420d1ad61a422fe06acdea6e8eb2ee07357ef2ba73ae2040029

Deployed Bytecode

0x6080604052600436106100ae5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100b3578063095ea7b31461013d57806318160ddd1461017557806323b872dd1461019c578063313ce567146101c657806370a08231146101f157806395d89b4114610212578063a9059cbb14610227578063b69ef8a81461024b578063d07adab314610260578063dd62ed3e14610275575b600080fd5b3480156100bf57600080fd5b506100c861029c565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101025781810151838201526020016100ea565b50505050905090810190601f16801561012f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561014957600080fd5b50610161600160a060020a03600435166024356102d3565b604080519115158252519081900360200190f35b34801561018157600080fd5b5061018a61033a565b60408051918252519081900360200190f35b3480156101a857600080fd5b50610161600160a060020a0360043581169060243516604435610340565b3480156101d257600080fd5b506101db610465565b6040805160ff9092168252519081900360200190f35b3480156101fd57600080fd5b5061018a600160a060020a036004351661046a565b34801561021e57600080fd5b506100c861047d565b34801561023357600080fd5b50610161600160a060020a03600435166024356104b4565b34801561025757600080fd5b5061018a610585565b34801561026c57600080fd5b5061018a610595565b34801561028157600080fd5b5061018a600160a060020a036004358116906024351661059b565b60408051808201909152600c81527f46696e6465722048797065720000000000000000000000000000000000000000602082015281565b336000818152600660209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a35060015b92915050565b60005490565b600061034b846105c6565b50600160a060020a03841660009081526004602052604090205482118015906103975750600160a060020a03841660009081526006602090815260408083203384529091529020548211155b80156103a35750600082115b1561045a576103b1836105c6565b50600160a060020a038316600090815260046020526040902054828101111561045a57600160a060020a0380851660008181526004602081815260408084208054899003905560068252808420338552825280842080548990039055948816808452918152918490208054870190558351868152935190937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92908290030190a350600161045e565b5060005b9392505050565b600281565b600061047582610643565b90505b919050565b60408051808201909152600281527f4648000000000000000000000000000000000000000000000000000000000000602082015281565b60006104bf336105c6565b503360009081526004602052604090205482118015906104df5750600082115b1561057d576104ed836105c6565b50600160a060020a038316600090815260046020526040902054828101111561057d5733600081815260046020908152604080832080548790039055600160a060020a03871680845292819020805487019055805186815290519293927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a3506001610334565b506000610334565b600061059033610643565b905090565b60035490565b600160a060020a03918216600090815260066020908152604080832093909416825291909152205490565b60006002546003541080156105f45750600160a060020a03821660009081526005602052604090205460ff16155b1561063b57600160a060020a0382166000908152600560209081526040808320805460ff191660019081179091555460049092528220819055600380548201905581540190555b506001919050565b60006002546003541080156106715750600160a060020a03821660009081526005602052604090205460ff16155b156106995750600154600160a060020a03821660009081526004602052604090205401610478565b50600160a060020a0381166000908152600460205260409020546104785600a165627a7a72305820dd34f425f6cf193f9420d1ad61a422fe06acdea6e8eb2ee07357ef2ba73ae2040029

Swarm Source

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