Bitcoin Forum

Alternate cryptocurrencies => Announcements (Altcoins) => Topic started by: invisibel on February 17, 2014, 09:12:15 PM



Title: [ANN] [WORLD FIRST] TiPS - built-in coin mixing/anonymity service just launched!
Post by: invisibel on February 17, 2014, 09:12:15 PM
We're happy to announce that the TiPS mixing service is now available!

https://i.imgur.com/IkJqDjM.png
What's this?
Our unique mixing service allows you to send coins through a third party and hide all trace of them originating from you by using a simple checkbox on the client. Your coins are sent (with data encrypted) to a mixer node chosen by random, which sends the coins along after a certain length of time. This makes the transaction recorded on the blockchain appear only as a transaction to the mixer address with no indication of where they were headed.

Transactions are sent to a mixing service owned by a member of the TIPS community at random, which ensures that no centralized service could reveal the origins of transactions that are mixed.

Mixed transactions charge an additional 2% on top of the value of the transaction to give help nodes out and give mixing node operatives an incentive for running a node (this fee may be changed at any time). For now the fee is global across all mixing nodes but future updates may allow mixing node operators to change the fee as they wish.

What makes it secure?
Since your coins are sent encrypted to a third party the only people who can match the dots are you and the mixing service operator. Our mixing node software is built to ensure that once your transaction is sent the relevant decrypted data is destroyed.

Mixing nodes operating with us will also be checked regularly to ensure they comply with our privacy and safety standards, such as requiring all communication over Tor to help conceal the mixing services location and completely pruning all data, and changing address every 3 months.

To make new mixing nodes known we use mixer announcements, a new feature added to propagate the nodes information through the network. Essentially they're just a copy of the original Bitcoin alerts system, but unlike alerts announcements are invisible to the user. When coins are mixed a mixing node is chosen at random from the known announcements to mix the coins.

After we accept a new mixer node an announcement will be created, signed and broadcast to the network to notify people of the new service. We centralize the management of nodes to ensure that bad services can be revoked and removed from use before any coins can be lost.

We're also looking into ways on how to fully decentralize it, if you have any knowledge in this area and want to help feel free to join us on IRC.

Why would I use it?
To give an example, Bob lives with his wife Alice and they both get paid TiPS monthly into a shared address.
Alice likes to keep tabs on Bob and regularly checks the blockchain to see where he's been sending money. But Bob is fine with this, because he uses the TiPS mixing service to conceal his transactions destinations. That way Alice will never know that Bob is the leader of a notorious tipping ring who regularly helps out the citizens of Reddit. Good thinking Bob.

Can I start up my own mixing node?
If you're known to the community as a trustworthy person and you have two spare servers located in different areas then yes you can. The guide on how to set it up still isn't available yet, but if you message tipsfedora on freenode I'll get back to you after it's finished.

Where can I download it?
Always make sure to backup your wallet before upgrading!

Windows: visit http://fedoracoin.net/
Mac OS X: soon
Linux: https://github.com/fedoracoin/fedoracoin
If you have problems with "No mixing nodes available" try going to help -> debug console and type in
Code:
addnode srv1.fedoracoin.net add
addnode srv1.fedoracoin.net onetry
addnode srv2.fedoracoin.net add
addnode srv2.fedoracoin.net onetry

Also note that building from source may now require you to run the following before you can compile:
Code:
cd fedoracoin/
chmod +x share/genbuild.sh
share/genbuild.sh src/build.h

If you have any questions feel free to ask either in this thread or on IRC (#TIPS on freenode)
0.60 Changelog:
Quote
* Built-in coin mixing/anonymizer service, to conceal transaction origins
    - Mixing services can be announced to the network and are chosen by clients at random
    - 2% fee is added on top of mixed transactions to help out and give incentive toward running mixing services
    - A guide to starting a mixing service is available below

* RPC user system, become your own web wallet!
    - Users can be added with the adduser command and passwords are changed with the passwd command
    - User wallets are stored separately to the main wallet
    - Passwords are hashed with a per-user salt to help strengthen them, their password is also used to encrypt their wallet ensuring only they have access to their coins.
    - The encryption password can be changed with the usual commands, affecting the users password
    - Users have restricted access to commands, only the main admin user can use them all (admin user is read from fedoracoin.conf when 0.60 is first run, rpcuser is later unneeded in the conf file afterward)
    - A full list of commands is available below

* Alert key changed, now you can get alerts near instantly after an important announcement
    - You can use the -alertnotify setting to execute scripts when alerts are received
    - New admin-only commands: createalert, signalert, sendalert - only useful with the alert private key.
    - Mixer announcements use the same system as alerts with seperate keypairs, also has a set of admin-only commands: createann, signann, sendann (again only useful with the private key) and listann

* JavaScript/AJAX access now enabled on the RPC server, allowing web frontends to connect to your wallet (if allowed), use a remote controller for your local wallet!
    - For an example of this set rpcuser and rpcpassword in your fedoracoin.conf file and also add daemon=1 and server=1 on seperate lines at the end
    - Run the QT wallet and after it's loaded visit http://fedoracoin.net/js-remote/, enter your rpc login there and make sure the url field is set to "http://localhost:22888/"
    - Alternatively you can create a user in the debug console (with the adduser <username> <password> command) and login using that users details
    - Wallet is directly connected between your browser and your local wallet, our servers aren't anywhere in between

* Changed coin denominations to thousands and millions
* Improved sync with updated checkpoints
* Code now builds with no warnings on Windows, very few on other OS's
* TestNet now enabled, you can test whatever changes you like on there
* 500 billion coin limit now forced thanks to the new getchainvalue command
* Splash screen made transparent

* New commands:
adduser <username> <password> (admin only) - adds new user
authuser <username> <password> (admin only) - tests user login
passwd <username> <password> (admin only) | passwd <password> (user only) - update users password
root (admin only) - displays root username
whoami - displays logged in username

createalert <too many args, see help> (admin only) - creates alert data and outputs hex data
signalert <alert hex data> <privatekey hex data> (admin only) - signs alert data with the private key and outputs hex data
sendalert <signed alert hex data> (admin only) - sends (correctly signed only!) alert to the network

createann <too many args, see help> (admin only) - creates announcement data and outputs hex data
signann <ann. hex data> <privatekey hex data> (admin only) - signs announcement data with the private key and outputs hex data
sendann <signed ann. hex data> (admin only) - sends (correctly signed only!) announcement to the network
listann (admin only) - lists mixing announcements in effect

getchainvalue [uptoblockidx] - outputs current chains total value up to given block idx

* Updated commands:
getinfo/getmininginfo - updated with admin-only info
sendtoaddress - add :mixed to end of destination address to send the coins through a mixer (will error if no mixing services available)
sendmany/sendfrom - add :mixed to end of source account to send the coins through a mixer (will error if no mixing services available)

* Admin only commands:
stop
getconnectioncount
getpeerinfo
addnode
getaddednodeinfo
generatekey
backupwallet
getgenerate
setgenerate
gethashespersec
getrawmempool
verifymessage
settxfee
setmininput
signrawtransaction
sendrawtransaction
gettxoutsetinfo
gettxout
verifychain
adduser
authuser
root
createalert
signalert
sendalert
createann
signann
sendann
listann
encryptwallet

That's not all though, be on the look out for another announcement from us soon ;)


Title: Re: [ANN] Built-in mixing service release! [TIPS] FedoraCoin
Post by: vir6 on February 17, 2014, 09:19:53 PM
Thank you, this is huge !


Title: Re: [ANN] Built-in mixing service release! [TIPS] FedoraCoin
Post by: juju on February 17, 2014, 09:22:11 PM
This looks fantastic! Thank-you for all the hardwork!!!  ;D

The ball is now in the communities court, as a community we need to help fill in the gap for the services we need to truly make this the awesome coin it is. (Paper Wallet, Android Wallet, etc.)


Title: UPGRADED POOL !
Post by: PCFiL on February 17, 2014, 09:37:18 PM
TIPS MINING POOL >> http://fedora.poolto.be (http://fedora.poolto.be)

use : stratum+tcp://fedora.poolto.be:4333

Join us on iRC: #poolto.be @ irc.freenode.net

http://webchat.freenode.net/?channels=%23poolto.be (http://webchat.freenode.net/?channels=%23poolto.be)

Pool UPGRADED TO 0.60 !

Happy Mining !  :)


Title: Re: [ANN] Built-in mixing service release! [TIPS] FedoraCoin
Post by: DarkVenu on February 17, 2014, 09:38:14 PM
Let's gooo  ;)


Title: Re: [ANN] Built-in mixing service release! [TIPS] FedoraCoin
Post by: invisibel on February 17, 2014, 09:41:39 PM
0.60 windows binaries are now up on http://fedoracoin.net/, sorry for the wait my upload speed is terrible :(

If you're having troubles with "No mixing nodes available" check the top post, and let me know how it goes!


Title: Re: [ANN] Built-in mixing service now launched! [TIPS] FedoraCoin
Post by: vir6 on February 17, 2014, 09:44:16 PM
Volume on cryptsy is going up !

https://i.imgur.com/zE3GYut.jpg


Title: Re: [ANN] Built-in mixing service release! [TIPS] FedoraCoin
Post by: DarkVenu on February 17, 2014, 09:57:26 PM
sorry for the wait my upload speed is terrible :(


have you italian adsl?
I understand your problem bro!


anyway, thank you a lot , good work  ;)


Title: Re: [ANN] Built-in mixing service now launched! [TIPS] FedoraCoin 0.60 Final
Post by: BitcoinSteve on February 17, 2014, 10:04:05 PM
new announcement name change?


Title: Re: [ANN] Built-in mixing service now launched! [TIPS] FedoraCoin 0.60 Final
Post by: srs2xcvbnm on February 17, 2014, 10:06:58 PM
Gentlemen, behold:

http://imageshack.com/a/img89/722/w92s.jpg


Title: Re: [ANN] Built-in mixing service now launched! [TIPS] FedoraCoin 0.60 Final
Post by: undeadbitcoiner on February 17, 2014, 10:09:18 PM
Thats good to see
But TIPS is still in same position,
I am loosing lots of LTC because of TIPS?
Why its not rising?


Title: Re: [ANN] Built-in mixing service now launched! [TIPS] FedoraCoin 0.60 Final
Post by: BitcoinSteve on February 17, 2014, 10:15:33 PM
Thats good to see
But TIPS is still in same position,
I am loosing lots of LTC because of TIPS?
Why its not rising?

will rise to .01 cents tomorrow!


Title: Re: [ANN] Built-in mixing service now launched! [TIPS] FedoraCoin 0.60 Final
Post by: srs2xcvbnm on February 17, 2014, 10:19:03 PM
Thats good to see
But TIPS is still in same position,
I am loosing lots of LTC because of TIPS?
Why its not rising?

will rise to .01 cents tomorrow!

DOGE dropped 0,00000200 since Fedora 0.60 launched (1 hr)


Title: Re: [ANN] TiPS - World first built-in coin mixing/anonymity service just launched!
Post by: srs2xcvbnm on February 17, 2014, 10:48:11 PM
http://imageshack.com/a/img853/3449/x2fw.jpg

we are launching fast!


Title: Re: [ANN] TiPS - World first built-in coin mixing/anonymity service just launched!
Post by: albertdros on February 17, 2014, 10:52:53 PM

what? if multipools is on it then it means it can NOT rise at all because multipools does not care about any features of the coin, just if its profitable. Implement KGW and this coin will skyrocket.


Title: Re: [ANN] TiPS - World first built-in coin mixing/anonymity service just launched!
Post by: srs2xcvbnm on February 17, 2014, 10:54:08 PM

what? if multipools is on it then it means it can NOT rise at all because multipools does not care about any features of the coin, just if its profitable. Implement KGW and this coin will skyrocket.

We have KGW bro.
Price is stable as rock, and huge community supports it.


Title: Re: [ANN] TiPS - World first built-in coin mixing/anonymity service just launched!
Post by: BitcoinSteve on February 17, 2014, 10:55:57 PM

what? if multipools is on it then it means it can NOT rise at all because multipools does not care about any features of the coin, just if its profitable. Implement KGW and this coin will skyrocket.

We have KGW bro.
Price is stable as rock, and huge community supports it.

PAST THE MOON!!!  TIPS ROCKS


Title: Re: [ANN] TiPS - World first built-in coin mixing/anonymity service just launched!
Post by: DanielVG on February 17, 2014, 10:57:50 PM
interesting concept, i'll check this out.


Title: Re: [ANN] TiPS - World first built-in coin mixing/anonymity service just launched!
Post by: withfedoraco.in on February 17, 2014, 11:14:36 PM
We're happy to report that w/ Fedoracoin supports accepting mixed coins!

Go to http://example.withfedoraco.in/ to check out the example app and to see for yourself.


Title: Re: [ANN] TiPS - World first built-in coin mixing/anonymity service just launched!
Post by: mcphervi on February 17, 2014, 11:20:52 PM
Nice job invisibel!! Beat darkcoin and everyone else to the punch - we need to get the word out!


Title: Re: [ANN] [WORLD FIRST] TiPS - built-in coin mixing/anonymity service just launched!
Post by: hamiltino on February 18, 2014, 02:45:39 AM
2% is way to much for coin mixing.


Title: Re: [ANN] [WORLD FIRST] TiPS - built-in coin mixing/anonymity service just launched!
Post by: srs2xcvbnm on February 18, 2014, 06:53:02 AM
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.


Title: Re: [ANN] [WORLD FIRST] TiPS - built-in coin mixing/anonymity service just launched!
Post by: pechak on February 18, 2014, 06:56:16 AM
Comparing to Darkcoin anonymous technology, what is the difference between the two?


Title: Re: [ANN] [WORLD FIRST] TiPS - built-in coin mixing/anonymity service just launched!
Post by: BitcoinSteve on February 18, 2014, 07:17:51 AM
TIPS thats it, the fedora got lost, admit, accept, GROW!!!!


Title: Re: [ANN] [WORLD FIRST] TiPS - built-in coin mixing/anonymity service just launched!
Post by: bigc1984 on February 18, 2014, 07:20:30 AM
TIPS thats it, the fedora got lost, admit, accept, GROW!!!!

WoW... Tips just KILLED it. This feature just made TIPS a top coin.


Title: Re: [ANN] [WORLD FIRST] TiPS - built-in coin mixing/anonymity service just launched!
Post by: xtreme1280 on February 18, 2014, 07:28:10 AM
This is great news, keep up the good work.


Title: Re: [ANN] [WORLD FIRST] TiPS - built-in coin mixing/anonymity service just launched!
Post by: Ceday on February 18, 2014, 08:47:56 AM
This is great! Lookin good  :)


Title: Re: [ANN] [WORLD FIRST] TiPS - built-in coin mixing/anonymity service just launched!
Post by: Fargusson on February 18, 2014, 09:07:16 AM
Start spreading the news

I'm leaving today

I wanna be a part of it

New TIIIIIPS


Title: Re: [ANN] [WORLD FIRST] TiPS - built-in coin mixing/anonymity service just launched!
Post by: 643399 on February 18, 2014, 09:36:01 AM
Has launched? :) :'(


Title: Re: [ANN] [WORLD FIRST] TiPS - built-in coin mixing/anonymity service just launched!
Post by: srs2xcvbnm on February 18, 2014, 09:40:58 AM
Has launched? :) :'(

YUP, 12hrs, 35min ago.


Title: Re: [ANN] [WORLD FIRST] TiPS - built-in coin mixing/anonymity service just launched!
Post by: johnnycoiner 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  ???
 
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  ::)

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.



Title: Re: [ANN] [WORLD FIRST] TiPS - built-in coin mixing/anonymity service just launched!
Post by: Fargusson on February 18, 2014, 10:32:42 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  ???
 
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  ::)

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  ;)


Title: Re: [ANN] [WORLD FIRST] TiPS - built-in coin mixing/anonymity service just launched!
Post by: srs2xcvbnm on February 18, 2014, 10:33:16 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  ???
 
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  ::)

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).


Title: Re: [ANN] [WORLD FIRST] TiPS - built-in coin mixing/anonymity service just launched!
Post by: superresistant on February 18, 2014, 10:35:07 AM

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.


Title: Re: [ANN] [WORLD FIRST] TiPS - built-in coin mixing/anonymity service just launched!
Post by: srs2xcvbnm on February 18, 2014, 10:35:32 AM
And we all thank johnnycoiner for this whole new trollworthy topic  ;)

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


Title: Re: [ANN] [WORLD FIRST] TiPS - built-in coin mixing/anonymity service just launched!
Post by: 643399 on February 18, 2014, 11:12:15 AM
Has launched? :) :'(

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


Title: Re: [ANN] [WORLD FIRST] TiPS - built-in coin mixing/anonymity service just launched!
Post by: fraggyb on February 18, 2014, 11:45:17 AM
Best news or best news?


Title: Re: [ANN] [WORLD FIRST] TiPS - built-in coin mixing/anonymity service just launched!
Post by: srs2xcvbnm on February 18, 2014, 11:49:12 AM
Has launched? :) :'(

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.


Title: Re: [ANN] [WORLD FIRST] TiPS - built-in coin mixing/anonymity service just launched!
Post by: blueangel01 on February 18, 2014, 03:22:48 PM
What is the purpose of this: RPC user system, become your own web wallet!?


Title: Re: [ANN] [WORLD FIRST] TiPS - built-in coin mixing/anonymity service just launched!
Post by: r-ando on February 18, 2014, 04:08:53 PM
The RPC web wallet element will be explained in the next update, its part of more innovative ideas coming to Fedoracoin soon  ;)


Title: Re: [ANN] [WORLD FIRST] TiPS - built-in coin mixing/anonymity service just launched!
Post by: MystPhysX on February 18, 2014, 05:12:49 PM
OSX 0.60 has been released. Please find the download links here (http://www.reddit.com/r/FedoraCoin/comments/1y8n8s/psa_060_osx_wallet_released/) till Invisibel updates the site.


Title: Re: [ANN] [WORLD FIRST] TiPS - built-in coin mixing/anonymity service just launched!
Post by: wc10122 on February 28, 2014, 08:14:16 AM
awesome, very promising


Title: Re: [ANN] [WORLD FIRST] TiPS - built-in coin mixing/anonymity service just launched!
Post by: BitOnyx on February 28, 2014, 08:29:07 AM
Ummm.... why is it in altcoins, not at services ? Well never mind ;)
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 ;) .


Title: Re: [ANN] [WORLD FIRST] TiPS - built-in coin mixing/anonymity service just launched!
Post by: Kebwesi on September 30, 2014, 05:45:20 PM
What happened to the Mixing Nodes? Are there instructions on how to set up one, or several?


Title: Re: [ANN] [WORLD FIRST] TiPS - built-in coin mixing/anonymity service just launched!
Post by: superresistant on October 01, 2014, 09:02:33 AM
 
Haha, one of many dead coins.
The altcoin cemetery is so full.


Title: Re: [ANN] [WORLD FIRST] TiPS - built-in coin mixing/anonymity service just launched!
Post by: majeis on October 01, 2014, 09:14:44 AM

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.


Title: Re: [ANN] [WORLD FIRST] TiPS - built-in coin mixing/anonymity service just launched!
Post by: MystPhysX on October 01, 2014, 09:21:22 AM

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

We're trudging on. This is not the main thread.


Title: Re: [ANN] [WORLD FIRST] TiPS - built-in coin mixing/anonymity service just launched!
Post by: superresistant on October 01, 2014, 01:05:45 PM
Haha, one of many dead coins.
The altcoin cemetery is so full.
We're trudging on. This is not the main thread.

Alright then.


Title: Re: [ANN] [WORLD FIRST] TiPS - built-in coin mixing/anonymity service just launched!
Post by: DarkVenu on October 09, 2014, 07:39:34 PM

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


lol many ,but not this one !  :-*


Title: Re: [ANN] [WORLD FIRST] TiPS - built-in coin mixing/anonymity service just launched!
Post by: brian_nguyen on October 09, 2014, 07:47:58 PM
Main Thread is here: https://bitcointalk.org/index.php?topic=552233.0


Title: Re: [ANN] [WORLD FIRST] TiPS - built-in coin mixing/anonymity service just launched!
Post by: id10tothe9 on October 19, 2014, 12:46:16 PM
Please join the TiPS community on the current thread!
https://bitcointalk.org/index.php?topic=552233.0

TiPS is alive and kicking, new ideas, new roadmap, new spirit! Success is waiting, rejoin and help us make it!


Title: Re: [ANN] [WORLD FIRST] TiPS - built-in coin mixing/anonymity service just launched!
Post by: MystPhysX on June 14, 2015, 08:22:23 PM
FedoraCoin NOMP MULTI POOL

http://pscrypt.for-biz.su:8080/getting_started (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 (http://mining.for-biz.su/#begin)
Exchange - https://www.cryptsy.com/markets/view/tips_ltc (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 (https://bitcointalk.org/index.php?topic=552233.1280) so people will see it.