Bitcoin Forum
June 25, 2024, 12:45:13 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][KAR] KARPELESCOIN | 3KARPE1ESwHERE1SoUrMoNEYxxxx8dXeC5 | EXCHANGE on: March 31, 2014, 10:14:40 PM
current markecap : 10,508,962 * 0.007 BTC = 7,356.2734 BTC   Shocked

it would be #16 rank just now in http://coinmarketcap.com

this is a breaking launch !!
2  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [PRE-ANN] KARPELESCOIN | OPEN POOL PRE-REGISTRATION | LAUNCH Mar 30 12:00 PM on: March 29, 2014, 08:13:57 PM
karpeles coin why not? Cheesy

3  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][SPH] SAPPHIRE, LAUNCHED JUST NOW !!! EXCHANGE | KWG | MERGED on: March 27, 2014, 01:10:41 PM
lol sapphire nice concept  Grin
4  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][SAPPHIRE] SAPPHIRE, PREPARE TO DOMINATE LAUNCH 26 20:00 GMT | KWG | MERGED on: March 24, 2014, 09:19:45 PM
nice!
5  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [PRE-ANN] KARPELESCOIN | Providing Funds Rehabilitation | LAUNCH Mar 30 12:00 PM on: March 23, 2014, 12:52:04 AM
is this serious?  Shocked
6  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] TiPS ★ Kimotos Gravity Well ★ Coin anonymizer launched! on: February 21, 2014, 10:25:09 PM
Retardée, it is shown into blockchain that it is not doing mixing, laundry or whatever.

This poor guy sent  10000685.379729 from Ef1iTBw3sceL1FmcN1AT1be2QRCEFeozk8 to ERRGDnouHgZCGYnahkX6fyEhRKK1LKBp6H with "anonymi" check, with the aim of an true anonymous tx.

If you have got functional eyes and a medium size brain of standard chimp, you can see that coins are sent directly from "from" address Ef1iTBw3sceL1FmcN1AT1be2QRCEFeozk8  to "to" address ERRGDnouHgZCGYnahkX6fyEhRKK1LKBp6H ; no mixing is done at all.

26f66790cd8fb01690ac72493008d5467baf0719456d319ac8ebb798df8025d7

Simply this feature does not exist yet, invisibel just ribbed us.
Sounds like that poor guy forgot to make sure the box was checked, because if it was then the coins would only be sent to a mixer, unless there are none available where it'll give the user an error message.
I wonder who people will believe, the coin developer and source code, or that one guy who keeps trying to shit up the thread? You could have at least made a new sockpuppet account...

Anyway sorry for the absence guys, away visiting family right now, I'll look over everything that's been posted once I get back.

Edit: actually johnny I just looked that that link, it looks like he only sent 10.2 coins through the mixer, with the 10000685 coins being sent back to the sender as change. 1/10 made me respond.

Edit 2:
By the way, I'm offering a 5 million TiPS bounty to whoever can design the best thread starter OP (see https://bitcointalk.org/index.php?topic=391192) since IMO we need to make it look a bit more professional.
Just post it up as a regular reply here. Bounty ends when I get back (monday/tuesday), whoever gets the most votes from people here wins!

Colleague, you are in denial   Undecided

REally I was interested in TIPS, but at first I found an account with 2.5 b. being transferred. Ok, it was an 4chan scam.

Next, I have checked out the  output of supposed "anonym" tx and according to blockchain, it is not done any mixing or laundering feature at all. tx 26f66790cd8fb01690ac72493008d5467baf0719456d319ac8ebb798df8025d7 http://chain.fedoraco.in/tx/26f66790cd8fb01690ac72493008d5467baf0719456d319ac8ebb798df8025d7 transfers 10000675.379729 TIPS from Ef1iTBw3sceL1FmcN1AT1be2QRCEFeozk8 to     ERRGDnouHgZCGYnahkX6fyEhRKK1LKBp6H ... where is the mixing here?

I have analyzed the source code at github and it seems it is implemented info param and so. RPC methods lacks fully of implementation. Check RPC sendto method:
Code:
Value sendtoaddress(const Array& params, const CRPCContext& ctx, bool fHelp)
{    if (fHelp || params.size() < 2 || params.size() > 4)
        throw runtime_error(
            "sendtoaddress <fedoracoinaddress>[:mixed] <amount> [comment] [comment-to]\n"
            "<amount> is a real and is rounded to the nearest 0.00000001\n"
            "coins can be mixed by appending :mixed to the destination address, which will conceal the address you sent them from."
            + HelpRequiringPassphrase(ctx));

    string strAddress = params[0].get_str();
    size_t iSeperator = strAddress.find_last_of(":");
  bool bMixCoins = false;
    if (iSeperator != std::string::npos)
    {
        string action = strAddress.substr(iSeperator+1);
        strAddress = strAddress.substr(0, iSeperator);
        bMixCoins = boost::iequals(action, "mixed");
    }

    CBitcoinAddress address(strAddress);
    if (!address.IsValid())
        throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Invalid FedoraCoin address");

    // Amount
    uint64 nAmount = AmountFromValue(params[1]);

    // Wallet comments
    CWalletTx wtx;
    if (params.size() > 2 && params[2].type() != null_type && !params[2].get_str().empty())
        wtx.mapValue["comment"] = params[2].get_str();
    if (params.size() > 3 && params[3].type() != null_type && !params[3].get_str().empty())
        wtx.mapValue["to"]      = params[3].get_str();

    if (ctx.wallet->IsLocked())
        throw JSONRPCError(RPC_WALLET_UNLOCK_NEEDED, "Error: Please enter the wallet passphrase with walletpassphrase first.");

    string strError = ctx.wallet->SendMoneyToDestination(address.Get(), nAmount, wtx, bMixCoins);
    if (strError != "")
        throw JSONRPCError(RPC_WALLET_ERROR, strError);

    return wtx.GetHash().GetHex();
}


Lines 598-638 https://github.com/fedoracoin/fedoracoin/blob/master/src/rpcwallet.cpp#L598-L638

If you analize the code, it checks the trailing mixing param, updates  bMixCoins ... and that is all  Roll Eyes

REally, invisbel, I am very very disappointed. I did a bit of investment and now I am really disappointed by your delusional and deceptive attitude.

I hope this misunderstanding be solved as soon as posible.

Regards
7  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] TiPS ★ Kimotos Gravity Well ★ Coin anonymizer launched! on: February 21, 2014, 08:27:55 PM
yeah don't publish the code, hazard is a fucking douchebag who will steal your work. FYI Hazard is actually the creator of stablecoin he just hides behind his sock puppet account

I agree to not publish the source code. But please give them detail explanation of how it works. If there is a technical writers out there it would be helpful.

Mixing feature cannot be use for trading because there is no proof that you have send it. So what is the main purpose of mixing coin?

Laundering money i guess

By sending TIPS through Mixing does not violate any laws of any country so it cannot be called laundering. If there is no law to kill other people then it is not Murder.

Edit: Mixing did not work?

http://chain.fedoraco.in/block/7ba7d05c4443e372ded87fb6fa5e566e020b203129aa03bc8d266f5d34c1220b

I can see my address sending to ETiPMiXRLDvEifQgFLjG4Dp44epvP2ja96

There is nothing of mixing feature implemented yet, just info command and a checkbox which does nothing https://bitcointalk.org/index.php?topic=471660.msg5215753#msg5215753

 I suppose invisibel should to give a good explanation for why he said mixing is working when it is not. It is fully deceptive by invisibel part.



Nice trolling.
As far as I know the feature is implemented, the code is just not released.

Retardée, it is shown into blockchain that it is not doing mixing, laundry or whatever.

This poor guy sent  10000685.379729 from Ef1iTBw3sceL1FmcN1AT1be2QRCEFeozk8 to ERRGDnouHgZCGYnahkX6fyEhRKK1LKBp6H with "anonymi" check, with the aim of an true anonymous tx.

If you have got functional eyes and a medium size brain of standard chimp, you can see that coins are sent directly from "from" address Ef1iTBw3sceL1FmcN1AT1be2QRCEFeozk8  to "to" address ERRGDnouHgZCGYnahkX6fyEhRKK1LKBp6H ; no mixing is done at all.

http://chain.fedoraco.in/tx/26f66790cd8fb01690ac72493008d5467baf0719456d319ac8ebb798df8025d7

Simply this feature does not exist yet, invisibel just ribbed us.
8  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] TiPS ★ Kimotos Gravity Well ★ Coin anonymizer launched! on: February 21, 2014, 07:31:15 PM
yeah don't publish the code, hazard is a fucking douchebag who will steal your work. FYI Hazard is actually the creator of stablecoin he just hides behind his sock puppet account

I agree to not publish the source code. But please give them detail explanation of how it works. If there is a technical writers out there it would be helpful.

Mixing feature cannot be use for trading because there is no proof that you have send it. So what is the main purpose of mixing coin?

Laundering money i guess

By sending TIPS through Mixing does not violate any laws of any country so it cannot be called laundering. If there is no law to kill other people then it is not Murder.

Edit: Mixing did not work?

http://chain.fedoraco.in/block/7ba7d05c4443e372ded87fb6fa5e566e020b203129aa03bc8d266f5d34c1220b

I can see my address sending to ETiPMiXRLDvEifQgFLjG4Dp44epvP2ja96

There is nothing of mixing feature implemented yet, just info command and a checkbox which does nothing https://bitcointalk.org/index.php?topic=471660.msg5215753#msg5215753

 I suppose invisibel should to give a good explanation for why he said mixing is working when it is not. It is fully deceptive by invisibel part.

9  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [WORLD FIRST] TiPS - built-in coin mixing/anonymity service just launched! on: February 18, 2014, 10:17:03 AM
uhmmmmm ..

I have checkout the source and I have not found any sign of properly mixing . It seems like if just the command info had been implemented  Huh
 
Code:
Value sendtoaddress(const Array& params, const CRPCContext& ctx, bool fHelp)
{    if (fHelp || params.size() < 2 || params.size() > 4)
        throw runtime_error(
            "sendtoaddress <fedoracoinaddress>[:mixed] <amount> [comment] [comment-to]\n"
            "<amount> is a real and is rounded to the nearest 0.00000001\n"
            "coins can be mixed by appending :mixed to the destination address, which will conceal the address you sent them from."
            + HelpRequiringPassphrase(ctx));

    string strAddress = params[0].get_str();
    size_t iSeperator = strAddress.find_last_of(":");
  bool bMixCoins = false;
    if (iSeperator != std::string::npos)
    {
        string action = strAddress.substr(iSeperator+1);
        strAddress = strAddress.substr(0, iSeperator);
        bMixCoins = boost::iequals(action, "mixed");
    }

    CBitcoinAddress address(strAddress);
    if (!address.IsValid())
        throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Invalid FedoraCoin address");

    // Amount
    uint64 nAmount = AmountFromValue(params[1]);

    // Wallet comments
    CWalletTx wtx;
    if (params.size() > 2 && params[2].type() != null_type && !params[2].get_str().empty())
        wtx.mapValue["comment"] = params[2].get_str();
    if (params.size() > 3 && params[3].type() != null_type && !params[3].get_str().empty())
        wtx.mapValue["to"]      = params[3].get_str();

    if (ctx.wallet->IsLocked())
        throw JSONRPCError(RPC_WALLET_UNLOCK_NEEDED, "Error: Please enter the wallet passphrase with walletpassphrase first.");

    string strError = ctx.wallet->SendMoneyToDestination(address.Get(), nAmount, wtx, bMixCoins);
    if (strError != "")
        throw JSONRPCError(RPC_WALLET_ERROR, strError);

    return wtx.GetHash().GetHex();
}


Lines 598-638 https://github.com/fedoracoin/fedoracoin/blob/master/src/rpcwallet.cpp#L598-L638


If you analize the code, it checks the trailing mixing param, updates  bMixCoins ... and that is all  Roll Eyes

It is the same case for all RPC methods, it seems like an mimic stub which displays param info, but lacks of implementation. I suppose it need more work.

REally the system not does implement any mixing feature yet.

10  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] TiPS ★ Kimotos Gravity Well ★ Coin anonymizer launched! on: February 18, 2014, 07:39:40 AM
so... the price didn't go up...



Mixing system is too absurd and complex to use . People are waiting price go up, not complex node settings , users and related stuff. Because of failed launch , the most probable is a severe correction ... (2.5 b there out, recall)

You do not understand the significance of the coin mixer? In that case you are in the wrong coin. If you are trying to day trade tips, forget it. The profits are in the long term potential. When I say long term, I mean weeks / months. But hoping for big profits in hours / days? Good luck with your investment strategy!

Sorry if my words have been misunderstood. I think dev iniciative is valuable, but I think there will not  be price correlation  because most of people are not interested in settings, nodes, users and really they don't mind this feature. It is simple to understand. Besides, there is 2.5 b there out robbed by an scamer (I nerver told he was invisibal or artos) , so it is clear price will not go up.

GTFO already. You are getting boring. Like seriously. I am tired of all those false accusations and constant flow of diarrhoea escaping your mouth. Just leave. NOW. And stop this shitfest.

2.5 bil was explained already, and has nothing to do with anything.

Fedora is to remain strong and stable- not yours -not even daily, but hourly- trading pumping gazillion percent and then dumping at the expense of other users coin.
The fact that price didn't change means without a doubt, that FedoraCoin is not another scam.
That's it, swallow this big pill and shut the f*** up.

relax, please.

I never told about invisibel was an scamer. I just did publicly denounce that it was substracted 2.5 b from an address which begins to mine from block #81. It is perfectly verifiable into the blockchain, i am supported by blockchain in this case. Because of invisibal said that the amount was scammed in 4chan, I belive in his honesty. It is a pefect explanation. Sorry if  my words were misunderstanding.
11  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] TiPS ★ Kimotos Gravity Well ★ Coin anonymizer launched! on: February 18, 2014, 06:36:37 AM
so... the price didn't go up...



Mixing system is too absurd and complex to use . People are waiting price go up, not complex node settings , users and related stuff. Because of failed launch , the most probable is a severe correction ... (2.5 b there out, recall)

You do not understand the significance of the coin mixer? In that case you are in the wrong coin. If you are trying to day trade tips, forget it. The profits are in the long term potential. When I say long term, I mean weeks / months. But hoping for big profits in hours / days? Good luck with your investment strategy!

Sorry if my words have been misunderstood. I think dev iniciative is valuable, but I think there will not  be price correlation  because most of people are not interested in settings, nodes, users and really they don't mind this feature. It is simple to understand. Besides, there is 2.5 b there out robbed by an scamer (I nerver told he was invisibal or artos) , so it is clear price will not go up.
12  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] TiPS ★ Kimotos Gravity Well ★ Coin anonymizer launched! on: February 18, 2014, 06:21:09 AM
so... the price didn't go up...



Mixing system is too absurd and complex to use . People are waiting price go up, not complex node settings , users and related stuff. Because of failed launch , the most probable is a severe correction ... (2.5 b there out, recall)
13  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [TIPS] FedoraCoin ★ Kimotos Gravity Well ★ Mixer launch tomorrow 9PM! on: February 16, 2014, 04:32:14 PM

hello invisable ...

whats the mixing service ?
It lets you send coins anonymously by using a trusted third party to send them through, I was hoping to launch it tonight but it looks like I might have to delay it yet another day, launching on a Sunday didn't really seem like a smart idea anyway imo


So, you are the creator but an "anonymous", the supposed ES955wEjq33sJyFrRrrkDfw6d4nGH11uxX   instaminer,  sent a message to 4chan. Nice story !!
I still don't understand what you're talking about, everybody on 4chan is anonymous by default, if you look in the post I linked you though it clearly says
Quote
https://github.com/invisibel/fedoracoin

the "anonymous" are you, it was just a polite formulation.

BTW, Good luck artos, ... sorry, invisbel Cheesy
14  Alternate cryptocurrencies / Announcements (Altcoins) / Re: TIPS - FedoraCoin♥Kimoto █ 2ND MOST PROFITABLE COIN █ COIN MIXER LAUNCH AT 9PM on: February 16, 2014, 04:19:26 PM
LOL ... but if you relased  coin  at December 22, 2013, 03:03:12 AM and block #81 with ES955wEjq33sJyFrRrrkDfw6d4nGH11uxX  is December 22, 2013, 02:20:51 AM , who belongs to the address=  Roll Eyes
It was released on bitcointalk at 03:03:12 AM, but it was posted on 4chan hours before that. Check the first post for "Original ANN".

"it was" posted ... Were not you the creator? ROTFL
I don't understand what you're talking about, just go to https://archive.installgentoo.net/g/thread/38958517#p38963394 and see for yourself. You should at least do some research before you try flaming.

So, you are the creator but an "anonymous", the supposed ES955wEjq33sJyFrRrrkDfw6d4nGH11uxX   instaminer,  sent a message to 4chan. Nice story !!
15  Alternate cryptocurrencies / Announcements (Altcoins) / Re: TIPS - FedoraCoin♥Kimoto █ 2ND MOST PROFITABLE COIN █ COIN MIXER LAUNCH AT 9PM on: February 16, 2014, 04:12:30 PM
LOL ... but if you relased  coin  at December 22, 2013, 03:03:12 AM and block #81 with ES955wEjq33sJyFrRrrkDfw6d4nGH11uxX  is December 22, 2013, 02:20:51 AM , who belongs to the address=  Roll Eyes
It was released on bitcointalk at 03:03:12 AM, but it was posted on 4chan hours before that. Check the first post for "Original ANN":
Quote
Anonymous Sun Dec 22 01:14:39 2013 No.38963394 [Report]
Quoted by: >>38963758 >>38964696

    >>38963172
    Code released
    https://github.com/invisibel/fedoracoin/
    Download 0.2 win32 daemon at
    https://mega.co.nz/#!kVFjhKJI!C1uEBl4kEcug3BBq-sv-8n9Qq94iNyqE88xkPvvU_Do

"it was" posted ... Were not you the creator? ROTFL
16  Alternate cryptocurrencies / Announcements (Altcoins) / Re: TIPS - FedoraCoin♥Kimoto █ 2ND MOST PROFITABLE COIN █ COIN MIXER LAUNCH AT 9PM on: February 16, 2014, 04:03:49 PM
All blocks from #81 to  #570 mined for same address ES955wEjq33sJyFrRrrkDfw6d4nGH11uxX

Take explorer and checkout by yourself http://chain.fedoraco.in/chain/FedoraCoin?hi=570&count=570


http://chain.fedoraco.in/block/f615ff8c089bd6571741ee8f0c7624520d3f88d55f8119ff37cc2697e9c24b77
http://chain.fedoraco.in/block/6000fb4b6406c98729aaf142dfeed3da4324f641a5dfa2eeca2c6f7e722fc0e4
http://chain.fedoraco.in/block/2e09b679abec67d67fa11da0cb0e09ba4fae6544c7aa6361b74f9d741052ae96
http://chain.fedoraco.in/block/cba49edfc2dc96ae56bd75fdbecf52d246fbc18be89e09063744e02211c2a36a
http://chain.fedoraco.in/block/ba7157be4015ac3287f7ea47a6088809ed0dd379ba9decc33daa11db86affc24
http://chain.fedoraco.in/block/793d5ad54c1afe81533d288957fe3a26a1e97ed4ceedfc6d035c5354323f317d
http://chain.fedoraco.in/block/5a375001c82f61feedce5acefda8ed2f6494ddbf5cedf861fda4794e21d55567
http://chain.fedoraco.in/block/becb193e05053c11b386fa093faf741563a593a485321b08358e5e2818126a41
http://chain.fedoraco.in/block/c2cf127450bf4a6840c53bcb3e3e50f88f762108f7c646746c8ccc60c7237b76
http://chain.fedoraco.in/block/6bfc1b8a398add2ee6c45c079031cfad08df0d7ac2907d90fd73902a90fa8b97
http://chain.fedoraco.in/block/51ebcee4d78f39f4274efd8c4849f46cdf98595e90540b32b3648a884aef0642
http://chain.fedoraco.in/block/5139ce2e949be189a64c47ce5c2810fc2ab59a795b401ba6387f68789641b2e2
http://chain.fedoraco.in/block/e998b7a19b11767b0a148be433d5a2d8a5640daeeff3143244545fc003128b7c
http://chain.fedoraco.in/block/a257acfcc615c26c6816b8faf81ec6b37b753abb34aac51aa800200a9a018cbb

SCAM WARNING
PREMINE >  2.5 BILLIONS COINS
All blocks #81 - #570
mined by same address ES955wEjq33sJyFrRrrkDfw6d4nGH11uxX
Block #81 time - 2013-12-22 02:20:51
Block #570 time - 2013-12-22 12:48:49
Release date - December 22, 2013, 03:03:12 AM (see https://bitcointalk.org/index.php?topic=380466.0)
How could it be a premine if it was released on here not even an hour after block #81?
Actually, block #125 came around the same time it was released, are you trying to say that the 445 blocks after - which came after it was released here - are part of a premine? How do you premine if its released? It must take a pretty unique set of skills to pull that off..


but ... you are not the creator ...Why are you defending to the instaminer creator?  You are been caught !!!!!


BTW, it is relatevely easy to see INPUT transactions of ES955wEjq33sJyFrRrrkDfw6d4nGH11uxX was 2548044097.4609 TIP, evaded later.

It matches with massively premined of address ES955wEjq33sJyFrRrrkDfw6d4nGH11uxX  in blocks #81 - #570

http://chain.fedoraco.in/chain/FedoraCoin?count=570&hi=570



S C A M    A L E R T !!!!!!

But I am the creator though, good job proving how clueless you are.

 Grin

Then ES955wEjq33sJyFrRrrkDfw6d4nGH11uxX address is yours and you denied it above ...  Roll Eyes


The only premine I did was when I tested to make sure it all worked, which was maybe the first 3 blocks. I'm not even sure if it was the first 3 blocks since I had someone else test with me and mine at the same time, so maybe they own a few blocks from that 3.

Edit: just a reminder guys, I made FedoraCoin in the days (day? maybe a week?) before CoinGen first appeared, I had no idea if it would work and I wasn't sure about how to use testnet, so I mined blocks on the main net instead. I only counted 3 blocks mined before I released it on 4chan, so I only count those blocks as a premine.

To reiterate: ES955wEjq33sJyFrRrrkDfw6d4nGH11uxX is not owned by me


Please, explain why ES955wEjq33sJyFrRrrkDfw6d4nGH11uxX  is premined massively here: (just rethorical request Wink)

http://chain.fedoraco.in/chain/FedoraCoin?hi=500&count=500

Any proof that it's mine? I wish it was, because then I wouldn't have to beg for donations to the mixer.

If you're actually concerned about a premine it's fine to talk about it, but screaming "PREMINE SCAM SHITCOIN TRASH!" and not listening to anybody isn't going to get us anywhere.

LOL ... but if you relased  coin  at December 22, 2013, 03:03:12 AM and block #81 with ES955wEjq33sJyFrRrrkDfw6d4nGH11uxX  is December 22, 2013, 02:20:51 AM , who belongs to the address?   Roll Eyes

It's yours,  great piece of liar
17  Alternate cryptocurrencies / Announcements (Altcoins) / Re: TIPS - FedoraCoin♥Kimoto █ 2ND MOST PROFITABLE COIN █ COIN MIXER LAUNCH AT 9PM on: February 16, 2014, 03:54:52 PM
All blocks from #81 to  #570 mined for same address ES955wEjq33sJyFrRrrkDfw6d4nGH11uxX

Take explorer and checkout by yourself http://chain.fedoraco.in/chain/FedoraCoin?hi=570&count=570


http://chain.fedoraco.in/block/f615ff8c089bd6571741ee8f0c7624520d3f88d55f8119ff37cc2697e9c24b77
http://chain.fedoraco.in/block/6000fb4b6406c98729aaf142dfeed3da4324f641a5dfa2eeca2c6f7e722fc0e4
http://chain.fedoraco.in/block/2e09b679abec67d67fa11da0cb0e09ba4fae6544c7aa6361b74f9d741052ae96
http://chain.fedoraco.in/block/cba49edfc2dc96ae56bd75fdbecf52d246fbc18be89e09063744e02211c2a36a
http://chain.fedoraco.in/block/ba7157be4015ac3287f7ea47a6088809ed0dd379ba9decc33daa11db86affc24
http://chain.fedoraco.in/block/793d5ad54c1afe81533d288957fe3a26a1e97ed4ceedfc6d035c5354323f317d
http://chain.fedoraco.in/block/5a375001c82f61feedce5acefda8ed2f6494ddbf5cedf861fda4794e21d55567
http://chain.fedoraco.in/block/becb193e05053c11b386fa093faf741563a593a485321b08358e5e2818126a41
http://chain.fedoraco.in/block/c2cf127450bf4a6840c53bcb3e3e50f88f762108f7c646746c8ccc60c7237b76
http://chain.fedoraco.in/block/6bfc1b8a398add2ee6c45c079031cfad08df0d7ac2907d90fd73902a90fa8b97
http://chain.fedoraco.in/block/51ebcee4d78f39f4274efd8c4849f46cdf98595e90540b32b3648a884aef0642
http://chain.fedoraco.in/block/5139ce2e949be189a64c47ce5c2810fc2ab59a795b401ba6387f68789641b2e2
http://chain.fedoraco.in/block/e998b7a19b11767b0a148be433d5a2d8a5640daeeff3143244545fc003128b7c
http://chain.fedoraco.in/block/a257acfcc615c26c6816b8faf81ec6b37b753abb34aac51aa800200a9a018cbb

SCAM WARNING
PREMINE >  2.5 BILLIONS COINS
All blocks #81 - #570
mined by same address ES955wEjq33sJyFrRrrkDfw6d4nGH11uxX
Block #81 time - 2013-12-22 02:20:51
Block #570 time - 2013-12-22 12:48:49
Release date - December 22, 2013, 03:03:12 AM (see https://bitcointalk.org/index.php?topic=380466.0)
How could it be a premine if it was released on here not even an hour after block #81?
Actually, block #125 came around the same time it was released, are you trying to say that the 445 blocks after - which came after it was released here - are part of a premine? How do you premine if its released? It must take a pretty unique set of skills to pull that off..


but ... you are not the creator ...Why are you defending to the instaminer creator?  You are been caught !!!!!


BTW, it is relatevely easy to see INPUT transactions of ES955wEjq33sJyFrRrrkDfw6d4nGH11uxX was 2548044097.4609 TIP, evaded later.

It matches with massively premined of address ES955wEjq33sJyFrRrrkDfw6d4nGH11uxX  in blocks #81 - #570

http://chain.fedoraco.in/chain/FedoraCoin?count=570&hi=570



S C A M    A L E R T !!!!!!

But I am the creator though, good job proving how clueless you are.

 Grin

Then ES955wEjq33sJyFrRrrkDfw6d4nGH11uxX address is yours and you denied it above ...  Roll Eyes
And the 3 testing blocks story  ...  Cheesy

The only premine I did was when I tested to make sure it all worked, which was maybe the first 3 blocks. I'm not even sure if it was the first 3 blocks since I had someone else test with me and mine at the same time, so maybe they own a few blocks from that 3.

Edit: just a reminder guys, I made FedoraCoin in the days (day? maybe a week?) before CoinGen first appeared, I had no idea if it would work and I wasn't sure about how to use testnet, so I mined blocks on the main net instead. I only counted 3 blocks mined before I released it on 4chan, so I only count those blocks as a premine.

To reiterate: ES955wEjq33sJyFrRrrkDfw6d4nGH11uxX is not owned by me


Please, explain why ES955wEjq33sJyFrRrrkDfw6d4nGH11uxX  is premined massively here: (just rethorical request Wink)

http://chain.fedoraco.in/chain/FedoraCoin?hi=500&count=500
18  Alternate cryptocurrencies / Announcements (Altcoins) / Re: TIPS - FedoraCoin♥Kimoto █ 2ND MOST PROFITABLE COIN █ COIN MIXER LAUNCH AT 9PM on: February 16, 2014, 03:32:42 PM
All blocks from #81 to  #570 mined for same address ES955wEjq33sJyFrRrrkDfw6d4nGH11uxX

Take explorer and checkout by yourself http://chain.fedoraco.in/chain/FedoraCoin?hi=500&count=500


http://chain.fedoraco.in/block/f615ff8c089bd6571741ee8f0c7624520d3f88d55f8119ff37cc2697e9c24b77
http://chain.fedoraco.in/block/6000fb4b6406c98729aaf142dfeed3da4324f641a5dfa2eeca2c6f7e722fc0e4
http://chain.fedoraco.in/block/2e09b679abec67d67fa11da0cb0e09ba4fae6544c7aa6361b74f9d741052ae96
http://chain.fedoraco.in/block/cba49edfc2dc96ae56bd75fdbecf52d246fbc18be89e09063744e02211c2a36a
http://chain.fedoraco.in/block/ba7157be4015ac3287f7ea47a6088809ed0dd379ba9decc33daa11db86affc24
http://chain.fedoraco.in/block/793d5ad54c1afe81533d288957fe3a26a1e97ed4ceedfc6d035c5354323f317d
http://chain.fedoraco.in/block/5a375001c82f61feedce5acefda8ed2f6494ddbf5cedf861fda4794e21d55567
http://chain.fedoraco.in/block/becb193e05053c11b386fa093faf741563a593a485321b08358e5e2818126a41
http://chain.fedoraco.in/block/c2cf127450bf4a6840c53bcb3e3e50f88f762108f7c646746c8ccc60c7237b76
http://chain.fedoraco.in/block/6bfc1b8a398add2ee6c45c079031cfad08df0d7ac2907d90fd73902a90fa8b97
http://chain.fedoraco.in/block/51ebcee4d78f39f4274efd8c4849f46cdf98595e90540b32b3648a884aef0642
http://chain.fedoraco.in/block/5139ce2e949be189a64c47ce5c2810fc2ab59a795b401ba6387f68789641b2e2
http://chain.fedoraco.in/block/e998b7a19b11767b0a148be433d5a2d8a5640daeeff3143244545fc003128b7c
http://chain.fedoraco.in/block/a257acfcc615c26c6816b8faf81ec6b37b753abb34aac51aa800200a9a018cbb

SCAM WARNING
PREMINE >  2.5 BILLIONS COINS
All blocks #81 - #570
mined by same address ES955wEjq33sJyFrRrrkDfw6d4nGH11uxX
Block #81 time - 2013-12-22 02:20:51
Block #570 time - 2013-12-22 12:48:49
Release date - December 22, 2013, 03:03:12 AM (see https://bitcointalk.org/index.php?topic=380466.0)
How could it be a premine if it was released on here not even an hour after block #81?
Actually, block #125 came around the same time it was released, are you trying to say that the 445 blocks after - which came after it was released here - are part of a premine? How do you premine if its released? It must take a pretty unique set of skills to pull that off..


but ... you are not the creator ...Why are you defending to the instaminer creator?  You are been caught !!!!!


BTW, it is relatevely easy to see INPUT transactions of ES955wEjq33sJyFrRrrkDfw6d4nGH11uxX was 2548044097.4609 TIP, evaded later.

It matches with massively premined of address ES955wEjq33sJyFrRrrkDfw6d4nGH11uxX  in blocks #81 - #570

http://chain.fedoraco.in/chain/FedoraCoin?count=570&hi=570



S C A M    A L E R T !!!!!!
19  Alternate cryptocurrencies / Announcements (Altcoins) / Re: TIPS - FedoraCoin♥Kimoto █ 2ND MOST PROFITABLE COIN █ COIN MIXER LAUNCH AT 9PM on: February 16, 2014, 02:18:01 PM
SCAM WARNING

PREMINE >  2.5 BILLIONS COINS

blocks #81 - #570

Address ES955wEjq33sJyFrRrrkDfw6d4nGH11uxX

S C A M




Address ES955wEjq33sJyFrRrrkDfw6d4nGH11uxX


Balance: 0 TIPS
Transactions in: 1001
Received: 2548044097.4609 TIPS
Transactions out: 1001
Sent: 2548044097.4609 TIPS[
/b]







what is the truth behind this??? is it credible or just FUD?  how could 1 person  mine blocks 81 - 570 on his own?

where is the block explorer for this coin?

All blocks from #81 to  #570 mined for same address ES955wEjq33sJyFrRrrkDfw6d4nGH11uxX

Take explorer and checkout by yourself http://chain.fedoraco.in/chain/FedoraCoin?hi=570&count=570


http://chain.fedoraco.in/block/f615ff8c089bd6571741ee8f0c7624520d3f88d55f8119ff37cc2697e9c24b77
http://chain.fedoraco.in/block/6000fb4b6406c98729aaf142dfeed3da4324f641a5dfa2eeca2c6f7e722fc0e4
http://chain.fedoraco.in/block/2e09b679abec67d67fa11da0cb0e09ba4fae6544c7aa6361b74f9d741052ae96
http://chain.fedoraco.in/block/cba49edfc2dc96ae56bd75fdbecf52d246fbc18be89e09063744e02211c2a36a
http://chain.fedoraco.in/block/ba7157be4015ac3287f7ea47a6088809ed0dd379ba9decc33daa11db86affc24
http://chain.fedoraco.in/block/793d5ad54c1afe81533d288957fe3a26a1e97ed4ceedfc6d035c5354323f317d
http://chain.fedoraco.in/block/5a375001c82f61feedce5acefda8ed2f6494ddbf5cedf861fda4794e21d55567
http://chain.fedoraco.in/block/becb193e05053c11b386fa093faf741563a593a485321b08358e5e2818126a41
http://chain.fedoraco.in/block/c2cf127450bf4a6840c53bcb3e3e50f88f762108f7c646746c8ccc60c7237b76
http://chain.fedoraco.in/block/6bfc1b8a398add2ee6c45c079031cfad08df0d7ac2907d90fd73902a90fa8b97
http://chain.fedoraco.in/block/51ebcee4d78f39f4274efd8c4849f46cdf98595e90540b32b3648a884aef0642
http://chain.fedoraco.in/block/5139ce2e949be189a64c47ce5c2810fc2ab59a795b401ba6387f68789641b2e2
http://chain.fedoraco.in/block/e998b7a19b11767b0a148be433d5a2d8a5640daeeff3143244545fc003128b7c
http://chain.fedoraco.in/block/a257acfcc615c26c6816b8faf81ec6b37b753abb34aac51aa800200a9a018cbb

SCAM WARNING
PREMINE >  2.5 BILLIONS COINS
All blocks #81 - #570
mined by same address ES955wEjq33sJyFrRrrkDfw6d4nGH11uxX


20  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [BTQ] BitQuark | Super secure hashing | CPU mining on: February 15, 2014, 11:41:03 PM
nice coin  added Smiley
Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!