Bitcoin Forum
May 27, 2024, 04:36:33 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 [5] 6 7 8 9 10 11 12 13 14 15 16 17 18 19 »
81  Alternate cryptocurrencies / Announcements (Altcoins) / Re: SuperCoin on: August 13, 2014, 08:27:16 AM
Why do you open a new thread?

The original thread here

https://bitcointalk.org/index.php?topic=618552.0

SuperCoin Dev's Corner

In this section we post SuperCoin's technical details, whitepapers, and technical questions/answers. Hopefully most tech info can be found here, so people do not need to repeatedly ask the same questions or search the thread for answers.

82  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][SUPERCOIN]First P2p Decentralized Trustless Anonymous Wallet Coming Soon on: August 12, 2014, 09:30:02 PM
For the new investors, quick recap of the last important updates of supercoindev:



August 9th

Here's our update from dev team.

I have good news to report. I have finished the basic implementation of the p2p decentralized trustless anonymous system, and it works fine. With all the multisig addresses and transactions, it is a pretty complex system. Now it works end-to-end. In the next few days, we will provide a detailed schedule for testing and releasing the system (a rough schedule is below).

As far as I know, this is the first real p2p decentralized trustless anonymous system in coinjoin category. I am not sure for the crypto-note technology, it seems it is a good one, although it is a different technology and mainly for CPU. But for coinjoin category claims, I don't see any truly trustless system, and this is the first one.

Following is a quick screenshot from my desktop showing test log and some code.



The following is a rough schedule for the next few weeks, we will provide more details soon:

- A detailed white paper will be published in a few days, I should finish it before August 14. The white paper will contain details on the technology and algorithms we are using.

- Now to August 14 is dev team testing on trustless system, and also we will add bells and whistles to the code (especially for some error handlings).

- Alpha testing on real network of MammothCoin: August 15 - August 19. We decided not to use testnet as we have high confidence on our code, also our testing so far has been on the real network. We choose MammothCoin for initial testing as it has less traffic, so it is easier to fix initial bugs etc.

- Best testing on real network of SuperCoin: August 20 - August 24. With more robust code we move to SuperCoin. Both alpha and beta testings we will invite limited members of the community to participate the testing. These testing phases including all bug fixes.

- August 25, we will release p2p decentralized trustless anonymous system for both SuperCoin and MammothCoin.

Also, we don't release immediate the source code as they are too many copycats, but we plan to release the full source code 2 months after the system is released. So people with skills (and curiosity) will be able to inspect and review the code.

Stay tuned, we will provide more info in the next few days.


August 10th

While I am writing the whitepaper, I think instead of publishing it all at once when I finish, I will post it in parts, every 2-3 days, so community will get more details about the algorithm we use and logistics behind it. It is also an education process so people will understand what is a trustless system and why we need it. So expect 3 parts to be posted in this thread. I will prepare a pdf file with all parts together (the formal whitepaper).

All questions are welcomed, though I may not have time to answer all the questions. Because I still need to do testing on the code and fix bugs, and add bells and whistles etc.

Below is the first part on the SuperSend Trustless system. I will try to publish the next part in 2-3 days, maybe Monday/Tuesday time frame. Next parts will describe the overview and details of the algorithm.

==

SuperSend Trustless is an advanced p2p completely decentralized anonymous system. It belongs to Coinjoin category of the anonymous wallet. In this system all nodes (clients) are equal; there are no centralized or special nodes that hold more info than others. The coin transfer happens with the help of middle nodes that are randomly chosen. Mini-escrow is used with multisig address and transactions to ensure all the parties behave according to the transfer rules. This is a complete trustless system. The system is designed in a forceful way for all parties to behave correctly. If any party tries to cheat, he will lose more than his gain in the cheat.

Among all the online coin clients, if some minimum requirements are met (e.g. with minimum amount of coins in the balance, and with minimum 2 addresses in the wallet, etc), the node will advertise itself as a service node. Other nodes receiving the advertisement will add it to their service node list. There’s a limit in the service node list for each client (currently limited at 30). Any client can turn off the advertisement, if it does not want to be a service node. To turn off the service node advertisement, user just need to put a line in the config file. A service node will receive certain fee for each service it performs. Node not want to be service node can still receive other node’s advertisement and use the anonymous service, as long as it pays the service fee.

SuperSend Trustless makes heavy use of multisig technology. The sender of the coin will choose randomly 2 middle service nodes from his service node list to help the anonymous transfer. Among the two nodes chosen, one provides mix service, and another provides guarantee service. Why need 2 nodes? Because if there are any disputes between sender and mixer, it is up to guarantor to make a final judgment and then distribute the fund in the escrow accordingly.

Mixer is the node to mix the coins with his own, and send to destination. It is possible to have multiple mixer nodes, so to further obfuscate the transfer. At the current implementation, we use a single mixer node.

Guarantor is the one who will make the final judgment if any dispute between sender and mixer. If everything goes on well, Guarantor’s job is just to create multisig address and multisig transactions. It will not be involved in the signing processes of the multisig transactions in normal cases. But if there are disputes, the Guarantor will decide, based on the facts of the existing transactions, the outcome of escrow distribution. Of course, Guarantor cannot decide alone, he has to coordinate with another party (see below for the signing of multisig transactions).

We use a 2-of-3 multisig address for escrow. What is a 2-of-3 multisig address? It is an address that is created based on 3 public keys, each from Sender, Mixer and Guarantor, respectively. Remember, Sender, Mixer and Guarantor each hold the corresponding private key of the public key. Anyone is free to deposit coins to the 2-of-3 address. But in order to spend any fund from the address (i.e. send to another address), the transaction needs to be signed using at least 2 out of 3 private keys. Since the private keys are in different nodes, different nodes must willing to sign the same transaction before it becomes valid. In another words, the coins in that address cannot be spent by anyone alone, at least two of them should agree before the money can be spent.

==


August 11th

Here is the 2nd part of the whitepaper, which gives a high level in-depth view of the trustless algorithm we use. Please refer to the part 1 if you need to understand some terms. Part 1 is here:
https://bitcointalk.org/index.php?topic=618552.msg8272890#msg8272890

==
The following diagram shows a high level description of the trustless system algorithm. It shows the “normal” case where everything goes as expected.




The next diagram shows the case where, after step 6, the Sender is not satisfied with the Mixer’s txid. This could happen if the Sender cannot verify Mixer’s transaction, or Mixer did not send enough funds to the destination. In which case Sender asks Guarantor to do the arbitration. The new scenario are marked in brown lines and explained in the diagram.



There are other possible scenarios, that we will describe in the next parts, where we will show details of the algorithm and steps. But from the above two cases you see why multisig is tightly linked with trustless system and how it creates a bonding among all parties where they have to follow the anonymous transfer rules.



August 12th

I added a console command "getlastanontxinfo" to get the info for the current or last p2p trustless anonymous transaction, so user can see the status and the log of the current or last (if finished) anonymous tx. From my tests, each trustless transaction takes about 30-40 seconds to complete. Considering the many steps involved, this is a pretty good speed.


83  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][SUPERCOIN]First P2p Decentralized Trustless Anonymous Wallet Coming Soon on: August 12, 2014, 08:21:02 PM
Nah man you're correct, a press release is something important and I wouldn't make one myself either. This has to be done by the person who knows Supercoin best, the Dev would be a wise choice since he'd be the one who can bring up the best points of Supercoin in 100 words. 100 is really short to bring up all good things about Supercoin.

I have 60 words and it could look more professional. Let's work on that

Supercoin is pleased to announce the release of “SuperSend Trustless”, the first real p2p decentralized trustless anonymous system, on August 25th. The team is very proud of the recent development and will begin testing the new system on MammothCoin and SuperCoin in the next few days. The system is now working end-to-end and Supercoin is very excited to move forward with this project.
I would write something in the lines of "the first in-depth explained p2p decentralized trustless anonymous system with published whitepaper" instead of what you wrote. At least I would write that because I'm not technically competent enough to say whether other coins (you know which one I mean but i'm not intending to FUD them) have a working one too, but if we release full whitepaper we'd be the first one to actually put something like this on the table (since others couldn't do this before us...).

If they appear to have a working one aswell, good for them. And i mean it ! Since our dev built one from scratch and ours is unique, it wouldn't give real issues for Super's future. But we'd be in the wrong then in our press release. And although I see that when our whitepaper is being posted on this other thread, it always gets deleted, and the fact that they aren't publishing theirs at all, it kind of says enough for me Smiley though I'm just a more careful person i suppose.
84  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][SUPERCOIN]First P2p Decentralized Trustless Anonymous Wallet Coming Soon on: August 12, 2014, 07:38:59 PM
Nah man you're correct, a press release is something important and I wouldn't make one myself either. This has to be done by the person who knows Supercoin best, the Dev would be a wise choice since he'd be the one who can bring up the best points of Supercoin in 100 words. 100 is really short to bring up all good things about Supercoin.
85  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][SUPERCOIN]First P2p Decentralized Trustless Anonymous Wallet Coming Soon on: August 12, 2014, 07:03:25 PM
@iram3130 if you liked this you will amaze with this



Very good! Keep up the good work!

Do you guys need my logo in a big format for the design?

And what was the bounty again for the logo? 1000 SUPER?

 Grin Grin

First make great logo, then ask for bounty. We are here to help each other and our community.
I just want if we will left coins after spending in promotion then ask for bounty.

Haha I was joking iram, and dont worry I have donated too, there will be 0,40 BTC left of something like that. We had 0,53btc I think and paid 0,12BTC for the article.

CryptoBull are you okay with the press release?

Did you make one ? Can i read it ? Smiley
86  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][SUPERCOIN]First P2p Decentralized Trustless Anonymous Wallet Coming Soon on: August 12, 2014, 06:55:37 PM
Size of new thread bytheway... (some graphs missing from phase 2)

coming soon
I'm really glad a good looking roadmap is being released. It's always something that attracts me to a new coin. GOOD JOB OF THE DESIGNER
87  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][SUPERCOIN]First P2p Decentralized Trustless Anonymous Wallet Coming Soon on: August 12, 2014, 04:17:24 PM
@iram3130 if you liked this you will amaze with this


Looks really good !
88  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][SUPERCOIN]First P2p Decentralized Trustless Anonymous Wallet Coming Soon on: August 12, 2014, 11:53:14 AM
We do not afraid of publishing this much details with public. Nobody could explained yet what is true decentralized anonymity yet.

Because we know there is not real good developers out there can duplicate our technology. Though we give them this much details. This takes their months or years to do. They will now use our concepts to keep hyping their communities.  But lies are not sustainable long.  Grin

Soon or late Supercoin will lead the market with its superior technology.

We need help form you, get us known by unheard others.

ok future Milioners i need a :
100 words press release please help !!!
A logo - i have this
And link to official site- this also


please help with that beause i am grtting a free small advertise fom cointelegraph Smiley
They have price for pro article and interview and many other things but the advertising package is 1,5 btc  Undecided
So i will ask them what can they do for us for 0.30 because its all we have.what do you think???

cone on guys please help i dont know how to write a press release Sad
You can google for some samples, you basically write an article with little more care.

Perhaps it's something the Dev should do. He can explain the pro's of Supercoin better than anyone else and writes good English. 100 words isn't a lot, so it should be a good and compact press release with as much information as possible in it. To me he seems the perfect man for the job.

Also the fact he wrote it personally is a big plus.
89  Alternate cryptocurrencies / Altcoin Discussion / Re: If we don't know about your coins, it's impossible to add them... on: August 12, 2014, 10:04:20 AM


Supercoin posted on http://forum.casheer.net/viewtopic.php?f=15&t=28&p=90
90  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][SUPERCOIN]First P2p Decentralized Trustless Anonymous Wallet Coming Soon on: August 12, 2014, 09:55:54 AM
SUPERCOIN is now posted on CASHEER forum !

http://forum.casheer.net/viewtopic.php?f=15&t=28&p=90



More info about Casheer on http://casheer.net/ . Always welcome to support SUPER on its forum
91  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][SUPERCOIN]First P2p Decentralized Trustless Anonymous Wallet Coming Soon on: August 12, 2014, 09:21:02 AM
And we have surpassed 10,000 posts, hooray !

Let's celebrate with a quick recap of important updates the dev gave last few days:




August 9th

Here's our update from dev team.

I have good news to report. I have finished the basic implementation of the p2p decentralized trustless anonymous system, and it works fine. With all the multisig addresses and transactions, it is a pretty complex system. Now it works end-to-end. In the next few days, we will provide a detailed schedule for testing and releasing the system (a rough schedule is below).

As far as I know, this is the first real p2p decentralized trustless anonymous system in coinjoin category. I am not sure for the crypto-note technology, it seems it is a good one, although it is a different technology and mainly for CPU. But for coinjoin category claims, I don't see any truly trustless system, and this is the first one.

Following is a quick screenshot from my desktop showing test log and some code.



The following is a rough schedule for the next few weeks, we will provide more details soon:

- A detailed white paper will be published in a few days, I should finish it before August 14. The white paper will contain details on the technology and algorithms we are using.

- Now to August 14 is dev team testing on trustless system, and also we will add bells and whistles to the code (especially for some error handlings).

- Alpha testing on real network of MammothCoin: August 15 - August 19. We decided not to use testnet as we have high confidence on our code, also our testing so far has been on the real network. We choose MammothCoin for initial testing as it has less traffic, so it is easier to fix initial bugs etc.

- Best testing on real network of SuperCoin: August 20 - August 24. With more robust code we move to SuperCoin. Both alpha and beta testings we will invite limited members of the community to participate the testing. These testing phases including all bug fixes.

- August 25, we will release p2p decentralized trustless anonymous system for both SuperCoin and MammothCoin.

Also, we don't release immediate the source code as they are too many copycats, but we plan to release the full source code 2 months after the system is released. So people with skills (and curiosity) will be able to inspect and review the code.

Stay tuned, we will provide more info in the next few days.


August 10th

While I am writing the whitepaper, I think instead of publishing it all at once when I finish, I will post it in parts, every 2-3 days, so community will get more details about the algorithm we use and logistics behind it. It is also an education process so people will understand what is a trustless system and why we need it. So expect 3 parts to be posted in this thread. I will prepare a pdf file with all parts together (the formal whitepaper).

All questions are welcomed, though I may not have time to answer all the questions. Because I still need to do testing on the code and fix bugs, and add bells and whistles etc.

Below is the first part on the SuperSend Trustless system. I will try to publish the next part in 2-3 days, maybe Monday/Tuesday time frame. Next parts will describe the overview and details of the algorithm.

==

SuperSend Trustless is an advanced p2p completely decentralized anonymous system. It belongs to Coinjoin category of the anonymous wallet. In this system all nodes (clients) are equal; there are no centralized or special nodes that hold more info than others. The coin transfer happens with the help of middle nodes that are randomly chosen. Mini-escrow is used with multisig address and transactions to ensure all the parties behave according to the transfer rules. This is a complete trustless system. The system is designed in a forceful way for all parties to behave correctly. If any party tries to cheat, he will lose more than his gain in the cheat.

Among all the online coin clients, if some minimum requirements are met (e.g. with minimum amount of coins in the balance, and with minimum 2 addresses in the wallet, etc), the node will advertise itself as a service node. Other nodes receiving the advertisement will add it to their service node list. There’s a limit in the service node list for each client (currently limited at 30). Any client can turn off the advertisement, if it does not want to be a service node. To turn off the service node advertisement, user just need to put a line in the config file. A service node will receive certain fee for each service it performs. Node not want to be service node can still receive other node’s advertisement and use the anonymous service, as long as it pays the service fee.

SuperSend Trustless makes heavy use of multisig technology. The sender of the coin will choose randomly 2 middle service nodes from his service node list to help the anonymous transfer. Among the two nodes chosen, one provides mix service, and another provides guarantee service. Why need 2 nodes? Because if there are any disputes between sender and mixer, it is up to guarantor to make a final judgment and then distribute the fund in the escrow accordingly.

Mixer is the node to mix the coins with his own, and send to destination. It is possible to have multiple mixer nodes, so to further obfuscate the transfer. At the current implementation, we use a single mixer node.

Guarantor is the one who will make the final judgment if any dispute between sender and mixer. If everything goes on well, Guarantor’s job is just to create multisig address and multisig transactions. It will not be involved in the signing processes of the multisig transactions in normal cases. But if there are disputes, the Guarantor will decide, based on the facts of the existing transactions, the outcome of escrow distribution. Of course, Guarantor cannot decide alone, he has to coordinate with another party (see below for the signing of multisig transactions).

We use a 2-of-3 multisig address for escrow. What is a 2-of-3 multisig address? It is an address that is created based on 3 public keys, each from Sender, Mixer and Guarantor, respectively. Remember, Sender, Mixer and Guarantor each hold the corresponding private key of the public key. Anyone is free to deposit coins to the 2-of-3 address. But in order to spend any fund from the address (i.e. send to another address), the transaction needs to be signed using at least 2 out of 3 private keys. Since the private keys are in different nodes, different nodes must willing to sign the same transaction before it becomes valid. In another words, the coins in that address cannot be spent by anyone alone, at least two of them should agree before the money can be spent.

==


August 11th

Here is the 2nd part of the whitepaper, which gives a high level in-depth view of the trustless algorithm we use. Please refer to the part 1 if you need to understand some terms. Part 1 is here:
https://bitcointalk.org/index.php?topic=618552.msg8272890#msg8272890

==
The following diagram shows a high level description of the trustless system algorithm. It shows the “normal” case where everything goes as expected.




The next diagram shows the case where, after step 6, the Sender is not satisfied with the Mixer’s txid. This could happen if the Sender cannot verify Mixer’s transaction, or Mixer did not send enough funds to the destination. In which case Sender asks Guarantor to do the arbitration. The new scenario are marked in brown lines and explained in the diagram.



There are other possible scenarios, that we will describe in the next parts, where we will show details of the algorithm and steps. But from the above two cases you see why multisig is tightly linked with trustless system and how it creates a bonding among all parties where they have to follow the anonymous transfer rules.



August 12th

I added a console command "getlastanontxinfo" to get the info for the current or last p2p trustless anonymous transaction, so user can see the status and the log of the current or last (if finished) anonymous tx. From my tests, each trustless transaction takes about 30-40 seconds to complete. Considering the many steps involved, this is a pretty good speed.


92  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][SUPERCOIN]First P2p Decentralized Trustless Anonymous Wallet Coming Soon on: August 12, 2014, 08:37:01 AM
@supercointeam  Can you contact chaeplin test your system?this guy very experienced!He had cracked XC before XC implement multipath!Give he some bounty!
We have collected some Supers before we can offer but need to check if he really competent one, we no need second busoni.
@Cryptobull can you find out this.

Oh no he is DRK dev writes in his profile "[DRK] DarkCoin is the future of crypto!"
he is faker one like XC fake decentralized.

we need much able dev not amateurs please!!
But if he can not crack your system,Very convincing!I do not want to appear FUD after somebody crack your system.

Doesn't seem like a good idea to let someone of another competing anon altcoin do this. If I may remind you of busoni, it doesn't even require a proper technical explanation in order to do harm to a coin.

Perhaps someone else, a more neutral person ?
93  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][SUPERCOIN] SoD System of Decentralization... a trustless form of Anonymity on: August 12, 2014, 08:25:38 AM
Very important message to make.

You guys know I post a lot of charts around but this time I have something to say. This weekend we have witness several crash on the largest crypto markets: Litecoin, Cloakcoin, Blackcoin, Nxt, etc. A lot of crypto have been lagging since.

I would like to point your attention to the recent price activity in SuperCoin indicating that a new leadership is coming and we might see a lot of money coming into this market really soon.

I have studied a lot of charts and cryptocurrencies this weekend and I have many reasons to believe that we could see a price increase to 6000-7000 satoshis very quickly. The days building up to "SuperSend Trustless" and the Aug. 25th release date could bring much more investors after that sending the price above 15 000 satoshis.

Trade at your own risk, crypto is a very dangerous market but there is some fundamental strengths in Supercoin right now.






Looking at a chart that's showing the history of Super (on MintPal) I bet we could even top that. Remember how price dropped because of fud, impatience and disbelieve ? Right now all of that uncertainty is being crushed. Price reached 14k sat prior to all this, it's time to restore it!
94  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][SUPERCOIN] Anonymous Wallet & PoS Superblocks >>> SuperMultipool.com on: August 11, 2014, 10:43:41 AM
Here's our update from dev team.

...





This is great news from dev team. Those screenshots look great, even if I'm not good in coding at all, but it is still news and proof that developers are delevering! Good work team! Thanks

And don't forget yesterday's update !


While I am writing the whitepaper, I think instead of publishing it all at once when I finish, I will post it in parts, every 2-3 days, so community will get more details about the algorithm we use and logistics behind it. It is also an education process so people will understand what is a trustless system and why we need it. So expect 3 parts to be posted in this thread. I will prepare a pdf file with all parts together (the formal whitepaper).

All questions are welcomed, though I may not have time to answer all the questions. Because I still need to do testing on the code and fix bugs, and add bells and whistles etc.

Below is the first part on the SuperSend Trustless system. I will try to publish the next part in 2-3 days, maybe Monday/Tuesday time frame. Next parts will describe the overview and details of the algorithm.

==

SuperSend Trustless is an advanced p2p completely decentralized anonymous system. It belongs to Coinjoin category of the anonymous wallet. In this system all nodes (clients) are equal; there are no centralized or special nodes that hold more info than others. The coin transfer happens with the help of middle nodes that are randomly chosen. Mini-escrow is used with multisig address and transactions to ensure all the parties behave according to the transfer rules. This is a complete trustless system. The system is designed in a forceful way for all parties to behave correctly. If any party tries to cheat, he will lose more than his gain in the cheat.

Among all the online coin clients, if some minimum requirements are met (e.g. with minimum amount of coins in the balance, and with minimum 2 addresses in the wallet, etc), the node will advertise itself as a service node. Other nodes receiving the advertisement will add it to their service node list. There’s a limit in the service node list for each client (currently limited at 30). Any client can turn off the advertisement, if it does not want to be a service node. To turn off the service node advertisement, user just need to put a line in the config file. A service node will receive certain fee for each service it performs. Node not want to be service node can still receive other node’s advertisement and use the anonymous service, as long as it pays the service fee.

SuperSend Trustless makes heavy use of multisig technology. The sender of the coin will choose randomly 2 middle service nodes from his service node list to help the anonymous transfer. Among the two nodes chosen, one provides mix service, and another provides guarantee service. Why need 2 nodes? Because if there are any disputes between sender and mixer, it is up to guarantor to make a final judgment and then distribute the fund in the escrow accordingly.

Mixer is the node to mix the coins with his own, and send to destination. It is possible to have multiple mixer nodes, so to further obfuscate the transfer. At the current implementation, we use a single mixer node.

Guarantor is the one who will make the final judgment if any dispute between sender and mixer. If everything goes on well, Guarantor’s job is just to create multisig address and multisig transactions. It will not be involved in the signing processes of the multisig transactions in normal cases. But if there are disputes, the Guarantor will decide, based on the facts of the existing transactions, the outcome of escrow distribution. Of course, Guarantor cannot decide alone, he has to coordinate with another party (see below for the signing of multisig transactions).

We use a 2-of-3 multisig address for escrow. What is a 2-of-3 multisig address? It is an address that is created based on 3 public keys, each from Sender, Mixer and Guarantor, respectively. Remember, Sender, Mixer and Guarantor each hold the corresponding private key of the public key. Anyone is free to deposit coins to the 2-of-3 address. But in order to spend any fund from the address (i.e. send to another address), the transaction needs to be signed using at least 2 out of 3 private keys. Since the private keys are in different nodes, different nodes must willing to sign the same transaction before it becomes valid. In another words, the coins in that address cannot be spent by anyone alone, at least two of them should agree before the money can be spent.

==


95  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][SUPERCOIN] SoD System of Decentralization... a trustless form of Anonymity on: August 11, 2014, 10:35:22 AM
What exactly do you need CryptoBull to send to the guy?
This Smiley

Also, I will need any any information you have that you would like included that is not on your website or the bit talk thread. I will need a 240 x 240 image to use for the ad on the sidebar. Also, I need a link to your YouTube video so I can embed it in the article. Once payment has been received the article will be published within two days and be sent out through all of my social media channels. Just let me know when you have sent payment and I can get started! Thanks
Shouldn't we wait till the full whitepaper gets posted
96  Alternate cryptocurrencies / Altcoin Discussion / Re: give them a false sense of security ;) on: August 11, 2014, 09:22:55 AM
remember what happened with Poloniex and Supercoin ?
Make sure you give them enough rope, and time, before tugging on it hard LOL

I respect you on this forum Spoetnik, but Busoni called shenanigans because of MAX_MONEY which was clearly a massive fail from his side. If there was anything fishy he found after, he would have bragged about it already to restore his reputation.
97  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [JADE] Jadecoin | X11 | PoS+PoW | P2P Encryption Beta Tomorrow Aug 11! on: August 11, 2014, 07:10:09 AM
Keeping an eye on this coin  Smiley
98  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][SUPERCOIN] SoD System of Decentralization... a trustless form of Anonymity on: August 11, 2014, 06:21:08 AM
Supercointeam/dev, perhaps we can also start a second (self-moderated) thread that we can use for all the recent posts and updates written here. It would be great for investors to have the important posts in 1 topic, for those who are unable to check this thread every day. This way you only have to write 1 link in the top of this thread that shows all recent important updates immediately. I would love to start one but I'm in New York for a week starting 23th august, a crucial time for Supercoin meaning I wouldn't be able to moderate it when SoD is being released...

This good idea we asked our designer to make new design for new thread.
I hope sometime today we will open it.
Great, thanks for the quick respond !

If i can help in any way, you can always pm me
99  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][SUPERCOIN] SoD System of Decentralization... a trustless form of Anonymity on: August 11, 2014, 06:00:20 AM
Quick recap for everybody interested:



Here's our update from dev team.

I have good news to report. I have finished the basic implementation of the p2p decentralized trustless anonymous system, and it works fine. With all the multisig addresses and transactions, it is a pretty complex system. Now it works end-to-end. In the next few days, we will provide a detailed schedule for testing and releasing the system (a rough schedule is below).

As far as I know, this is the first real p2p decentralized trustless anonymous system in coinjoin category. I am not sure for the crypto-note technology, it seems it is a good one, although it is a different technology and mainly for CPU. But for coinjoin category claims, I don't see any truly trustless system, and this is the first one.

Following is a quick screenshot from my desktop showing test log and some code.



The following is a rough schedule for the next few weeks, we will provide more details soon:

- A detailed white paper will be published in a few days, I should finish it before August 14. The white paper will contain details on the technology and algorithms we are using.

- Now to August 14 is dev team testing on trustless system, and also we will add bells and whistles to the code (especially for some error handlings).

- Alpha testing on real network of MammothCoin: August 15 - August 19. We decided not to use testnet as we have high confidence on our code, also our testing so far has been on the real network. We choose MammothCoin for initial testing as it has less traffic, so it is easier to fix initial bugs etc.

- Best testing on real network of SuperCoin: August 20 - August 24. With more robust code we move to SuperCoin. Both alpha and beta testings we will invite limited members of the community to participate the testing. These testing phases including all bug fixes.

- August 25, we will release p2p decentralized trustless anonymous system for both SuperCoin and MammothCoin.

Also, we don't release immediate the source code as they are too many copycats, but we plan to release the full source code 2 months after the system is released. So people with skills (and curiosity) will be able to inspect and review the code.

Stay tuned, we will provide more info in the next few days.







While I am writing the whitepaper, I think instead of publishing it all at once when I finish, I will post it in parts, every 2-3 days, so community will get more details about the algorithm we use and logistics behind it. It is also an education process so people will understand what is a trustless system and why we need it. So expect 3 parts to be posted in this thread. I will prepare a pdf file with all parts together (the formal whitepaper).

All questions are welcomed, though I may not have time to answer all the questions. Because I still need to do testing on the code and fix bugs, and add bells and whistles etc.

Below is the first part on the SuperSend Trustless system. I will try to publish the next part in 2-3 days, maybe Monday/Tuesday time frame. Next parts will describe the overview and details of the algorithm.

==

SuperSend Trustless is an advanced p2p completely decentralized anonymous system. It belongs to Coinjoin category of the anonymous wallet. In this system all nodes (clients) are equal; there are no centralized or special nodes that hold more info than others. The coin transfer happens with the help of middle nodes that are randomly chosen. Mini-escrow is used with multisig address and transactions to ensure all the parties behave according to the transfer rules. This is a complete trustless system. The system is designed in a forceful way for all parties to behave correctly. If any party tries to cheat, he will lose more than his gain in the cheat.

Among all the online coin clients, if some minimum requirements are met (e.g. with minimum amount of coins in the balance, and with minimum 2 addresses in the wallet, etc), the node will advertise itself as a service node. Other nodes receiving the advertisement will add it to their service node list. There’s a limit in the service node list for each client (currently limited at 30). Any client can turn off the advertisement, if it does not want to be a service node. To turn off the service node advertisement, user just need to put a line in the config file. A service node will receive certain fee for each service it performs. Node not want to be service node can still receive other node’s advertisement and use the anonymous service, as long as it pays the service fee.

SuperSend Trustless makes heavy use of multisig technology. The sender of the coin will choose randomly 2 middle service nodes from his service node list to help the anonymous transfer. Among the two nodes chosen, one provides mix service, and another provides guarantee service. Why need 2 nodes? Because if there are any disputes between sender and mixer, it is up to guarantor to make a final judgment and then distribute the fund in the escrow accordingly.

Mixer is the node to mix the coins with his own, and send to destination. It is possible to have multiple mixer nodes, so to further obfuscate the transfer. At the current implementation, we use a single mixer node.

Guarantor is the one who will make the final judgment if any dispute between sender and mixer. If everything goes on well, Guarantor’s job is just to create multisig address and multisig transactions. It will not be involved in the signing processes of the multisig transactions in normal cases. But if there are disputes, the Guarantor will decide, based on the facts of the existing transactions, the outcome of escrow distribution. Of course, Guarantor cannot decide alone, he has to coordinate with another party (see below for the signing of multisig transactions).

We use a 2-of-3 multisig address for escrow. What is a 2-of-3 multisig address? It is an address that is created based on 3 public keys, each from Sender, Mixer and Guarantor, respectively. Remember, Sender, Mixer and Guarantor each hold the corresponding private key of the public key. Anyone is free to deposit coins to the 2-of-3 address. But in order to spend any fund from the address (i.e. send to another address), the transaction needs to be signed using at least 2 out of 3 private keys. Since the private keys are in different nodes, different nodes must willing to sign the same transaction before it becomes valid. In another words, the coins in that address cannot be spent by anyone alone, at least two of them should agree before the money can be spent.

==


100  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][SUPERCOIN] SoD System of Decentralization... a trustless form of Anonymity on: August 11, 2014, 05:58:23 AM
Supercointeam/dev, perhaps we can also start a second (self-moderated) thread that we can use for all the recent posts and updates written here. It would be great for investors to have the important posts in 1 topic, for those who are unable to check this thread every day. This way you only have to write 1 link in the top of this thread that shows all recent important updates immediately. I would love to start one but I'm in New York for a week starting 23th august, a crucial time for Supercoin meaning I wouldn't be able to moderate it when SoD is being released...
Pages: « 1 2 3 4 [5] 6 7 8 9 10 11 12 13 14 15 16 17 18 19 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!