Author

Topic: cancelled (Read 649 times)

member
Activity: 76
Merit: 10
Play Shiny Squirrels - Multiply Your Ether
April 04, 2016, 06:23:16 PM
#9
A total of eight deposits were made by four unique addresses, adding up to 87.95 Ether.
The creator, 0xDFEf deposited 1.45 Ether and received 16.9921 Ether, which is a gain of 11.72x.
The contract 0x35BD deposited 35 Ether and received 70 Ether, which is a gain of 2x.
The account 0x0604 lost 50 Ether.
The account 0x19f5 lost 1.5 Ether.

Code:
index deposit address
0 0.12 0xDFEf
1 35 0x35BD
2 1 0xDFEf
3 0.11 0xDFEf
4 0.11 0xDFEf
5 50 0x0604
6 1.5 0x19f5
7 0.11 0xDFEf

deposits paid
0xDFEf 1.45 16.9921
0x35BD 35 70
0x0604 50 0
0x19f5 1.5 0

Other pyramids like Rubixi, Little Cactus, Greed Pit, etc are running strong because their logic checks out and the results speak for themselves.

This contract was rigged, which was evident in the source code Roll Eyes
full member
Activity: 164
Merit: 100
Gone for a minute now back again
April 04, 2016, 01:46:19 PM
#8
till the end comes crashing down. This will fail in about 3...2...1....
hero member
Activity: 700
Merit: 500
April 04, 2016, 06:31:24 AM
#7
So how many have invested in this?
member
Activity: 76
Merit: 10
Play Shiny Squirrels - Multiply Your Ether
April 03, 2016, 11:58:24 PM
#6
This program is designed to take your money and give it to the first couple big depositors over and over again - it will never reach any further into the queue, it does not advance, it just starts over at the first depositor every single time.  Angry

Read the code.

If you're sure you know what you are doing, risk your Ether proving me wrong, but please read and understand the source code before you send money to an anonymous computer program.

There are other pyramid contracts running in Ethereum with well written code that are doing fine and will run forever, try one of those if you want your chances of a payout to be greater than 0%.
full member
Activity: 154
Merit: 100
April 03, 2016, 04:53:02 PM
#5
GET WEALTHY TODAY!?!?

whoa man thats crazy... almost...too good to be true?
Yeah, it's a scam, all the deposits go to fees in the end. Don't fall for it.
full member
Activity: 164
Merit: 100
Gone for a minute now back again
April 03, 2016, 04:46:22 PM
#4
GET WEALTHY TODAY!?!?

whoa man thats crazy... almost...too good to be true?
member
Activity: 70
Merit: 10
April 03, 2016, 11:06:42 AM
#3
Yes indeed.

Code:
if(feeamount!=0){
            if(balance>feeamount){
                owner.send(feeamount);
                balance-=feeamount;
                totalpaidout+=feeamount;
                if(fee<100)
                    fee+=4;
                else fee=100;
            }
        }


The fees are increasing from 3 % to 100% by 4% each new user.

This is a total scam.
member
Activity: 76
Merit: 10
Play Shiny Squirrels - Multiply Your Ether
April 03, 2016, 10:47:46 AM
#2
The source code for this looks seriously bugged!

Code:
uint tot_pl=investors.length;
// .....
uint nr=0;
while(balance>investors[nr].amount*40/100 && nr{
    if(nr%20==0&&balance>investors[nr].amount*70/100)
    {
        payout=investors[nr].amount*70/100;
        investors[nr].etherAddress.send(payout);
        balance-=investors[nr].amount*70/100;
        totalpaidout+=investors[nr].amount*70/100;
    }
    else
    {
        payout=investors[nr].amount*40/100;
        investors[nr].etherAddress.send(payout);
        balance-=investors[nr].amount*40/100;
        totalpaidout+=investors[nr].amount*40/100;
    }
    nr+=1;
}}}

Every time someone makes a deposit, it's going to loop through ALL of the "investors" starting at ZERO.  The first investor will receive 40% (not 140%) of their initial deposit, then the second investor will receive 40% of their deposit, and so on until the balance is too low to pay the next investor.

Investors are never removed from the queue and the loop always starts over at zero.

If the balance is large enough, then the investor who deposited 35 Ether will take their 14 Ether cut (35*40/100).  If it gets past that, then the investor who deposited 50 Ether will take their 20 Ether cut (50*40/100).  If the balance is high enough to get past that 34 Ether RECURRING paywall, then whoever is brave enough to join the queue next will get their cut.

This will only make the first few investors wealthy, over and over again.
sr. member
Activity: 428
Merit: 250
April 02, 2016, 11:49:43 PM
#1
cancelled
Jump to: