Bitcoin Forum
May 07, 2024, 04:26:42 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1] 2 »  All
  Print  
Author Topic: [ANN][ETH] NoxonFund.com - prices never go down. 50% reserve. Referral 3-2-1%  (Read 2222 times)
noxon (OP)
Member
**
Offline Offline

Activity: 86
Merit: 21

swap.online


View Profile WWW
June 05, 2016, 09:09:20 AM
Last edit: June 05, 2016, 09:58:07 AM by noxon
 #1



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);
  
    
}


twitter.com/noxonsu
The Bitcoin software, network, and concept is called "Bitcoin" with a capitalized "B". Bitcoin currency units are called "bitcoins" with a lowercase "b" -- this is often abbreviated BTC.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1715099203
Hero Member
*
Offline Offline

Posts: 1715099203

View Profile Personal Message (Offline)

Ignore
1715099203
Reply with quote  #2

1715099203
Report to moderator
kahir
Legendary
*
Offline Offline

Activity: 1050
Merit: 1000



View Profile
June 05, 2016, 09:20:02 AM
 #2



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!

kamvreto
Legendary
*
Offline Offline

Activity: 1960
Merit: 1157


View Profile
June 05, 2016, 09:26:39 AM
 #3

reserved
Golftech
Hero Member
*****
Offline Offline

Activity: 2128
Merit: 520


View Profile
June 05, 2016, 09:38:29 AM
 #4

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.
lestherat
Legendary
*
Offline Offline

Activity: 986
Merit: 1001



View Profile
June 06, 2016, 02:09:24 AM
Last edit: June 06, 2016, 02:54:41 AM by lestherat
 #5

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.  Smiley
camimbo
Newbie
*
Offline Offline

Activity: 6
Merit: 0


View Profile
June 06, 2016, 02:33:32 AM
 #6

Good luck on your project.
golfhuso
Sr. Member
****
Offline Offline

Activity: 476
Merit: 250


View Profile
June 06, 2016, 02:44:35 AM
 #7

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 Huh

            ▀▀▀▀
 
▀▀▀▀
            ▄▄▄▄
      ▀▀▀▀  ████
▄▄▄▄        ▄▄▄▄
████        ████
▄▄▄▄  ▄▄▄▄  ▄▄▄▄
████  ████  ████
▄▄▄▄  ▄▄▄▄  ▄▄▄▄
████  ████  ████
▄▄▄▄  ▄▄▄▄  ▄▄▄▄
████  ████  ████
            ▀▀▀▀
 
▀▀▀▀
            ▄▄▄▄
      ▀▀▀▀  ████
▄▄▄▄        ▄▄▄▄
████        ████
▄▄▄▄  ▄▄▄▄  ▄▄▄▄
████  ████  ████
▄▄▄▄  ▄▄▄▄  ▄▄▄▄
████  ████  ████
▄▄▄▄  ▄▄▄▄  ▄▄▄▄
████  ████  ████
▀▀▀▀

            ▀▀▀▀
▄▄▄▄           
████  ▀▀▀▀
▄▄▄▄        ▄▄▄▄
████        ████
▄▄▄▄  ▄▄▄▄  ▄▄▄▄
████  ████  ████
▄▄▄▄  ▄▄▄▄  ▄▄▄▄
████  ████  ████
▄▄▄▄  ▄▄▄▄  ▄▄▄▄
████  ████  ████
[]▀▀▀▀

            ▀▀▀▀
▄▄▄▄           
████  ▀▀▀▀
▄▄▄▄        ▄▄▄▄
████        ████
▄▄▄▄  ▄▄▄▄  ▄▄▄▄
████  ████  ████
▄▄▄▄  ▄▄▄▄  ▄▄▄▄
████  ████  ████
▄▄▄▄  ▄▄▄▄  ▄▄▄▄
████  ████  ████
rajeshgarnaik
Full Member
***
Offline Offline

Activity: 196
Merit: 100


View Profile
June 06, 2016, 06:29:09 AM
 #8

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

noxon (OP)
Member
**
Offline Offline

Activity: 86
Merit: 21

swap.online


View Profile WWW
June 06, 2016, 01:27:14 PM
 #9

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 Huh


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? Roll Eyes

---

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

Look at this:


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:


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!

twitter.com/noxonsu
noxon (OP)
Member
**
Offline Offline

Activity: 86
Merit: 21

swap.online


View Profile WWW
June 21, 2016, 07:59:57 PM
 #10

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 Smiley ). 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 Smiley ). 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

twitter.com/noxonsu
fedmahnkassad
Hero Member
*****
Offline Offline

Activity: 840
Merit: 500


Twitter: @FedKassad


View Profile
June 21, 2016, 08:14:01 PM
 #11

Is this some new kind of scam?
BTCdoaA
Hero Member
*****
Offline Offline

Activity: 910
Merit: 500



View Profile
June 21, 2016, 08:31:02 PM
 #12

who will escrow the fund ? without escrowing services you will get less members willing to participate
Thanks

            ▄▄████▄▄
        ▄▄██████████████▄▄
      ███████████████████████▄▄
      ▀▀█████████████████████████
██▄▄       ▀▀█████████████████████
██████▄▄        ▀█████████████████
███████████▄▄       ▀▀████████████
███████████████▄▄        ▀████████
████████████████████▄▄       ▀▀███
 ▀▀██████████████████████▄▄
     ▀▀██████████████████████▄▄
▄▄        ▀██████████████████████▄
████▄▄        ▀▀██████████████████
█████████▄▄        ▀▀█████████████
█████████████▄▄        ▀▀█████████
██████████████████▄▄        ▀▀████
▀██████████████████████▄▄
  ▀▀████████████████████████
      ▀▀█████████████████▀▀
           ▀▀███████▀▀



.SEMUX
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
  Semux uses .100% original codebase.
  Superfast with .30 seconds instant finality.
  Tested .5000 tx per block. on open network
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
sesiah
Sr. Member
****
Offline Offline

Activity: 574
Merit: 251



View Profile
June 22, 2016, 01:57:10 PM
 #13

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?
Redacted-
Member
**
Offline Offline

Activity: 64
Merit: 10


View Profile
June 22, 2016, 02:39:55 PM
 #14

So this is just another dao? Or is it something different?
noxon (OP)
Member
**
Offline Offline

Activity: 86
Merit: 21

swap.online


View Profile WWW
November 01, 2016, 08:07:53 AM
 #15

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.

twitter.com/noxonsu
noxon (OP)
Member
**
Offline Offline

Activity: 86
Merit: 21

swap.online


View Profile WWW
December 12, 2016, 08:18:31 AM
 #16

Hi all) this is private key 193d8cfa0b249236a2a58176dbb200b40def711aef88bab5543f59ee13b6e7af where stored 100 shares of noxonfund.com https://etherscan.io/tx/0x7d42bc6aa311189082eceb9f61b7b78ffc384f7c5ff2636f99baf485c3f17754

who will take this? Smiley

twitter.com/noxonsu
Ellen Alemany
Member
**
Offline Offline

Activity: 85
Merit: 10


View Profile
December 12, 2016, 08:30:35 AM
 #17

via Imgflip Meme Generator

"There must be more to life than having everything."
Raxitto
Sr. Member
****
Offline Offline

Activity: 420
Merit: 250



View Profile
December 12, 2016, 08:32:32 AM
 #18

Keep away..... warning, to much bull shit in this thread....
xp.rie
Hero Member
*****
Offline Offline

Activity: 868
Merit: 500



View Profile
March 02, 2017, 03:36:58 PM
 #19

Good luck on your ...
Warning!!!  Huh
noxon (OP)
Member
**
Offline Offline

Activity: 86
Merit: 21

swap.online


View Profile WWW
May 19, 2017, 12:47:29 AM
Last edit: May 19, 2017, 02:42:49 AM by noxon
 #20

Hi all) this is private key 193d8cfa0b249236a2a58176dbb200b40def711aef88bab5543f59ee13b6e7af where stored 100 shares of noxonfund.com https://etherscan.io/tx/0x7d42bc6aa311189082eceb9f61b7b78ffc384f7c5ff2636f99baf485c3f17754

who will take this? Smiley

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

https://noxonfund.com/how_to_sell_nxp.webm

Small anouncments soon..

twitter.com/noxonsu
Pages: [1] 2 »  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!