noxon (OP)
Member
Offline
Activity: 86
Merit: 21
swap.online
|
|
June 05, 2016, 09:09:20 AM Last edit: June 05, 2016, 09:58:07 AM by noxon |
|
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... EarningAll 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: 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/nQLeK5Pm3. Contracts > noxonfund.com > Select function > Sell > Enter amount of SHARE to sell Ethereum smart contract 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
|
|
|
kahir
Legendary
Offline
Activity: 1050
Merit: 1000
|
|
June 05, 2016, 09:20:02 AM |
|
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... EarningAll 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: 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/nQLeK5Pm3. Contracts > noxonfund.com > Select function > Sell > Enter amount of SHARE to sell Ethereum smart contract 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
Activity: 1974
Merit: 1157
MAaaN...!! CUT THAT STUPID SHIT
|
|
June 05, 2016, 09:26:39 AM |
|
reserved
|
|
|
|
Golftech
|
|
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.
|
|
|
|
lestherat
Legendary
Offline
Activity: 986
Merit: 1001
|
|
June 06, 2016, 02:09:24 AM Last edit: June 06, 2016, 02:54:41 AM by lestherat |
|
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.
|
|
|
|
camimbo
Newbie
Offline
Activity: 6
Merit: 0
|
|
June 06, 2016, 02:33:32 AM |
|
Good luck on your project.
|
|
|
|
golfhuso
|
|
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
|
▀▀▀▀ ▀▀▀▀ ▄▄▄▄ ▀▀▀▀ ████ ▄▄▄▄ ▄▄▄▄ ████ ████ ▄▄▄▄ ▄▄▄▄ ▄▄▄▄ ████ ████ ████ ▄▄▄▄ ▄▄▄▄ ▄▄▄▄ ████ ████ ████ ▄▄▄▄ ▄▄▄▄ ▄▄▄▄ ████ ████ ████ | | | | | | ▀▀▀▀ ▀▀▀▀ ▄▄▄▄ ▀▀▀▀ ████ ▄▄▄▄ ▄▄▄▄ ████ ████ ▄▄▄▄ ▄▄▄▄ ▄▄▄▄ ████ ████ ████ ▄▄▄▄ ▄▄▄▄ ▄▄▄▄ ████ ████ ████ ▄▄▄▄ ▄▄▄▄ ▄▄▄▄ ████ ████ ████ | | | | ▀▀▀▀
▀▀▀▀ ▄▄▄▄ ████ ▀▀▀▀ ▄▄▄▄ ▄▄▄▄ ████ ████ ▄▄▄▄ ▄▄▄▄ ▄▄▄▄ ████ ████ ████ ▄▄▄▄ ▄▄▄▄ ▄▄▄▄ ████ ████ ████ ▄▄▄▄ ▄▄▄▄ ▄▄▄▄ ████ ████ ████ | | | [ | | ] | | ▀▀▀▀
▀▀▀▀ ▄▄▄▄ ████ ▀▀▀▀ ▄▄▄▄ ▄▄▄▄ ████ ████ ▄▄▄▄ ▄▄▄▄ ▄▄▄▄ ████ ████ ████ ▄▄▄▄ ▄▄▄▄ ▄▄▄▄ ████ ████ ████ ▄▄▄▄ ▄▄▄▄ ▄▄▄▄ ████ ████ ████ |
|
|
|
rajeshgarnaik
|
|
June 06, 2016, 06:29:09 AM |
|
i think they will have some exchange. even i am confused.
|
|
|
|
noxon (OP)
Member
Offline
Activity: 86
Merit: 21
swap.online
|
|
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. 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/15668602Look 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: 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). 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. 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. Good luck on your project. thank you!
|
twitter.com/noxonsu
|
|
|
noxon (OP)
Member
Offline
Activity: 86
Merit: 21
swap.online
|
|
June 21, 2016, 07:59:57 PM |
|
security check: 0. OK "The DAO (obviously)" https://medium.com/@oaeee/the-attack-story-38f4789b3c3b#.m7lxqvkajOur 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.htmlWe 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#codeour 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
|
|
June 21, 2016, 08:14:01 PM |
|
Is this some new kind of scam?
|
|
|
|
BTCdoaA
|
|
June 21, 2016, 08:31:02 PM |
|
who will escrow the fund ? without escrowing services you will get less members willing to participate Thanks
|
|
|
|
sesiah
|
|
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?
|
|
|
|
Redacted-
Member
Offline
Activity: 64
Merit: 10
|
|
June 22, 2016, 02:39:55 PM |
|
So this is just another dao? Or is it something different?
|
|
|
|
|
|
Ellen Alemany
Member
Offline
Activity: 85
Merit: 10
|
|
December 12, 2016, 08:30:35 AM |
|
|
"There must be more to life than having everything."
|
|
|
Raxitto
|
|
December 12, 2016, 08:32:32 AM |
|
Keep away..... warning, to much bull shit in this thread....
|
|
|
|
xp.rie
|
|
March 02, 2017, 03:36:58 PM |
|
Good luck on your ... Warning!!!
|
|
|
|
noxon (OP)
Member
Offline
Activity: 86
Merit: 21
swap.online
|
|
May 19, 2017, 12:47:29 AM Last edit: May 19, 2017, 02:42:49 AM by noxon |
|
nobody:) i love internet. So "how to take free money" in this funny video https://noxonfund.com/how_to_sell_nxp.webmSmall anouncments soon..
|
twitter.com/noxonsu
|
|
|
|