Pages:
Author

Topic: [ANN] [WORLD FIRST] TiPS - built-in coin mixing/anonymity service just launched! (Read 16267 times)

hero member
Activity: 597
Merit: 500
FedoraCoin NOMP MULTI POOL

http://pscrypt.for-biz.su:8080/getting_started

Ports:
x004 - vardif 4-8192
x008 - diff 8
x016 - diff 16
x032 - diff 32
x064 - diff 64
x128 - diff 128
x256 - diff 256
x512 - diff 512
x024 - diff 1024
x048 - diff 2048
etc. See coins profile.
Coins profitable - http://mining.for-biz.su/#begin
Exchange - https://www.cryptsy.com/markets/view/tips_ltc

Welcome!!!
You might want to post that in the main thread over at https://bitcointalk.org/index.php?topic=552233.1280 so people will see it.
hero member
Activity: 623
Merit: 500

TiPS is alive and kicking, new ideas, new roadmap, new spirit! Success is waiting, rejoin and help us make it!
sr. member
Activity: 277
Merit: 250

Haha, one of many dead coins.
The altcoin cemetery is so full.


lol many ,but not this one !  Kiss
legendary
Activity: 2142
Merit: 1125
Haha, one of many dead coins.
The altcoin cemetery is so full.
We're trudging on. This is not the main thread.

Alright then.
hero member
Activity: 597
Merit: 500

Haha, one of many dead coins.
The altcoin cemetery is so full.

We're trudging on. This is not the main thread.
sr. member
Activity: 448
Merit: 250

Haha, one of many dead coins.
The altcoin cemetery is so full.


There's still room for plenty more. It's fun to watch how they all evolve over time from iteration to iteration.
legendary
Activity: 2142
Merit: 1125
 
Haha, one of many dead coins.
The altcoin cemetery is so full.
member
Activity: 131
Merit: 10
What happened to the Mixing Nodes? Are there instructions on how to set up one, or several?
member
Activity: 112
Merit: 10
Cryptocurrencies Exchange
Ummm.... why is it in altcoins, not at services ? Well never mind Wink
I like the idea, 2% on each transaction might make it profitable for server owner, although I wonder if Bob wife wound't worry that her husband is using such services. I'm not entire sure but if I get it right, I can hide traces of my money flow but i can't hide fact that there are TiPS at beginning. Well still i like the idea of creating new kind of services. It makes this meta-industry much more interesting and definitely flexible. TiPS might be even only reason why someone would use meta-currencies.

Oh, and I'm afraid Bob would use TiPS to spend money on different... services Wink .
newbie
Activity: 4
Merit: 0
awesome, very promising
hero member
Activity: 597
Merit: 500
OSX 0.60 has been released. Please find the download links here till Invisibel updates the site.
sr. member
Activity: 246
Merit: 250
The RPC web wallet element will be explained in the next update, its part of more innovative ideas coming to Fedoracoin soon  Wink
sr. member
Activity: 406
Merit: 250
Hello! Send me a message.
What is the purpose of this: RPC user system, become your own web wallet!?
full member
Activity: 182
Merit: 100
Has launched? Smiley Cry

YUP, 12hrs, 35min ago.
Wallet prompted to update to 8 weeks ago?? It started???

Right now I do not understand what you actually wrote man.
full member
Activity: 238
Merit: 100
Best news or best news?
newbie
Activity: 26
Merit: 0
full member
Activity: 182
Merit: 100
And we all thank johnnycoiner for this whole new trollworthy topic  Wink

He should probably just go back to his pumps.
And first of all, he should stop trolling from his primary school's computer.
legendary
Activity: 2142
Merit: 1125

I have a serious question. Maybe it has been answered but I can't find an answer.

Does TiPS (Fedora?) need to be Proof-of-Work in order for the mixing service to work ?

Thanks in advance.
full member
Activity: 182
Merit: 100
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 [:mixed] [comment] [comment-to]\n"
            " 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.



Mixing code was not released. It is not open source (yet).
Pages:
Jump to: