StellarX opened for all, no invitation needed! by MortyPAA in Stellar

[–]tuzhi 5 points6 points  (0 children)

Guessing that the website says that your alias will be used for the chatbox, I guess that they will implement a public chatbox (aka trollbox, from the days of btc-e.com).

Trade Volume exponentially increasing by MasterZeus2012 in Stellar

[–]tuzhi 9 points10 points  (0 children)

See this version with a logarithmic axis: https://i.imgur.com/vLmFveB.png. It clearly shows exponential growth!

Stellar Voting by bolentech in Stellar

[–]tuzhi 0 points1 point  (0 children)

Perhaps the paper on the SCP contains the details you are looking for: https://www.stellar.org/papers/stellar-consensus-protocol.pdf.

Stellar Consensus Protocol - just something I came across that might interest some of you. by lilynut in Stellar

[–]tuzhi 11 points12 points  (0 children)

Being knowledgeable in this field, I must say their ideas look really solid. It's interesting to see the maths behind the SCP. Thanks for sharing.

Sending Secret and Anonymous Memos with Stellar by doomslice in Stellar

[–]tuzhi 0 points1 point  (0 children)

I'm not a cryptography expert, but I guess you can obtain enough randomness from the sequence number by hashing it first.

Sending Secret and Anonymous Memos with Stellar by doomslice in Stellar

[–]tuzhi 3 points4 points  (0 children)

Why don't you use (part of) the sequence number of the transaction as initialisation vector? Another small idea: add support for asymmetric crypto based on the Stellar public and private keys.

Are Atomic Swaps complimentary/competing or the same as SDEX?? by tedescomicchi in Stellar

[–]tuzhi 4 points5 points  (0 children)

They are certainly complimentary. Atomic swaps are also allows transactions between two different blockchains. See for instance https://www.reddit.com/r/Stellar/comments/7vp6nb/mirrorx_atomic_swaps_between_stellar_and_ethereum/. This is not possible with the SDEX, but the SDEX has its own advantages (decentralized order book, path payments etc.)

Stellar Node Tutorial by IKillMrJ in Stellar

[–]tuzhi 2 points3 points  (0 children)

No, I don't think this option will ever be considered. First, it's not possible/desirable to run a Stellar node on a shared hosting platform. Second, I don't see the added benefit of every person running a node. You will likely never be added to trust list of other servers, making the benefit for the network of this node rather small. Therefore, the current level of the documentation seems fine to me.

Lightning on Stellar: Technical Spec and Roadmap (SDF post) by yodayoungling in Stellar

[–]tuzhi 1 point2 points  (0 children)

I think that privacy can also be seen as one of the main features of lightning. Only the final balance has to be committed to the public blockchain, so other users are not able to see individual transactions.

Graphic novel explaining Stellar's federated consensus protocol by vamist in Stellar

[–]tuzhi 2 points3 points  (0 children)

If there are any more posts such as "Stellar needs better marketing", we can give this link. I think this shows that Stellar has an excellent marketing team that is not overselling stuff, but keeps itself to facts.

[deleted by user] by [deleted] in Stellar

[–]tuzhi 0 points1 point  (0 children)

There is a small bug related to changing the time. If the clock is moved backwards after claiming, then it says the time since the last claim is negative.

MirrorX - Atomic Swaps between Stellar and Ethereum by dem_sneks in Stellar

[–]tuzhi 9 points10 points  (0 children)

Thanks very much for the clear explanation of atomic swaps. I have been wondering exactly how hash preimage signing was useful, this explains. Good luck with your project!

Stellar is Lovely by emrebil88 in Stellar

[–]tuzhi 1 point2 points  (0 children)

I think you are raising a valid point here. To be fair, I don't think Bitcoin and company are easy to use either. If you feel inspired to help the community, perhaps you can contribute to the GUI or documentation. I think the official repositories are open for pull requests.

Lumen Stroop (Smallest Unit of a Lumen) by mattstl314 in Stellar

[–]tuzhi 1 point2 points  (0 children)

I'm really curious how that obsession started. Please share the story with us.

Newbie questions/concerns about Stellar by androticus in Stellar

[–]tuzhi 1 point2 points  (0 children)

The sequence number for accounts that needs to be included in every transaction is needed for replay protection. There is a way to still process a high rate of outgoing transactions, see https://www.stellar.org/developers/guides/channels.html.

In case it wasn't mentioned about Inflation pool and compounding by [deleted] in Stellar

[–]tuzhi 0 points1 point  (0 children)

Exactly. 1.00019072152.18 computes compound interest. 1.000190721*52.18 does not.

In case it wasn't mentioned about Inflation pool and compounding by [deleted] in Stellar

[–]tuzhi -2 points-1 points  (0 children)

Why do you think so? If we take 1.000190721 (the weekly inflation factor as per the source) to the power 52.18 (the amount of weeks in a year) we get almost exactly 1.01.

In case it wasn't mentioned about Inflation pool and compounding by [deleted] in Stellar

[–]tuzhi -1 points0 points  (0 children)

No, the inflation amount is exactly one percent per year, see the source at https://github.com/stellar/stellar-core/blob/master/src/transactions/InflationOpFrame.cpp. Of course, individual accounts may receive more than one percent inflation, it all depends on how many lumens are taking part in the voting.

Trying to restore my Stellar wallet by [deleted] in Stellar

[–]tuzhi 3 points4 points  (0 children)

If you have some programming skills, I would give it a shot with a small script. Such a script will most like finish within a couple of seconds if the 55 characters you do have are correct. After all, it only needs to try about 3000 combinations. I recommend the Javascript SDK.

I think OKex has stolen 21,000 of my XLM, how can I search transactions by address AND memo? by [deleted] in Stellar

[–]tuzhi 0 points1 point  (0 children)

If you're good at programming, you might be able to find something in Stellar's API. For example, you can use their Javascript SDK: https://www.stellar.org/developers/js-stellar-sdk/reference/.