Search content
Sort by

Showing 20 of 92 results by August1106
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [XSH] TOR/i2p, Quantum proof, MN, PoS/PoW, Fully ano, SHIELD
by
August1106
on 26/03/2018, 01:27:08 UTC
I think better will co-operate with exchange admins and resolve the problems than delist.

Agree!
 I think an exchange for encrypted digital currency is beneficial to the market and to increase the number of transactions. Even if Stock.Exchange has some problems, it can be solved by negotiation. It's not a good way to quit.
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][XRB]Cryptocurrency's killer app: RaiBlocks micropayments
by
August1106
on 19/03/2018, 01:15:15 UTC
A perspective from the creator of Nanex: There is no issue with Nano. It is an issue with using the RPC improperly.
https://www.reddit.com/r/nanocurrency/comments/7wvfkx/a_perspective_from_the_creator_of_nanex_there_is/

Quote
There's a lot of FUD going around right now, primarily sparked by Francesco Firano and now with KuCoin coming out and saying they were having a 'double-spend' issue too. I'd like to point out that Kucoin fixed this issue immediately and compensated their ledger with their own funds. They did not attempt to sweep it under the rug and the issue was not wide-spread at Kucoin whatsoever, so kudos to them.

But let's get right down to the point of this post, the tl;dr:

There is no issue with the Nano protocol nor the Nano node. There is no double spending going on. The RPC API was being used improperly.
These issues are not 'double spend' in the traditional sense. Double spend assumes someone spent the same funds twice, which would be a major problem in any cryptocurrency and is basically the primary thing that has to be defeated in any cryptocurrency. That is not what is happening, nor was it ever what happened at Bitgrail nor KuCoin. People freak out when they hear 'double spend', and for good reason, but that is NOT what has been going on.

What happened in both the Bitgrail and Kucoin situations was an improper use of the RPC API.

In the RPC, there are two ways to do things:
1. Use the account/wallet system built into the node and allow the node to do everything for you, including sending money without you ever touching a raw block
2. Keep track of your private keys yourself, store nothing in the node, and only use the node for receiving transaction notifications, reviewing the Nano ledger, and broadcasting blocks you sign yourself outside of the node. (how Nanex does it)
Option 1: why it was used, why it exists, and why it's a bad idea
Option 1 is easy, and is how things are done for most traditional coin integrations on exchanges. Nano has that option, but it was never meant to be used by large services like exchanges. It was meant so someone could build their own UI or just use the command-line. It has its own use case, but not for exchanges.

The primary issue with doing it this way is that sends are not idempotent. Idempotency means that if I were to send the request more than once, it would only perform the action once or it would effectively have the same result. In this case, all you are doing is telling the node 'send X amount to this address'. It doesn't care if you already tried doing it before. It doesn't know if you're retrying something or just sending out more funds again. Since it's not idempotent, this means that any retry code in the case of intermittent failure could possibly end up sending out a transaction more than once.

There's also a variety of other issues like not being able to have fine-tuned control over what's happening, having much more difficulty in scaling across multiple nodes, etc.

This was the method that Bitgrail and Kucoin used. As a result, if anything in the system failed or resent a message for whatever reason, it would effectively 'double withdraw'. Again, I can't state this enough, it is not an issue in the NANO protocol. This is an issue in using the nano node properly.

Option 2: the proper way of doing things
If you keep track of your private keys yourself and only use the offline signing methods, this situation becomes much more unlikely. Your transactions become idempotent.

In the Nanex database, when a withdrawal request is submitted there is a unique identifier for that withdrawal. Your funds are immediately taken out of your Nanex wallet. Only then is the request sent to the actual nano node control system. It finds one of our hot accounts with an appropriate balance, locks the account for any further transactions, and creates and signs the block for the withdrawal. This block is then stored in the database with your unique withdrawal request ID.

All of this so far has not touched the node. When the block is ready, it will be sent to one of our nodes to be broadcasted. If, for whatever reason, that fails - it can be retried again because we're sending the exact same raw, signed block to the node. No matter what, a 'double spend' cannot occur because the operation is idempotent.

At this point, the account is still locked so no further withdrawals or deposits can be made to it. Our other nodes listen on the network to ensure it was broadcasted, and once it reaches consensus the account is unlocked for further transactions and the withdrawal is considered complete.

With 10 hot accounts and an Nvidia P100 GPU node, we can process 300 transactions a minute or 5 per second without the slightest possibility of double withdrawals. If we need to scale up, we just add more nodes and hot accounts.

Nanex's design is being implemented by Kucoin now and is regarded as the 'best practice' by the core development team. edit: note that this design isn't just the idempotent transactions, it also includes how we run multiple loadbalanced nodes and have self-consensus on all transactions

BIG EDIT: This can be done from the RPC entirely as well. This isn't something that has to be implemented outside of the node. The idempotent blocks can be created using the built-in wallet system or by providing the keys yourself.

Also, because I know it will come up: the block explorer issue with improper dates being shown.
This, too, was not an issue with the network. There are no timestamps in the Nano ledger and for that matter almost no cryptocurrency has timestamps, only references to past blocks. The explorer had an issue in which some transactions never had a timestamp recorded. This issue was resolved on January 19th, and any transactions that were missing a timestamp ended up getting that date.

Francesco is trying to use this too as some evidence something is wrong with Nano. That's simply not the case, and frankly a cryptocurrency exchange handling millions of dollars a day should not be relying on a third party tool to confirm their own account data.

In conclusion..
There is no issue with Nano. There never was. All the issues Bitgrail ever ran into was of their own doing because they didn't take time to think of how to implement the node properly, just how to 'get it done'. Kucoin unfortunately fell victim to the same thing, but they made things right and fixed their issue immediately. Francesco swept it under the rug and is now attempting to FUD Nano and the core development team in an attempt to save himself.

Stay strong, nanofam.

edit:

Here's another piece I did on 'why it's not an issue with XRB'. https://www.reddit.com/r/RaiBlocks/comments/7ozfrh/im_jaydubs_the_creator_of_raiexchange_ask_me/dsdfe17/

double edit:

Since I've got the platform for this and many people are asking - the core team never endorsed Bitgrail past saying it was a place you could exchange XRB. The time where Zack said 'funds are safe' (the main thing everyone references) was never in reference to Bitgrail's solvency. Those issues happened during a time when nobody thought Bitgrail was exit scamming or that they were hacked, rather it was FUD surrounding the node and the nano protocol itself and people were worried an issue in the node could have made people lose their money.

I think this is because NANO's technology is more advanced. Many people look at the coin from the usual point of view, but in fact it is more rigorous, more thoughtful and more logical. NANO represents a new technical height. It's very exciting!
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [XSH] TOR/i2p, Quantum proof, MN, PoS/PoW, Fully ano, SHIELD
by
August1106
on 19/03/2018, 01:04:30 UTC
I  bought  XSH   at  5 cent,

For  now  I am  ruined.

That's not because of  Shield  team,  because  they are  making a decent  job  with their  project  and  they  always  show  updates.

I am  ruined  because   of the  Bear  Market.

I  hope  things  can change,  and the  strong hands  could  be rewarded in the next bull  run, when  the  world  will need  privacy  coins.

MY ONLY CONCERNS  IS  WHAT  can   happen to  privacy coins   if the  Governaments  declare them ''illegal''  to trade.


What  will happen  to Shield  in that case?






The only thing we can do now is to wait and wait for the end of the bear market. When the present bull market comes, I believe that SHIELD will bring great surprises to the holders.
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [XSH] TOR/i2p, Quantum proof, MN, PoS/PoW, Fully ano, SHIELD
by
August1106
on 10/03/2018, 08:16:34 UTC
The implementation of MN is expected. But I'm looking forward to the progress of DAG. If DEV use DAG in the side chain Successfully, it will be a great breakthrough for XSH.
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][SEM] Semux - Official Thread
by
August1106
on 10/03/2018, 08:05:33 UTC
For SEMUX, it may be a big problem to make a simple and smooth synchronization of the wallet. If it is not solved in time, it may have a great impact to listed on exchanges and the future development.
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [OCT] Octus - Send cryptocurrencies in seconds to people around the world
by
August1106
on 05/03/2018, 03:20:45 UTC
I understand that it is an auxiliary system that helps send digital currencies of BTC and ETH. It will be very useful and save a lot of time and money. Interesting!
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][SEM] Semux - Official Thread
by
August1106
on 03/03/2018, 07:46:51 UTC
I saw the airdrop to altcoin holder, not just a member of sem?Or what the proportion of them are going to airdrop.

No idea.  Nothing's been announced.  Currently just rumors.

This is not a rumor. This is the message issued by the organizer of the BTT thread after communication with DEV. This is the next phase of the airdrop object that DEV considers. It is something that has been determined. But DEV is still considering the details and quantity of the airdrop, so it has not been officially announced yet.
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [XSH] TOR/i2p, Quantum proof, MN, PoS/PoW, Fully ano, SHIELD
by
August1106
on 03/03/2018, 07:27:38 UTC

I read in a forum that XSH is going to have a DAG as a sidechain.
If this is true, this can be huge.
Can someone confirm?
Based on what NullFunction said last night, DAG is being prototyped for future extensions and they are also prototyping Apps that integrate into the webwallet. Very exciting and definitely makes this coin a market changer in cryptos.

A new webwallet is being released on March 7, which will have 2FA and if I remember right also the ability to manage private keys.  A bunch of good stuff and that’s all before Implementing masternodes.


     Leading DAG into SHIELD will be a major event. In addition to MN, TOR, and other technologies, DAG will be an unrivalled power source for XSH to take off again. In 2018, DAG will be a hot spot and focus!
Post
Topic
Board Tokens (Altcoins)
Re: 🚀[ANN][PoSToken]First PoS Smart Contract Token[Lending Platform Available]
by
August1106
on 24/02/2018, 01:26:32 UTC
Does DEV plan to publish a new plan?  This coin is too quiet for a long time!
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [XSH] TOR/i2p, Quantum proof, MN, PoS/PoW, Fully ano, SHIELD
by
August1106
on 24/02/2018, 01:14:47 UTC
  Prices are still at the low level. XSH still needs a bigger exchange, and COINEXCHAGE is still not big enough.It's time to introduce the secret project.
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][SEM] Semux - Official Thread
by
August1106
on 17/02/2018, 02:56:23 UTC
Tenth weeks of coin airdrop due to technical reasons many people did not receive, the problem later solved? It seems that someone haven't received it yet.
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] QBIC [QBIC] - Masternodes, PoW, Secure, ASIC Resistance
by
August1106
on 17/02/2018, 02:50:11 UTC
The signature campaign organization is rather chaotic, not distributed on time, and is not very transparent, causing people to lose confidence.
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] QBIC [QBIC] - Masternodes, PoW, Secure, ASIC Resistance
by
August1106
on 11/02/2018, 02:37:36 UTC
Can someone tell me, please, how do i know if i participate in the airdrop or not? No one saw spreadsheet of participated users. I filled two form. One of them a week ago. Of course i got nothing  Grin I'll be waiting but all of it seems very strange.
The airdrop you mentioned now is over. Actually it has been implemented atleast 3 weeks ago. Sorry but Please dont pretend to be a dumpy.
Those who wore signature 3 weeks recieved one payment, those who wore signature 1 week recieved nothing.  Maybe this week will be ending like previous. How can we trust those ho doing like that? They offers a job "signature compaign" and after that they say that i was participating in non existent compaign. That campaign ended a couple of weeks before i participate. They was offering a job last week but they dont wonted to pay for last week.

Ok. All is clear now. I don't blame anyone.I just don't understood it in advance.


There were two campaigns - the airdrop and the signature. The airdrop was finished a long time ago and was related to social media posts. The signature campaign seems to have been innundated by chancers which overloaded the devs.
The signature campaigns is not the same as the plan on web1. They seem to have fewer signatures bounty.

Post
Topic
Board Announcements (Altcoins)
Re: [ANN][SEM] Semux - Official Thread
by
August1106
on 11/02/2018, 02:30:01 UTC
For everyone asking when Semux will be listed, the dev is already working on that and is currently contacting multiple exchange. They are just waiting for reply from these exchange sites. Also, there are still codes needed for semux to be easier to add to exchange and the dev team are currently working on these.

The team is currently focused on the following codes to help semux in the long run:

- Multisig
- DDoS Resistance
- Wallet optimization for Large Number of Accounts,
- Validators slashing protocol

multiple exchange? The DEV has done a lot of work. From a technical point of view,is it more difficult to list a JAVA - based coin on exchange ?
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [XSH] TOR/i2p, Quantum proof, MN, PoS/PoW, Fully ano, SHIELD
by
August1106
on 11/02/2018, 02:18:13 UTC
What is the next function to be implemented? Is not there anything until summer?

The Roadmap is in the OP, the next steps in it are:

- Webwallet
- MacWallet
- Website Update
- Secret project (marketplace)
- IOS Wallet.

I am particularly interested for Q2, that's when the fun starts. Masternodes, and an upgrade to Anonymity.  Q3/4 look interesting as well with the smart contracts and POS.

Q1 android wallet have been done .But it's not good to use.I'm looking forward to the secret project . Q2 Masternodes is another bright spot.
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] QBIC [QBIC] - Masternodes, PoW, Secure, ASIC Resistance
by
August1106
on 29/01/2018, 04:00:03 UTC
Does 51% attack on the network affect the trading activities of the exchange?
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][SEM] Semux - Official Thread
by
August1106
on 29/01/2018, 03:55:05 UTC
What are the practical applications related to SEMUX? Did SEMUX prepare the white paper?
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [XSH] TOR/i2p, Quantum proof, MN, PoS/PoW, Fully ano, SHIELD
by
August1106
on 29/01/2018, 03:39:21 UTC
What is the progress of the project? Is there any news? Will MN be started  on time  2018 Q2?
 
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] Sirius A New Smart Chain Freely Distributed
by
August1106
on 29/01/2018, 03:31:21 UTC
 I am waiting  for the second Stage Distribution. Is there any news about it? I hope i can get some coins.
Post
Topic
Board Archival
Re: [ANN][PURA] Pura | Anonymous | X11 | Masternodes | Privatepay | Instapay
by
August1106
on 22/01/2018, 08:34:51 UTC
 Is commonnodes   a new concept? What is the difference between commonnodes  and masternode?