Bitcoin Forum
May 26, 2024, 05:52:05 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 [2] 3 »  All
  Print  
Author Topic: INVESTOR AND BOUNTY HUNTER: How to avoid scams?  (Read 483 times)
Dabll_kilDaRk0
Newbie
*
Offline Offline

Activity: 18
Merit: 0


View Profile
August 18, 2018, 01:45:09 PM
 #21

It is useful to know from the very start which team has a sufficient level of knowledge in coding ...
Banny_hopyy94
Newbie
*
Offline Offline

Activity: 69
Merit: 0


View Profile
August 18, 2018, 03:09:48 PM
 #22

There are many signs of scams during the ICO, but I would like to draw your attention to one, in my opinion the most important.
This sign: AUDIT smart contract. The quality of his code.
Before deciding to participate in a particular project, you need to know: Was an audit conducted?
If NO, then it would be good to audit yourself.
Previously, it was expensive, but now you can order an audit for free.
It takes you several minutes to complete the form and as a result you will receive important information that will help you save your money and time!


Who will invest in the project or advertise it if its tokens can be stolen by any hacker?

ORDER THE AUDIT FOR FREE
HERE


https://pp.userapi.com/c831408/v831408033/16f1d8/dHXNIskb73E.jpg
will31B
Newbie
*
Offline Offline

Activity: 2
Merit: 0


View Profile
August 18, 2018, 03:26:23 PM
 #23

I added a smart contract for the audit, but I can not believe that there will be a result.

https://github.com/EIPlatform/EMI-Token/blob/master/EMI.sol

Suspicious project.
BinPooool
Newbie
*
Offline Offline

Activity: 38
Merit: 0


View Profile
August 18, 2018, 05:33:18 PM
 #24

We need to check all the smart contracts)))
Linaut7ez2
Newbie
*
Offline Offline

Activity: 82
Merit: 0


View Profile
August 19, 2018, 04:16:07 AM
 #25

I need to know if there are errors in the code.

https://bitcointalk.org/index.php?topic=4479873.0

Code:
pragma solidity ^0.4.21;



interface tokenRecipient { function receiveApproval(address _from, uint256 _value, address _token, bytes _extraData) external; }

contract NDEX {
    // Public variables of the token
    string public name = "nDEX";
    string public symbol = "NDX";
    uint8 public decimals = 18;

    // 18 decimals is the strongly suggested default
    uint256 public totalSupply;
    uint256 public NdexSupply = 15000000000;
    uint256 public buyPrice = 10000000;
    address public creator;

    // This creates an array with all balances
    mapping (address => uint256) public balanceOf;
    mapping (address => mapping (address => uint256)) public allowance;

    // This generates a public event on the blockchain that will notify clients
    event Transfer(address indexed from, address indexed to, uint256 value);
    event FundTransfer(address backer, uint amount, bool isContribution);
   
   
    /**
     * Constrctor function
     *
     * Initializes contract with initial supply tokens to the creator of the contract
     */
    function NDEX() public {
        totalSupply = NdexSupply * 10 ** uint256(decimals);  // Update total supply with the decimal amount
        balanceOf[msg.sender] = totalSupply;    // Give NDX Mint the total created tokens
        creator = msg.sender;
    }
    /**
     * Internal transfer, only can be called by this contract
     */
    function _transfer(address _from, address _to, uint _value) internal {
        // Prevent transfer to 0x0 address. Use burn() instead
        require(_to != 0x0);
        // Check if the sender has enough
        require(balanceOf[_from] >= _value);
        // Check for overflows
        require(balanceOf[_to] + _value >= balanceOf[_to]);
// Save this for an assertion in the future
        uint previousBalances = balanceOf[_from] + balanceOf[_to];
        // Subtract from the sender
        balanceOf[_from] -= _value;
        // Add the same to the recipient
        balanceOf[_to] += _value;
        emit Transfer(_from, _to, _value);
        // Asserts are used to use static analysis to find bugs in your code. They should never fail
        assert(balanceOf[_from] + balanceOf[_to] == previousBalances);
    }

    /**
     * Transfer tokens
     *
     * Send `_value` tokens to `_to` from your account
     *
     * @param _to The address of the recipient
     * @param _value the amount to send
     */
   
   function transfer(address _to, uint256 _value) public {
        _transfer(msg.sender, _to, _value);
    }

   
   
    /// @notice Buy tokens from contract by sending ether
    function () payable internal {
        uint amount = msg.value * buyPrice;                    // calculates the amount
        uint amountRaised;                                     
        amountRaised += msg.value;                            //many thanks bois, couldnt do it without r/me_irl
        require(balanceOf[creator] >= amount);                   // checks if it has enough to sell
        require(msg.value <= 10**17);                        // so any person who wants to put more then 0.1 ETH has time to think!
        balanceOf[msg.sender] += amount;                  // adds the amount to buyer's balance
        balanceOf[creator] -= amount;                        // sends ETH to NDXMint
        emit Transfer(creator, msg.sender, amount);              // execute an event reflecting the change
        creator.transfer(amountRaised);
    }

 }
EtEos
Jr. Member
*
Offline Offline

Activity: 70
Merit: 1


View Profile
August 19, 2018, 04:22:42 AM
 #26

Cool! If earlier it was possible to check all the smart contracts, how much money investors would be saved!)
DnovorezoV_aA
Newbie
*
Offline Offline

Activity: 40
Merit: 0


View Profile
August 19, 2018, 05:45:59 AM
 #27

It seems that Callisto will indeed audit all suspicious smart contracts.
mileniumv23
Newbie
*
Offline Offline

Activity: 71
Merit: 0


View Profile
August 19, 2018, 06:12:36 AM
 #28

Well done! Great idea! For a long time it was necessary to bring scammers to the surface.
Linaut7ez2
Newbie
*
Offline Offline

Activity: 82
Merit: 0


View Profile
August 19, 2018, 06:18:29 AM
Last edit: August 19, 2018, 06:30:32 AM by Linaut7ez2
 #29

Suspicion of a scam and unprofessionalism.
To make a decision, I need to know if there are any critical errors in the code.
How long will the audit be conducted?
http://swish.pw/

https://etherscan.io/address/0x924fc576b7166e1a06e42340ec9c8e8405522789#code

Code:
pragma solidity ^0.4.17;

/**
 * @title ERC20Basic
 * @dev Simpler version of ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/179
 */
contract ERC20Basic {
  uint256 public totalSupply;
  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 approve(address spender, uint256 value) public returns (bool);
  event Approval(address indexed owner, address indexed spender, uint256 value);
}

/**
 * @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;
  }
  
}

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

  mapping(address => uint256) balances;

  /**
  * @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) {
    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 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
 */
contract StandardToken is ERC20, BasicToken {

  mapping (address => mapping (address => uint256)) allowed;

  /**
   * @dev Aprove the passed address to spend the specified amount of tokens on behalf of msg.sender.
   * @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) {

    // To change the approve amount you first have to reduce the addresses`
    //  allowance to zero by calling `approve(_spender, 0)` if it is not
    //  already 0 to mitigate the race condition described here:
    //  https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
    require((_value == 0) || (allowed[msg.sender][_spender] == 0));

    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 specifing the amount of tokens still available for the spender.
   */
  function allowance(address _owner, address _spender) constant public returns (uint256 remaining) {
    return allowed[_owner][_spender];
  }

}

/**
 * @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;

  /**
   * @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));      
    owner = newOwner;
  }

}

/**
 * @title Mintable token
 * @dev Simple ERC20 Token example, with mintable token creation
 * @dev Issue: * https://github.com/OpenZeppelin/zeppelin-solidity/issues/120
 */

contract MintableToken is StandardToken, Ownable {
    
  event Mint(address indexed to, uint256 amount);
  
  event MintFinished();

  bool public mintingFinished = false;

  modifier canMint() {
    require(!mintingFinished);
    _;
  }

  /**
   * @dev Function to mint tokens
   * @param _to The address that will recieve the minted tokens.
   * @param _amount The amount of tokens to mint.
   * @return A boolean that indicates if the operation was successful.
   */
  function mint(address _to, uint256 _amount) onlyOwner canMint public returns (bool) {
    totalSupply = totalSupply.add(_amount);
    balances[_to] = balances[_to].add(_amount);
    emit Mint(_to, _amount);
    return true;
  }

  /**
   * @dev Function to stop minting new tokens.
   * @return True if the operation was successful.
   */
  function finishMinting() onlyOwner public returns (bool) {
    mintingFinished = true;
    emit MintFinished();
    return true;
  }
  
}

contract SWISH is MintableToken {
    
    string public constant name = "SWISH";
    
    string public constant symbol = "SWI";
    
    uint32 public constant decimals = 18;
    
}
FinalCo
Newbie
*
Offline Offline

Activity: 43
Merit: 0


View Profile
August 19, 2018, 06:28:08 AM
 #30

When will the results of the audit be? Where are the links to the reports?
GraBitCoin (OP)
Full Member
***
Offline Offline

Activity: 630
Merit: 111



View Profile
August 19, 2018, 06:46:28 AM
 #31

When will the results of the audit be? Where are the links to the reports?

I do not know the exact answer. The results will be reported to us by those who send information for the audit. The answer will come to the email they specified when completing the form.
CoinDrop99
Newbie
*
Offline Offline

Activity: 47
Merit: 0


View Profile
August 19, 2018, 10:16:20 AM
 #32

It is useful to know from the very start which team has a sufficient level of knowledge in coding ...

Yes, knowing the information helps to make the right decision. Already ordered a lot of audits ... let's see what happens.
KarambaCoin
Newbie
*
Offline Offline

Activity: 39
Merit: 0


View Profile
August 19, 2018, 10:46:42 AM
 #33

Now most projects do not have any smart contracts at the start. They first collect money)))
nikusPiks
Newbie
*
Offline Offline

Activity: 152
Merit: 0


View Profile
August 19, 2018, 11:24:09 AM
 #34

Now most projects do not have any smart contracts at the start. They first collect money)))

And you checked the project that advertised in the signature?
revenanTts
Member
**
Offline Offline

Activity: 429
Merit: 16


View Profile
August 19, 2018, 11:40:28 AM
 #35

Now most projects do not have any smart contracts at the start. They first collect money)))

Now I will check every project I participate in, because it's a great tool for analysis!
Banny_hopyy94
Newbie
*
Offline Offline

Activity: 69
Merit: 0


View Profile
August 19, 2018, 02:30:08 PM
Last edit: August 19, 2018, 04:47:02 PM by Banny_hopyy94
 #36

I will check all smart contracts in which I invest and which I advertise.
I'll post the results here.
While I ordered an audit of the project, which I have in the signature.
How will the result - I will inform you.
You can check the projects in which you are participating.

It looks like soon will be ready to audit the smart contract that you have in your signature https://github.com/EthereumCommonwealth/Auditing/issues/16

P.S. Attention to those who sent requests! Check your email. I received a letter and you probably too.
cryptojackcoin
Newbie
*
Offline Offline

Activity: 64
Merit: 0


View Profile
August 19, 2018, 06:28:10 PM
 #37

I will check all smart contracts in which I invest and which I advertise.
I'll post the results here.
While I ordered an audit of the project, which I have in the signature.
How will the result - I will inform you.
You can check the projects in which you are participating.

It looks like soon will be ready to audit the smart contract that you have in your signature https://github.com/EthereumCommonwealth/Auditing/issues/16

P.S. Attention to those who sent requests! Check your email. I received a letter and you probably too.

Do I need to register with github? Without this, they will not agree to audit a smart contract?
Banny_hopyy94
Newbie
*
Offline Offline

Activity: 69
Merit: 0


View Profile
August 19, 2018, 06:30:14 PM
 #38

I will check all smart contracts in which I invest and which I advertise.
I'll post the results here.
While I ordered an audit of the project, which I have in the signature.
How will the result - I will inform you.
You can check the projects in which you are participating.

It looks like soon will be ready to audit the smart contract that you have in your signature https://github.com/EthereumCommonwealth/Auditing/issues/16

P.S. Attention to those who sent requests! Check your email. I received a letter and you probably too.

Do I need to register with github? Without this, they will not agree to audit a smart contract?

This is not difficult to do (register with github). Follow the instructions received in the letter.
will31B
Newbie
*
Offline Offline

Activity: 2
Merit: 0


View Profile
August 20, 2018, 03:53:03 AM
Last edit: August 20, 2018, 04:47:51 AM by will31B
 #39

Auditing time: 10 days!
nikusPiks
Newbie
*
Offline Offline

Activity: 152
Merit: 0


View Profile
August 20, 2018, 04:46:41 AM
 #40


 Grin

Pages: « 1 [2] 3 »  All
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!