Bitcoin Forum
May 25, 2024, 11:52:54 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 [2] 3 »  All
  Print  
Author Topic: [ANN] [WORLD FIRST] TiPS - built-in coin mixing/anonymity service just launched!  (Read 16260 times)
hamiltino
Hero Member
*****
Offline Offline

Activity: 644
Merit: 500


P2P The Planet!


View Profile
February 18, 2014, 02:45:39 AM
 #21

2% is way to much for coin mixing.

stacking coin
srs2xcvbnm
Full Member
***
Offline Offline

Activity: 182
Merit: 100


View Profile
February 18, 2014, 06:53:02 AM
 #22

2% is way to much for coin mixing.

2% for using world's first mixing service that give you 100% anonymity and endless freedom when spending your coins,
or doing as you wish with them.

"Much" you say? Well usually this kind of service with fiat currencies is quite a shady business, and usually
fee ranges between 50-80%. Looks like you only spend on ice cream and aroma candles and towels. Good citizen.

If you liked my post or I helped- TIP me: ESqXdNgD4MX6zPxZHFNZZjewFSbUzgy3Do
pechak
Member
**
Offline Offline

Activity: 97
Merit: 10


View Profile
February 18, 2014, 06:56:16 AM
 #23

Comparing to Darkcoin anonymous technology, what is the difference between the two?
BitcoinSteve
Member
**
Offline Offline

Activity: 112
Merit: 10


View Profile
February 18, 2014, 07:17:51 AM
 #24

TIPS thats it, the fedora got lost, admit, accept, GROW!!!!

DRK: XtijFQdCcPpKXmtjKF4xdpy6vCvJTymfzw

BTC: 1LbPHiUfegA3Xjfg4YJkJqLNpaRWDcRPay
bigc1984
Hero Member
*****
Offline Offline

Activity: 658
Merit: 534


View Profile
February 18, 2014, 07:20:30 AM
 #25

TIPS thats it, the fedora got lost, admit, accept, GROW!!!!

WoW... Tips just KILLED it. This feature just made TIPS a top coin.
xtreme1280
Newbie
*
Offline Offline

Activity: 33
Merit: 0


View Profile
February 18, 2014, 07:28:10 AM
 #26

This is great news, keep up the good work.
Ceday
Newbie
*
Offline Offline

Activity: 19
Merit: 0


View Profile
February 18, 2014, 08:47:56 AM
 #27

This is great! Lookin good  Smiley
Fargusson
Sr. Member
****
Offline Offline

Activity: 392
Merit: 250

Mummy! I've got a domain name now! fargusson.eth


View Profile
February 18, 2014, 09:07:16 AM
 #28

Start spreading the news

I'm leaving today

I wanna be a part of it

New TIIIIIPS
643399
Newbie
*
Offline Offline

Activity: 26
Merit: 0


View Profile
February 18, 2014, 09:36:01 AM
 #29

Has launched? Smiley Cry
srs2xcvbnm
Full Member
***
Offline Offline

Activity: 182
Merit: 100


View Profile
February 18, 2014, 09:40:58 AM
 #30

Has launched? Smiley Cry

YUP, 12hrs, 35min ago.

If you liked my post or I helped- TIP me: ESqXdNgD4MX6zPxZHFNZZjewFSbUzgy3Do
johnnycoiner
Newbie
*
Offline Offline

Activity: 20
Merit: 0


View Profile
February 18, 2014, 10:17:03 AM
 #31

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.

Fargusson
Sr. Member
****
Offline Offline

Activity: 392
Merit: 250

Mummy! I've got a domain name now! fargusson.eth


View Profile
February 18, 2014, 10:32:42 AM
 #32

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.



And we all thank johnnycoiner for this whole new trollworthy topic  Wink
srs2xcvbnm
Full Member
***
Offline Offline

Activity: 182
Merit: 100


View Profile
February 18, 2014, 10:33:16 AM
 #33

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.



Mixing code was not released. It is not open source (yet).

If you liked my post or I helped- TIP me: ESqXdNgD4MX6zPxZHFNZZjewFSbUzgy3Do
superresistant
Legendary
*
Offline Offline

Activity: 2142
Merit: 1125



View Profile
February 18, 2014, 10:35:07 AM
 #34


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.
srs2xcvbnm
Full Member
***
Offline Offline

Activity: 182
Merit: 100


View Profile
February 18, 2014, 10:35:32 AM
 #35

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.

If you liked my post or I helped- TIP me: ESqXdNgD4MX6zPxZHFNZZjewFSbUzgy3Do
643399
Newbie
*
Offline Offline

Activity: 26
Merit: 0


View Profile
February 18, 2014, 11:12:15 AM
 #36

Has launched? Smiley Cry

YUP, 12hrs, 35min ago.
Wallet prompted to update to 8 weeks ago?? It started???
fraggyb
Full Member
***
Offline Offline

Activity: 238
Merit: 100



View Profile
February 18, 2014, 11:45:17 AM
 #37

Best news or best news?
srs2xcvbnm
Full Member
***
Offline Offline

Activity: 182
Merit: 100


View Profile
February 18, 2014, 11:49:12 AM
 #38

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.

If you liked my post or I helped- TIP me: ESqXdNgD4MX6zPxZHFNZZjewFSbUzgy3Do
blueangel01
Sr. Member
****
Offline Offline

Activity: 406
Merit: 250

Hello! Send me a message.


View Profile
February 18, 2014, 03:22:48 PM
 #39

What is the purpose of this: RPC user system, become your own web wallet!?

Msg me if you want me to put anything here.
r-ando
Sr. Member
****
Offline Offline

Activity: 246
Merit: 250


View Profile
February 18, 2014, 04:08:53 PM
 #40

The RPC web wallet element will be explained in the next update, its part of more innovative ideas coming to Fedoracoin soon  Wink

Every moment is like a falling leaf. Seize the moments within the moment.
Pages: « 1 [2] 3 »  All
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!