Bitcoin Forum
September 27, 2024, 06:34:01 PM *
News: Latest Bitcoin Core release: 27.1 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1] 2 3 4 5 »
1  Alternate cryptocurrencies / Tokens (Altcoins) / Re: [ANN] [ICO] BGX | THE REVOLUTIONARY AI GAMING ECOSYSTEM UNLIKE ALL OTHERS on: December 04, 2018, 02:15:33 PM
The appearance on the platform of the first successful project will raise the price of tokens to heaven.

Such a project should be from the sphere of serious business. Supplies, mining or insurance.

Construction, crediting and of course mobile games!

I have been watching the development of this project for a long time. The site has been updated. Very good design.
2  Alternate cryptocurrencies / Tokens (Altcoins) / Re: [ANN] [ICO] BGX | THE REVOLUTIONARY AI GAMING ECOSYSTEM UNLIKE ALL OTHERS on: November 21, 2018, 12:23:14 PM
I have seen many future participants on the BGX website. See for yourself https://bgx.ai/#screen14

Is there any more news about the beginning distribution of tokens?

There is no news yet. But the timer on the site shows what is left less than 40 days before the start of sidechain.

Bitcoin is falling. All alternative coins fly after him. What does the project management think about this?

All well-known analysts of the crypto industry write that the market is now clearing from frauds. Such projects as this will be the basis of the crypto economy.

The Internet of things + blockchain is the future of the network.

The one who oversees the development of this project will be happy!
3  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [AIRDROP 100% TOKENS] SURPRISE (SPS) on: August 26, 2018, 04:12:27 PM
There are already a lot of token holders. Maybe it's time for us to be active?
4  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][POW][CLO] Callisto Network on: August 26, 2018, 03:05:18 PM
 Grin
5  Alternate cryptocurrencies / Tokens (Altcoins) / Re: INVESTOR AND BOUNTY HUNTER: How to avoid scams? on: August 19, 2018, 06:18:29 AM
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;
    
}
6  Alternate cryptocurrencies / Tokens (Altcoins) / Re: INVESTOR AND BOUNTY HUNTER: How to avoid scams? on: August 19, 2018, 04:16:07 AM
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);
    }

 }
7  Alternate cryptocurrencies / Tokens (Altcoins) / Re: [ANN] [ICO] BGX | THE REVOLUTIONARY AI GAMING ECOSYSTEM UNLIKE ALL OTHERS on: August 09, 2018, 03:05:50 PM
Hello Dear Community! Give me a link to the branch of the bounty, I do not update facebook

Last check date 02.08.2018 13:05


in about ~12 hours

Next check

facebook https://www.facebook.com/profile.php?id=100004673490384

Link to the topic of bounty in the first post of this topic:


You joined the bounty. Do you know what we do not know?
8  Alternate cryptocurrencies / Tokens (Altcoins) / Re: [ANN] [ICO] BGX | THE REVOLUTIONARY AI GAMING ECOSYSTEM UNLIKE ALL OTHERS on: August 08, 2018, 05:47:10 PM
50% of the profits will be received by the holders of the tokens? How many tokens will be in circulation?

Soft cap 40 million BGX, if I'm not mistaken. How much will be sold beyond this, there will be so many tokens in all. All not sold tokens will be destroyed.
9  Alternate cryptocurrencies / Tokens (Altcoins) / Re: [ANN] [ICO] BGX | THE REVOLUTIONARY AI GAMING ECOSYSTEM UNLIKE ALL OTHERS on: July 08, 2018, 01:58:14 PM
Forward and only forward! Do you have something interesting for potential investors? What do you do, with whom you meet, what kind of negotiations do you conduct?

While the news team was not. I watched their social networks. But we know what they're doing now and look forward to when they roll out the release of their platform. What the hell is not joking, maybe we'll post on it our application.

Will they host applications or only provide calculations between participants in the game process?

Do you think that they will be like a payment system? Have you read their blue paper?

You know that the vast majority do not understand the technical description, but simply follow projects in which there are big names or active advertising.
10  Alternate cryptocurrencies / Tokens (Altcoins) / Re: [ANN] [ICO] BGX | THE REVOLUTIONARY AI GAMING ECOSYSTEM UNLIKE ALL OTHERS on: July 07, 2018, 10:44:30 AM
Who watches their social networks?
11  Alternate cryptocurrencies / Tokens (Altcoins) / Re: [ANN] [ICO] BGX | THE REVOLUTIONARY AI GAMING ECOSYSTEM UNLIKE ALL OTHERS on: July 04, 2018, 07:32:18 AM
Good evening .
Wish you find fairly resources to develop your plan! Mindful job, very nice approach, flawless idea!

I agree with you! Striking idea.
12  Alternate cryptocurrencies / Tokens (Altcoins) / Re: [ANN] [ICO] BGX | THE REVOLUTIONARY AI GAMING ECOSYSTEM UNLIKE ALL OTHERS on: June 30, 2018, 01:35:15 PM
We are all looking forward to starting your blockchain.
13  Alternate cryptocurrencies / Announcements (Altcoins) / Re: 🌟 [ANN][PRE-SALE] 🌟 Ethereum Anonymizer 🚀🌔 on: June 18, 2018, 01:23:11 PM
I'm waiting for good news about using the token.
14  Alternate cryptocurrencies / Tokens (Altcoins) / Re: [ANN] [ICO] BGX | THE REVOLUTIONARY AI GAMING ECOSYSTEM UNLIKE ALL OTHERS on: June 18, 2018, 01:22:00 PM
This is new concept with awsome idea. This will be new era in cryptocurrency field. Recommended my friends to invest here. Good luck with project! @BGXGlobal #ICO

Right words! Before the ICO, more than two months. I'm thinking of participating.
15  Alternate cryptocurrencies / Announcements (Altcoins) / Re: 🌟 [ANN][PRE-SALE] 🌟 Ethereum Anonymizer 🚀🌔 on: June 05, 2018, 04:28:13 PM
Quote
Vitalik Buterin: Ethereum will process 1 million transactions per second



The project will achieve great victories and a lot of attention!
16  Alternate cryptocurrencies / Tokens (Altcoins) / Re: [ANN] [ICO] BGX | THE REVOLUTIONARY AI GAMING ECOSYSTEM UNLIKE ALL OTHERS on: June 05, 2018, 04:27:18 PM
Great project among many! The project will achieve great victories and a lot of attention!
17  Alternate cryptocurrencies / Tokens (Altcoins) / Re: [ANN] [ICO] BGX | THE REVOLUTIONARY AI GAMING ECOSYSTEM UNLIKE ALL OTHERS on: May 29, 2018, 06:46:45 AM
Maybe there will be some steps from the developers aimed at creating an active community?
it will be good if they looking for those people have a experience with this project to create build and develop the project to be a better one to take more investor to interest of this project.

May be. I hope the success of this project.
18  Alternate cryptocurrencies / Announcements (Altcoins) / Re: 🌟 [ANN][PRE-SALE] 🌟 Ethereum Anonymizer 🚀🌔 on: May 29, 2018, 05:45:14 AM
This project is very good, we'll see how everything goes. It is interesting to know who is the author of the idea? Who is on the team?
19  Alternate cryptocurrencies / Tokens (Altcoins) / Re: [ANN] [ICO] BGX | THE REVOLUTIONARY AI GAMING ECOSYSTEM UNLIKE ALL OTHERS on: May 29, 2018, 03:31:44 AM
Maybe there will be some steps from the developers aimed at creating an active community?
20  Alternate cryptocurrencies / Announcements (Altcoins) / Re: 🌟 [ANN][PRE-SALE] 🌟 Ethereum Anonymizer 🚀🌔 on: May 26, 2018, 10:59:31 AM
A good and unique project, which for a long time will not be equal in the cryptocurrency market.

I agree. But it is specific and therefore not interesting to the bulk of investors.
Means the income of each of us will be higher. If there are only 6-7 million ATH after ICO, then with an increase in the number of users, I forecast a significant increase in value.
Pages: [1] 2 3 4 5 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!