Bitcoin Forum

Alternate cryptocurrencies => Announcements (Altcoins) => Topic started by: noxon on June 05, 2016, 09:09:20 AM



Title: [ANN][ETH] NoxonFund.com - prices never go down. 50% reserve. Referral 3-2-1%
Post by: noxon on June 05, 2016, 09:09:20 AM
https://noxonfund.com/sex3.jpg

Visit WEB site: http://noxonfund.com for see the chart;

Now we working on two directions:

Project #1:

1. We are looking for any real internet business with confirmed realtime revenue statistic.
2. Contact with owner and buy 10-30% of his business (A-round).
3. Designing Ethereum Smart Contract as a shareholder agreements and announcing token emission to own private stock exchange (B-round).
4. Announcing to other stock exchanges around the world (C-round).

Project#2 Finance site builder:

Finance platform for create sites for financial companies. This theme will be inluded 10+ spetial presets for build finance site: Crowdfunding, Loans, Lawyers, Escrow, Finance advisor, Consultant, Blockchain project and more...

Earning
All revenues of our organization will be returned to RESERVE FUND. Anybody can sell SHAREs instantly (using “sell” function ). SELL price = RESERVE FUND/Total supply

In SmartContract this simple code setting prices:

Code:
function setPrices() {
        ownbalance = this.balance; //own contract balance
        sellPrice = ownbalance/totalSupply;
        buyPrice = sellPrice*2;
    }

How to buy shares? (check last price on noxonfund.com)

1. Send ETH to 0x3F2D17ed39876c0864d321D8a533ba8080273EdE (check on https://etherscan.io/ before!)
2. Check your SHARE balance using form on top of the page: noxonfund.com

How to sell shares?
1. Go to mist wallet > Contracts > Watch contract
2. Insert to name:"noxonfund.com" , contract adress "0x3F2D17ed39876c0864d321D8a533ba8080273EdE" and interface http://pastebin.com/nQLeK5Pm
3. Contracts > noxonfund.com > Select function > Sell > Enter amount of SHARE to sell



Ethereum smart contract code

Code:
contract NoxonFund {

    address public owner;
    string public name;
    string public symbol;
    uint8 public decimals;
    uint256 public totalSupply; //18160ddd for rpc call https://api.etherscan.io/api?module=proxy&data=0x18160ddd&to=0xContractAdress&apikey={eserscan api}&action=eth_call
    uint256 public Entropy;
    uint256 public ownbalance; //d9c7041b

uint256 public sellPrice; //4b750334
    uint256 public buyPrice; //8620410b
    
    /* This creates an array with all balances */
    mapping (address => uint256) public balanceOf;

    /* This generates a public event on the blockchain that will notify clients */
    event Transfer(address indexed from, address indexed to, uint256 value);
    
    
    
    /* Initializes cont ract with initial supply tokens to the creator of the contract */
    function token()  {
    
        if (owner!=0) throw;
        buyPrice = msg.value;
        balanceOf[msg.sender] = 1;    // Give the creator all initial tokens
        totalSupply = 1;              // Update total supply
        Entropy = 1;
        name = 'noxonfund.com';       // Set the name for display purposes
        symbol = '🌀 SHARE';             // Set the symbol for display purposes
        decimals = 0;                 // Amount of decimals for display purposes
        owner = msg.sender;
        setPrices();
    }
    

    
     /* Send shares function */
    function transfer(address _to, uint256 _value) {
        if (balanceOf[msg.sender] < _value) throw;           // Check if the sender has enough
        if (balanceOf[_to] + _value < balanceOf[_to]) throw; // Check for overflows
        balanceOf[msg.sender] -= _value;    
        balanceOf[_to] += _value;                            // Add the same to the recipient
        Transfer(msg.sender, _to, _value);                   // Notify anyone listening that this transfer took place
    }


    function setPrices() {
        ownbalance = this.balance; //own contract balance
        sellPrice = ownbalance/totalSupply;
        buyPrice = sellPrice*2;
    }
    
    
   function () returns (uint buyreturn) {
      
        uint256 amount = msg.value / buyPrice;                // calculates the amount
        balanceOf[msg.sender] += amount;                   // adds the amount to buyer's balance
      
        totalSupply += amount;
        Entropy += amount;
        
        Transfer(0, msg.sender, amount);
        
        owner.send(msg.value/2);
        //set next price
        setPrices();
        return buyPrice;
   }
  

    
    function sell(uint256 amount) {
        setPrices();
        if (balanceOf[msg.sender] < amount ) throw;        // checks if the sender has enough to sell
        Transfer(msg.sender, this, amount);                 //return shares to contract
        totalSupply -= amount;
        balanceOf[msg.sender] -= amount;                   // subtracts the amount from seller's balance
        msg.sender.send(amount * sellPrice);               // sends ether to the seller
        setPrices();

    }

//All incomse will send using newIncome method
event newincomelog(uint amount,string description);
function newIncome(
        string JobDescription
    )
        returns (string result)
    {
        if (msg.value <= 1 ether/100) throw;
        newincomelog(msg.value,JobDescription);
        return JobDescription;
    }
    
    
    
    //some democracy
    
    uint votecount;
    uint voteno;
    uint voteyes;
    
    mapping (address => uint256) public voters;
    
    function newProposal(
        string JobDescription
    )
        returns (string result)
    {
        if (msg.sender == owner) {
            votecount = 0;
            newProposallog(JobDescription);
            return "ok";
        } else {
            return "Only admin can do this";
        }
    }
    

    
    
    function ivote(bool myposition) returns (uint result) {
        votecount += balanceOf[msg.sender];
        
        if (voters[msg.sender]>0) throw;
        voters[msg.sender]++;
        votelog(myposition,msg.sender,balanceOf[msg.sender]);
        return votecount;
    }

    
    event newProposallog(string description);
    event votelog(bool position, address voter, uint sharesonhand);
  
    
}



Title: Re: [ANN][ETH] NoxonFund.com - prices never go down. 50% reserve. Referral 3-2-1%
Post by: kahir on June 05, 2016, 09:20:02 AM
https://noxonfund.com/sex3.jpg

Visit WEB site: http://noxonfund.com for see the chart;

Now we working on two directions:

Project #1:

1. We are looking for any real internet business with confirmed realtime revenue statistic.
2. Contact with owner and buy 10-30% of his business (A-round).
3. Designing Ethereum Smart Contract as a shareholder agreements and announcing token emission to own private stock exchange (B-round).
4. Announcing to other stock exchanges around the world (C-round).

Project#2 Finance site builder:

Finance platform for create sites for financial companies. This theme will be inluded 10+ spetial presets for build finance site: Crowdfunding, Loans, Lawyers, Escrow, Finance advisor, Consultant, Blockchain project and more...

Earning
All revenues of our organization will be returned to RESERVE FUND. Anybody can sell SHAREs instantly (using “sell” function ). SELL price = RESERVE FUND/Total supply

In SmartContract this simple code setting prices:

Code:
function setPrices() {
        ownbalance = this.balance; //own contract balance
        sellPrice = ownbalance/totalSupply;
        buyPrice = sellPrice*2;
    }

How to buy shares? (check last price on noxonfund.com)

1. Send ETH to 0x3F2D17ed39876c0864d321D8a533ba8080273EdE (check on https://etherscan.io/ before!)
2. Check your SHARE balance using form on top of the page: noxonfund.com

How to sell shares?
1. Go to mist wallet > Contracts > Watch contract
2. Insert to name:"noxonfund.com" , contract adress "0x3F2D17ed39876c0864d321D8a533ba8080273EdE" and interface http://pastebin.com/nQLeK5Pm
3. Contracts > noxonfund.com > Select function > Sell > Enter amount of SHARE to sell



Ethereum smart contract code

Code:
contract NoxonFund {

    address public owner;
    string public name;
    string public symbol;
    uint8 public decimals;
    uint256 public totalSupply; //18160ddd for rpc call https://api.etherscan.io/api?module=proxy&data=0x18160ddd&to=0xContractAdress&apikey={eserscan api}&action=eth_call
    uint256 public Entropy;
    uint256 public ownbalance; //d9c7041b

uint256 public sellPrice; //4b750334
    uint256 public buyPrice; //8620410b
   
    /* This creates an array with all balances */
    mapping (address => uint256) public balanceOf;

    /* This generates a public event on the blockchain that will notify clients */
    event Transfer(address indexed from, address indexed to, uint256 value);
   
   
   
    /* Initializes cont ract with initial supply tokens to the creator of the contract */
    function token()  {
   
        if (owner!=0) throw;
        buyPrice = msg.value;
        balanceOf[msg.sender] = 1;    // Give the creator all initial tokens
        totalSupply = 1;              // Update total supply
        Entropy = 1;
        name = 'noxonfund.com';       // Set the name for display purposes
        symbol = '🌀 SHARE';             // Set the symbol for display purposes
        decimals = 0;                 // Amount of decimals for display purposes
        owner = msg.sender;
        setPrices();
    }
   

   
     /* Send shares function */
    function transfer(address _to, uint256 _value) {
        if (balanceOf[msg.sender] < _value) throw;           // Check if the sender has enough
        if (balanceOf[_to] + _value < balanceOf[_to]) throw; // Check for overflows
        balanceOf[msg.sender] -= _value;   
        balanceOf[_to] += _value;                            // Add the same to the recipient
        Transfer(msg.sender, _to, _value);                   // Notify anyone listening that this transfer took place
    }


    function setPrices() {
        ownbalance = this.balance; //own contract balance
        sellPrice = ownbalance/totalSupply;
        buyPrice = sellPrice*2;
    }
   
   
   function () returns (uint buyreturn) {
       
        uint256 amount = msg.value / buyPrice;                // calculates the amount
        balanceOf[msg.sender] += amount;                   // adds the amount to buyer's balance
       
        totalSupply += amount;
        Entropy += amount;
       
        Transfer(0, msg.sender, amount);
       
        owner.send(msg.value/2);
        //set next price
        setPrices();
        return buyPrice;
   }
   

   
    function sell(uint256 amount) {
        setPrices();
        if (balanceOf[msg.sender] < amount ) throw;        // checks if the sender has enough to sell
        Transfer(msg.sender, this, amount);                 //return shares to contract
        totalSupply -= amount;
        balanceOf[msg.sender] -= amount;                   // subtracts the amount from seller's balance
        msg.sender.send(amount * sellPrice);               // sends ether to the seller
        setPrices();

    }

//All incomse will send using newIncome method
event newincomelog(uint amount,string description);
function newIncome(
        string JobDescription
    )
        returns (string result)
    {
        if (msg.value <= 1 ether/100) throw;
        newincomelog(msg.value,JobDescription);
        return JobDescription;
    }
   
   
   
    //some democracy
   
    uint votecount;
    uint voteno;
    uint voteyes;
   
    mapping (address => uint256) public voters;
   
    function newProposal(
        string JobDescription
    )
        returns (string result)
    {
        if (msg.sender == owner) {
            votecount = 0;
            newProposallog(JobDescription);
            return "ok";
        } else {
            return "Only admin can do this";
        }
    }
   

   
   
    function ivote(bool myposition) returns (uint result) {
        votecount += balanceOf[msg.sender];
       
        if (voters[msg.sender]>0) throw;
        voters[msg.sender]++;
        votelog(myposition,msg.sender,balanceOf[msg.sender]);
        return votecount;
    }

   
    event newProposallog(string description);
    event votelog(bool position, address voter, uint sharesonhand);
   
   
}


All on beta!! Send small amounts!



Title: Re: [ANN][ETH] NoxonFund.com - prices never go down. 50% reserve. Referral 3-2-1%
Post by: kamvreto on June 05, 2016, 09:26:39 AM
reserved


Title: Re: [ANN][ETH] NoxonFund.com - prices never go down. 50% reserve. Referral 3-2-1%
Post by: Golftech on June 05, 2016, 09:38:29 AM
very interesting offer so I'll keep this from my watchlist better need to have a lots of btc to buy eth and start investing, thank you for sharing this mate good luck to your business.


Title: Re: [ANN][ETH] NoxonFund.com - prices never go down. 50% reserve. Referral 3-2-1%
Post by: lestherat on June 06, 2016, 02:09:24 AM
Well, interesting, but DAO already toke all the ETH from weakhands, and now all of them are regret.

After reading all, is a little complicated for average user.

Anyway i wish you Good Luck, man.  :)


Title: Re: [ANN][ETH] NoxonFund.com - prices never go down. 50% reserve. Referral 3-2-1%
Post by: camimbo on June 06, 2016, 02:33:32 AM
Good luck on your project.


Title: Re: [ANN][ETH] NoxonFund.com - prices never go down. 50% reserve. Referral 3-2-1%
Post by: golfhuso on June 06, 2016, 02:44:35 AM
Im confused. So basically I buy the share and wait to sell it back to Noxon?
This mean there will be no other exchange because Noxon want to completely control the price?
If so it kindda sound like a pyramid ???


Title: Re: [ANN][ETH] NoxonFund.com - prices never go down. 50% reserve. Referral 3-2-1%
Post by: rajeshgarnaik on June 06, 2016, 06:29:09 AM
i think they will have some exchange. even i am confused.


Title: Re: [ANN][ETH] NoxonFund.com - prices never go down. 50% reserve. Referral 3-2-1%
Post by: noxon on June 06, 2016, 01:27:14 PM
Im confused. So basically I buy the share and wait to sell it back to Noxon?
This mean there will be no other exchange because Noxon want to completely control the price?
If so it kindda sound like a pyramid ???


We investing in real business and get revenue back to reserve fund even if no one buys shares.

Quote
i think they will have some exchange. even i am confused.

I want add to poloniex. Do you know how to do this? ::)

---

News! We have 1st candidat for connection. This is digital product: http://themeforest.net/item/silvana-creative-agency-wordpress-theme/15668602

Look at this:
http://dl2.joxi.net/drive/2016/06/06/0004/2038/272374/74/c1995fa889.jpg

This is open realtime statistic! Based "sales count" parameters we can calculate the real revenue of autor (in $USD). 8$ from each sale can be send to noxonfund.com, but now not, because noxonfund.com no have money for buy this business - i have only 6$ in my hands (and 6$ in the reserve fund, but can not spend).

Anyway i am coded this feature: 0.001 ETH will be sended to our RESERVE FUND every time when someone buys silvana.

All this you can see at the chart:
http://dl2.joxi.net/drive/2016/06/06/0004/2038/272374/74/0a7ae51a3b.jpg

Of course when the reserve fund refilled SELL price grow up too, this is coded in smartcontract:

Code:
function setPrices() {
        ownbalance = this.balance; //own contract balance
        sellPrice = ownbalance/totalSupply;
        buyPrice = sellPrice*2;
    }

 

This feature fully automated, but not hardcoded in contract (working on my server end).

Quote
very interesting offer so I'll keep this from my watchlist better need to have a lots of btc to buy eth and start investing, thank you for sharing this mate good luck to your business.

Quote
Well, interesting, but DAO already toke all the ETH from weakhands, and now all of them are regret.

After reading all, is a little complicated for average user.

Anyway i wish you Good Luck, man.

Quote
Good luck on your project.

thank you!


Title: Re: [ANN][ETH] NoxonFund.com - prices never go down. 50% reserve. Referral 3-2-1%
Post by: noxon on June 21, 2016, 07:59:57 PM
security check:

0. OK "The DAO (obviously)" https://medium.com/@oaeee/the-attack-story-38f4789b3c3b#.m7lxqvkaj

Our contract can't splitting, or execute another code. Ether from contract can be spent ONLY for buying SHAREs from users.  

1. OK "Loops and the Block Gas Limit" issue https://www.reddit.com/r/ethereum/comments/4ghzhv/governmentals_1100_eth_jackpot_payout_is_stuck/

Our contract does not use loop and while

2. warning  "send function can return throw" https://blog.ethereum.org/2016/06/10/smart-contract-security/ -

we use function "send" without checking returns. This is bug, but not critical. Do not sell SHAREs back to contract when Ethereum blockchain under DDOS attack. Or sell tokens directly to me (contact noxon.su in skype).

3. OK The “payout index without the underscore” ponzi (“FirePonzi”) https://www.reddit.com/r/ethereum/duplicates/4e5y30/live_example_of_underhanded_solidity_coding_on/

all variables in our contract named correctly

4. OK The casino with a public RNG seed http://martin.swende.se/blog/Breaking_the_house.html

We does not using randomizer

5.  OK 5800 ETH swiped (by whitehats) from an ETH-backed ERC20 token https://www.reddit.com/r/MakerDAO/comments/4niu10/critical_ether_token_wrapper_vulnerability_eth/

Our contract not marketplace, contract send SHAREs after got ETH (in fallback function) -

6.  warning   The King of the Ether game problem (2300 gas) http://www.kingoftheether.com/postmortem.html

6.1 If you use "sell" function with small gas limit - you will not get money back (all shareholders say "snx" to you :) ). Use recomended gas limit.

6.2 If you send ETH to buy SHAREs and provide small gas limit - you will not recive shares, but your money put on reserve fund  (all shareholders say "snx" to you :) ). Use recomended gas limit.

7. OK Rubixi : Fees stolen because the constructor function had an incorrect name, allowing anyone to become the owner.  https://etherscan.io/address/0xe82719202e5965Cf5D9B6673B7503a3b92DE20be#code

our contract already have owner, nobody can reassign.

8. OK Rock paper scissors trivially cheatable because the first to move shows their hand https://www.reddit.com/r/ethtrader/comments/4fpn6o/play_rockpaperscissors_for_1_eth_via_mist_wallet/

Our contract forvard only 50% to owner, all other put on reserve fund. Our contract verified on etherscan.

9. OK Other "Stack overflow" issues.

Any broken calls from users do not break the contract algorytm, all income ETH any way appear on balance (reserve fund)


---

Our Verified contract: https://etherscan.io/address/0x3F2D17ed39876c0864d321D8a533ba8080273EdE#code


Title: Re: [ANN][ETH] NoxonFund.com - prices never go down. 50% reserve. Referral 3-2-1%
Post by: fedmahnkassad on June 21, 2016, 08:14:01 PM
Is this some new kind of scam?


Title: Re: [ANN][ETH] NoxonFund.com - prices never go down. 50% reserve. Referral 3-2-1%
Post by: BTCdoaA on June 21, 2016, 08:31:02 PM
who will escrow the fund ? without escrowing services you will get less members willing to participate
Thanks


Title: Re: [ANN][ETH] NoxonFund.com - prices never go down. 50% reserve. Referral 3-2-1%
Post by: sesiah on June 22, 2016, 01:57:10 PM
who will escrow the fund ? without escrowing services you will get less members willing to participate
Thanks
ETH with issues, I am not sure if I can surely be in even without an escaw
Can't you offer btc instead of ETH?


Title: Re: [ANN][ETH] NoxonFund.com - prices never go down. 50% reserve. Referral 3-2-1%
Post by: Redacted- on June 22, 2016, 02:39:55 PM
So this is just another dao? Or is it something different?


Title: Re: [ANN][ETH] NoxonFund.com - prices never go down. 50% reserve. Referral 3-2-1%
Post by: noxon on November 01, 2016, 08:07:53 AM
Ethereum "Security Alert – Solidity – Variables can be overwritten in storage" https://blog.ethereum.org/2016/11/01/security-alert-solidity-variables-can-overwritten-storage/

[OK] Our contract use uint256 variables and not affected for this bug.


Title: Re: [ANN][ETH] NoxonFund.com - prices never go down. 50% reserve. Referral 3-2-1%
Post by: noxon on December 12, 2016, 08:18:31 AM
Hi all) this is private key 193d8cfa0b249236a2a58176dbb200b40def711aef88bab5543f59ee13b6e7af where stored 100 shares of noxonfund.com https://etherscan.io/tx/0x7d42bc6aa311189082eceb9f61b7b78ffc384f7c5ff2636f99baf485c3f17754

who will take this? :)


Title: Re: [ANN][ETH] NoxonFund.com - prices never go down. 50% reserve. Referral 3-2-1%
Post by: Ellen Alemany on December 12, 2016, 08:30:35 AM
https://i.imgflip.com/1ft30b.jpg (https://imgflip.com/i/1ft30b)via Imgflip Meme Generator (https://imgflip.com/memegenerator)


Title: Re: [ANN][ETH] NoxonFund.com - prices never go down. 50% reserve. Referral 3-2-1%
Post by: Raxitto on December 12, 2016, 08:32:32 AM
Keep away..... warning, to much bull shit in this thread....


Title: Re: [ANN][ETH] NoxonFund.com - prices never go down. 50% reserve. Referral 3-2-1%
Post by: xp.rie on March 02, 2017, 03:36:58 PM
Good luck on your ...
Warning!!!  ???


Title: Re: [ANN][ETH] NoxonFund.com - prices never go down. 50% reserve. Referral 3-2-1%
Post by: noxon on May 19, 2017, 12:47:29 AM
Hi all) this is private key 193d8cfa0b249236a2a58176dbb200b40def711aef88bab5543f59ee13b6e7af where stored 100 shares of noxonfund.com https://etherscan.io/tx/0x7d42bc6aa311189082eceb9f61b7b78ffc384f7c5ff2636f99baf485c3f17754

who will take this? :)

nobody:) i love internet. So "how to take free money" in this funny video

https://noxonfund.com/how_to_sell_nxp.webm (https://noxonfund.com/how_to_sell_nxp.webm)

Small anouncments soon..


Title: Re: [ANN][ETH] NoxonFund.com - prices never go down. 50% reserve. Referral 3-2-1%
Post by: Bybox on May 19, 2017, 12:50:23 AM
Look like scam lol maybe you need to make it more professional


Title: Re: [ANN][ETH] NoxonFund.com - prices never go down. 50% reserve. Referral 3-2-1%
Post by: noxon on September 03, 2017, 01:29:34 PM
Today I was convinced of the correct choice of technology for me, at the conferences blockchainhunt in Moscow, Vitalik told about the plans for scaling smart contracts in offchain and invited interested developers to join. Many strong developers make an interview with him (I know one - he is realy strong and can build systems on network protocol level). I am confident in the technological future that Ethereum expects and I hope I will continue to work with this.

https://pbs.twimg.com/media/DIj5ZSCW4AQcII7.jpg:large
(I'm on the left in the photo)

Stay tuned!


Title: Re: [ANN][ETH] NoxonFund.com - prices never go down. 50% reserve. Referral 3-2-1%
Post by: noxon on October 22, 2017, 10:05:24 PM
Token on the bitmakler.net have perfect stats:

http://noxonfund.com/a.png

Smart contract address has been changed.
1) Previous contract was deployed to the network before "DAO hack" and not safe.
2) You can view new address on the site.
3) All old tokens can be traded to new 1:1.
4) All earnings now forward to the new contract.
5) Old tokenholders still can "sell" they tokens to the old contract.  

New features.
1) Better UX, for burn tokens: just "transfer" they to the contract address.
2) Safety improvements.
3) Full ERC20 standart support.
4) Rename ticker (SHARE -> NOXON)
5) Add manager role

How to get new tokens?
1) Transfer old tokens (via myetherwallet.com) to 0x873351e707257C28eC6fAB1ADbc850480f6e0633
2) PM me
3) You will recive new tokens in 24 hours.