Bitcoin Forum
May 10, 2024, 09:44:58 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: [ANN] [ICO] G5 | Maximum 5% risk, potentially infinite upside! NO ESCAPE HATCH  (Read 783 times)
tripperman64 (OP)
Newbie
*
Offline Offline

Activity: 10
Merit: 0


View Profile
August 25, 2017, 07:35:04 AM
Last edit: August 25, 2017, 08:54:26 AM by tripperman64
 #1

Check it out @ https://etherscan.io/address/0x95cc9c7bf003d948dea3a5a95116f7fd9ca43778#code

http://www.lg.com/us/images/cell-phones/md05600557/gallery/G5-medium01.jpg

G5 <-- A token you can cash in for wealth.

Send money to buy, call "sell" to sell. Buy at ceiling price, sell at floor price.

floor and ceiling price goes up every 10 blocks.

Remember, maximum 5% risk, always sell for 95% of what you paid minimum but maybe much much more.

Get in early, get rich! Get in late you max lose 5%!
The forum was founded in 2009 by Satoshi and Sirius. It replaced a SourceForge forum.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1715334298
Hero Member
*
Offline Offline

Posts: 1715334298

View Profile Personal Message (Offline)

Ignore
1715334298
Reply with quote  #2

1715334298
Report to moderator
1715334298
Hero Member
*
Offline Offline

Posts: 1715334298

View Profile Personal Message (Offline)

Ignore
1715334298
Reply with quote  #2

1715334298
Report to moderator
1715334298
Hero Member
*
Offline Offline

Posts: 1715334298

View Profile Personal Message (Offline)

Ignore
1715334298
Reply with quote  #2

1715334298
Report to moderator
tripperman64 (OP)
Newbie
*
Offline Offline

Activity: 10
Merit: 0


View Profile
August 25, 2017, 07:41:29 AM
 #2

The code is law and will protect all investors. I receive no cut and have no control!

Super easy to get in, just send ETH to 0x95CC9C7bf003D948dea3a5a95116f7FD9ca43778 and you get G5, an ERC20 Token

Remember, always buy in with a wallet that supports ERC20!

See who has G5 token here! https://etherscan.io/token/0x95CC9C7bf003D948dea3a5a95116f7FD9ca43778#balances
Anz563
Jr. Member
*
Offline Offline

Activity: 170
Merit: 1


View Profile
August 25, 2017, 07:46:58 AM
 #3

Where is the proof that is not a scam?
tripperman64 (OP)
Newbie
*
Offline Offline

Activity: 10
Merit: 0


View Profile
August 25, 2017, 07:49:29 AM
 #4

Bro read the code. https://etherscan.io/address/0x95cc9c7bf003d948dea3a5a95116f7fd9ca43778#code

See buy function on line 217 and sell function on line 233. Do you know Solidity?

It's not a scam. I have no control after G5 is released into the world.

Get in early you can be so rich. Get in later you max lose 5% not so bad. I got in early with 1 ether.

All code above line 176 is from https://github.com/OpenZeppelin/zeppelin-solidity

Other code is:

Quote
/**
 * @title G5
 *
 * @dev Great token to buy.
 * @dev Maximum 5% risk, potentially infinite upside!
 */
 
contract G5 is StandardToken {
    uint256 public ceiling;
    uint256 public floor;
    uint256 public lastUpdate;
   
    string public name = "G5";
    string public symbol = "G5";
    uint8 public decimals = 8;

    function updateCeiling() private {
        // ceiling is always 5% above the value of the floor
        ceiling = floor*21/20;
    }
   
    function maybeUpdate() {
        // set floor and ceiling if it's been at least 10 blocks since last update
        if (block.number >= lastUpdate+10) {
            floor = this.balance / totalSupply;
            updateCeiling();
            lastUpdate = block.number;
        }
    }
   
    function G5() {
        // 9523 tokens per ETH to start
        floor = 1 ether / 10000 / 1e8;
        updateCeiling();
        lastUpdate = block.number;
    }
   
    function() payable {
        buy();
    }
   
    function buy() payable {
        require (msg.value > 0);
       
        // buy at the ceiling
        uint256 _amount = msg.value / ceiling;

        // mint token           
        totalSupply = totalSupply.add(_amount);
        balances[msg.sender] = balances[msg.sender].add(_amount);
        Mint(msg.sender, _amount);
        Transfer(0x0, msg.sender, _amount);
       
        // might update the floor and ceiling
        maybeUpdate();
    }
   
    function sell(uint _value) {
        require(_value > 0);
        require(_value <= balances[msg.sender]);
       
        // might update the floor and ceiling
        maybeUpdate();
       
        balances[msg.sender] = balances[msg.sender].sub(_value);
        totalSupply = totalSupply.sub(_value);
        Burn(msg.sender, _value);
       
        // sell at the floor
        msg.sender.transfer(_value * floor);
    }

    event Mint(address indexed to, uint256 amount);
    event Burn(address indexed burner, uint indexed value);
}
tripperman64 (OP)
Newbie
*
Offline Offline

Activity: 10
Merit: 0


View Profile
August 25, 2017, 08:21:45 AM
Last edit: August 25, 2017, 08:52:56 AM by tripperman64
 #5

Now Trading on EtherDelta if you add G5!

https://etherdelta.github.io/#0x95cc9c7bf003d948dea3a5a95116f7fd9ca43778-ETH
Pages: [1]
  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!