Bitcoin Forum
June 21, 2024, 08:58:43 PM *
News: Voting for pizza day contest
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1] 2 3 »
1  Other / Archival / Re: [ETH] PiggyBank - Earn Ethereum Forever! on: March 26, 2016, 12:59:37 PM

Hello i have a question:

the 14.97 was my deposit, i have sent with the jaxx wallet an hour ago. But it seems that its not confirmed yet.. how long does this take?

Thank you very much for your response.

sidharta

The transaction was rejected, you didnt sent enough gas:

https://etherscan.io/tx/0x6605658e2a9d852e0fd98f32735bd92e1a62e8968ca0142bf64953b26c43ef2c

Try again with higher gas or with the mist wallet.
2  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Ethereum: Welcome to the Beginning on: March 26, 2016, 11:28:22 AM
I hope the price goes up to 20$ soon! Eth is really good technology!
3  Other / Archival / Re: [ETH] PiggyBank - Earn Ethereum Forever! on: March 26, 2016, 11:23:03 AM

Waiting for you to prove me wrong newbie.


Ok here is your proof:

LATEST DEPOSIT:  (14.97)

https://www.etherchain.org/tx/0x6605658e2a9d852e0fd98f32735bd92e1a62e8968ca0142bf64953b26c43ef2c

LATEST PAYOUT FROM THAT DEPOSIT:  (9.95)

https://www.etherchain.org/tx/0x8f6bb1406be65d15880611fe0e8ec8920145fc634c7f6fdb15da4850aaab7434


I got 0% comission from that,it all went to investors!
4  Other / Archival / Re: [ETH] PiggyBank - Earn Ethereum Forever! on: March 25, 2016, 10:18:27 PM
Watch here realtime how payments are sent out:
https://etherscan.io/address/0xdcb13FA157eeBF22dDC8C9aA1d6E394810De6FA3#internaltx


I think my jealous competitors try to discredit me, because the payments are still going out!
5  Other / Archival / Re: [ETH] PiggyBank - Earn Ethereum Forever! on: March 25, 2016, 09:57:40 PM

Do not deposit any more money to this scammer.

This is what you get for trusting a noob... not even a noob, just a helper to one.. noobhelper178


I cant believe what i`m reading, how it is a scam if it's open source??

You must be the alt account of one of my competitors. There are many ethereum doublers, and probably you are a jealous competitor!!!
6  Other / Archival / Re: [ETH] PiggyBank - Earn Ethereum Forever! on: March 25, 2016, 05:53:15 PM

I totally agree, if there was a way to edit/reset contracts, I believe there would be less scams.

I just lost about roughly 64 Ether.  Undecided

you didnt lost it, you will earn eth after more people invest


Wow can't believe I got scammed out of my Eth, and I actually defended this guy.  I'm poor and can barely afford food, thanks a lot.

you didnt got scammed, you will be paid out after more people join


Seriously guys, this contract lives on the blockchain forever, so just wait a few hours and days and everyone will be paid.

The faster you invested the faster you will get paid, but after some time everyone will be!



Just make sure you dont throw away your current address, and then just wait, everyone will be paid!!!
7  Other / Archival / Re: [ETH] PiggyBank - Earn Ethereum Forever! on: March 25, 2016, 05:51:46 PM
noobhelper178, i msg you so how come i invested 16hours agoo and the only 3% sent to my wallet got Contract Cancelled ?  If the ether address received my fund it should return the investment....


ANd whyAddress: 0xf303bde76a36411b7c0459efdd2e5f7069964203   is receiving 99% of the deposited ether?


you probably sent too small gas, try again with higher gas


what's left goes to the first few investors, then amount becomes too low and stops the loop, making later investors get nothing?

is amount/33 really 3%?

Just trying to understand how this all works.

no, first me and the investors get paid, but everyone in the loop gets paid, by the order they invested

the balance currently is low, so that is why later investors will get delayed payments, but after the balance gets high, they will get paid


Is there a way to edit the contract?


if there would be then it would not be transparent

Doc, that should be an option to reset contracts like these and refund all transactions once proven its a scam... 

Only by asking every wallet involved if they want to reset, within a certain % agrees it should proceed and refund...

Since ethereum are SMART contracts this should be a option and would bring more safety to users...

it's open source ffs, how can it be a scam?

you can see the code right there
8  Other / Archival / Re: [ETH] PiggyBank - Earn Ethereum Forever! on: March 25, 2016, 02:22:38 PM
trying to use this as an example to learn how contracts work.

I believe i've identified the problem in the contract, but i would love to hear from someone who actually knows.


I think the problem is this line:
Code:
                while (balance > investors[k].amount * 3 / 100 && k < total_inv) //exit condition to avoid infinite loop

total_inv is always going to be 0.

so this basically never runs. the only investor that is paid is at id 0, the first investor. ie: the owner.

Can someone else confirm?

Thats nonsense, you cant read the code, the total_inv is set to the lenght of the investors array, which is scaling after each contract execution by +1.

Read it again:



Quote

contract PiggyBank {

  struct InvestorArray {
      address etherAddress;
      uint amount;
  }

  InvestorArray[] public investors;

  uint public k = 0;
  uint public fees;
  uint public balance = 0;
  address public owner;

  // simple single-sig function modifier
  modifier onlyowner { if (msg.sender == owner) _ }

  // this function is executed at initialization and sets the owner of the contract
  function PiggyBank() {
    owner = msg.sender;
  }

  // fallback function - simple transactions trigger this
  function() {
    enter();
  }
  
  function enter() {
    if (msg.value < 50 finney) {
        msg.sender.send(msg.value);
        return;
    }
   
    uint amount=msg.value;


    // add a new participant to array
   uint total_inv = investors.length;
   investors.length += 1;

    investors[total_inv].etherAddress = msg.sender;
    investors[total_inv].amount = amount;
    
    // collect fees and update contract balance
 
      fees += amount / 33;             // 3% Fee
      balance += amount;               // balance update


     if (fees != 0)
     {
        if(balance>fees)
   {
         owner.send(fees);
         balance -= fees;                 //balance update
   }
     }
 

   // 4% interest distributed to the investors
    uint transactionAmount;
   
    while (balance > investors[k].amount * 3/100 && k<total_inv)  //exit condition to avoid infinite loop
    {
    
     if(k%25==0 &&  balance > investors[k].amount * 9/100)
     {
      transactionAmount = investors[k].amount * 9/100;  
      investors[k].etherAddress.send(transactionAmount);
      balance -= investors[k].amount * 9/100;                      //balance update
      }
     else
     {
      transactionAmount = investors[k].amount *3/100;  
      investors[k].etherAddress.send(transactionAmount);
      balance -= investors[k].amount *3/100;                         //balance update
      }
      
      k += 1;
    }
    
    //----------------end enter
  }



  function setOwner(address new_owner) onlyowner {
      owner = new_owner;
  }
}

9  Other / Archival / Re: [ETH] PiggyBank - Earn Ethereum Forever! on: March 25, 2016, 09:04:44 AM
is this the same as piggy coin?

No, i dont know what is that.


AFter seeing full concept and reply , if their is no more investor then what will happen to the investor who have invested their ETH.

Most of the reply are from Newbies , this is smelling some fishy i think, and even one of the user gave a full details about the investment and it is clear that in on certain point your bank will become negative,

So now i am confirm that this is a scam scheme to scam user.

Beware users who ever is going to invest it. its a ponzi scheme to scam.

No, all the balance will be paid out eventually.

There are some contracts that have bad programmers, and programmed their contracts that the funds are locked there forever.

This is not the case with PIGGYBANK, i have tested the code rigurously, and it works perfectly, the balance will be paid out after a while.



It is indeed a Ponzi, but that doesn't necessarily mean it's a scam.
The contract is viewable by the public.

You must realize that the Ponzi is fully automated, therefore as long as new investors come in everyone will get their money.

If no new users come in, the users who've already invested will not receive anything until new investors come in. That's how a Ponzi works. It takes full cooperation of everyone, and trust in the contract.

That's why I said that those who wish to continue to profit from the Piggybank should consider doing their part in introducing new investors.


Yep, i have no control over it at this point, that is why it's transparent.

That is how ethereum works, so you dont need to trust me, only trust the code, which you can review anytime.
10  Other / Archival / Re: [ETH] PiggyBank - Earn Ethereum Forever! on: March 25, 2016, 09:01:01 AM
Please help me i sent my eth from poloniex.
Is the contractl just send my eth back to polo cold storage?  Huh

Sorry, there is nothing I can do, i cant touch the contract, that is why it's transparent.

The profit was sent back to poloniex's address, so better contact them to get your coins.

I sent 0.47 Ether and I have is error:Warning! An error occured during contract execution. Out Of Gas  Transaction  0x3a9c5b6325f128f11c6f5edb0d38bd3256c734526704292006fb693b60fcf270  (ready I use the wallet Jaxx andoid and there no problem  Grin Smiley )

Need to send more gas, just send bigger fees, or use the Mist wallet.

noobhelper178 please report that ethereumwallet It doesn't work, if you can not use the Wallet Ethereum official, Jaxx Wallet Android works good, also this the  version Jaxx Wallet IOS, Jaxx Wallet Windows and Linux, please excuse my English Grin

Mist wallet works, i used it to create it, and test it, it works fine, just add higher fee's if it's rejected:

https://github.com/ethereum/mist/releases

I have a question for the creator, so if one were to make multiple deposits from the same ETH address, the contract would pretty much send you 3% multiple times on each of the different initial deposits is that correct?


Yes.

You send  1 ether , you get  0.03 ether

You send again 5 ether , you get 0.15 ether

After 2 deposits you will earn 0.18 ether, forever after people after you deposit!

11  Other / Archival / Re: [ETH] PiggyBank - Earn Ethereum Forever! on: March 24, 2016, 06:42:19 PM
3% of 0.5 ETH or 3% of 1000 ETH?

3% of the 1000 ETH, every one gets 3% of the money they invested.

Every 25th investor earns 9%, that is the jackpot position.

This is wrong!

If I deposit 1,000 ETH right now, and then deposit 0.05 ETH 1,000 times from different accounts, my 1,000 ETH deposit will have been paid out 3% 1,000 times, or 30,000 ETH. Where is this money coming from?

Assuming my 1,001 deposits are the only accounts in the piggybank, that means only 1,050 has been collected yet 30,000 + %s for all the 0.05 accounts are being paid out.

The money comes from new investors, so make sure you invest early, we are before the 25th investor.

If you get the 25th spot, then you will earn big time.

We will have 1000+ deposits, so every early investor will make big bucks!
12  Other / Archival / Re: [ETH] PiggyBank - Earn Ethereum Forever! on: March 24, 2016, 04:38:32 PM
to which direction wallet will deposit me the ether Huh

The profits will be sent back to the address you deposited from

You can see all transactions here, everyone got paid:
https://etherscan.io/address/0xdcb13FA157eeBF22dDC8C9aA1d6E394810De6FA3#internaltx

13  Other / Archival / Re: [ETH] PiggyBank - Earn Ethereum Forever! on: March 24, 2016, 04:14:52 PM
where I put my wallet address? Huh

What do you mean, i dont understand

Quote
Until the Balance is higher than 0 , payments will go out!

How is the payout hierarchy?

Are people who deposited first, being paid first?

Yes, the order of payment is the order of deposit.

The those that deposited first get paid first, and so it goes on.

But everyone gets paid  after more people deposit.

Can you explain a bit better? Where is the ETH coming from?


Deposit amounts arent equal, and after the balance goes to 0, which will be very far in the future, it just pauses the system until more people deposit.

So if the system has to payout 100 ether to an investor in the line and there is only 10 ether in balance, then it waits for another 90 ether, and then it will be paid out

You can track deposits/payouts here:
https://etherscan.io/address/0xdcb13FA157eeBF22dDC8C9aA1d6E394810De6FA3
14  Other / Archival / Re: [ETH] PiggyBank - Earn Ethereum Forever! on: March 24, 2016, 02:01:12 PM

So you are saying that I will earn 3% on my investments every time somebody else deposits ?


Op does this mean that i will earn from this forever??

Yes, you will earn 3% everytime somebody deposits after you, which will last forever!
15  Other / Archival / Re: [ETH] PiggyBank - Earn Ethereum Forever! on: March 24, 2016, 12:54:30 PM
3% of 0.5 ETH or 3% of 1000 ETH?

3% of the 1000 ETH, every one gets 3% of the money they invested.

Every 25th investor earns 9%, that is the jackpot position.
16  Other / Archival / Re: [ETH] PiggyBank - Earn Ethereum Forever! on: March 24, 2016, 12:36:01 PM
What happens if I invest 1000 ETH and the five people after me each only invest 0.05 ETH?

Quote
After 5 investors, you will earn 15% profit!
● After 50 investors, you will earn 150% profit!
● After 500 investors, you will earn 1500% profit!
● If you have a 25th spot, then you earn 3x more, so after
500 investors you will earn 4500% profit!

I think this claim would not work?



You get paid 3% every single time, after each investor. The contract gets triggered after each deposit.

So that means that you earn 15% profit after the 5 investors, that is sent to you instantly.

Until the Balance is higher than 0 , payments will go out!

And it is sustainable for the long term.
17  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Ethereum: Welcome to the Beginning on: March 24, 2016, 10:20:48 AM
Hello my new ethereum project is ready, please tell me your opinion about it:

https://bitcointalk.org/index.php?topic=1410587.0
18  Other / Archival / Re: [ETH] PiggyBank - Earn Ethereum Forever! on: March 24, 2016, 10:14:16 AM
-
19  Other / Archival / [ETH] PiggyBank - Earn Ethereum Forever! on: March 24, 2016, 10:00:14 AM
-
20  Other / Archival / Re: [ETH] SafeInvestments - Earn 3% Instant with Ethereum on: March 22, 2016, 08:13:30 AM
What will happen if someone send 500 eth?

Sorry i cancelled this project, i`m working now on a much more exciting one, stay tuned, it will come out soon.
Pages: [1] 2 3 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!