Author

Topic: [ANN][XEL] Elastic Project - The Decentralized Supercomputer - page 294. (Read 450524 times)

full member
Activity: 180
Merit: 100
If I red your posts correctly you wish to get a discount and after this you want to donate at the current rate and become a part of the project.
Did you buy already to current rates? I'm just asking without any offense  Smiley I'm a friendly guy.

I did not donate at current rate as I was waiting for another early donator to get his XEL, but he seems not interested anymore...

But anyway I will make donation at current rate for sure, I will try a tiny amount to check that everything is working fine then I will make a bigger one.

Hope that answer your question  Wink


I started a little donation yesterday just as a test.

Now I am waiting for EK / Lannister to answer my question if they can afford a little time for this in order to provide a much bigger donation.

I am expecting an honest answer from them, I guess I will get it as regarding their history in bitcointalk they don't really like  hype / greed and seem trustworthy.

After my donation I will try to expose my view on the economics behind XEL in order to contribute to the project as much as I can.

Not sure it will be helpfull but at least I will try to help Smiley
full member
Activity: 180
Merit: 100
If I red your posts correctly you wish to get a discount and after this you want to donate at the current rate and become a part of the project.
Did you buy already to current rates? I'm just asking without any offense  Smiley I'm a friendly guy.

I did not donate at current rate as I was waiting for another early donator to get his XEL, but he seems not interested anymore...

But anyway I will make donation at current rate for sure, I will try a tiny amount to check that everything is working fine then I will make a bigger one.

Hope that answer your question  Wink
full member
Activity: 182
Merit: 100
If I red your posts correctly you wish to get a discount and after this you want to donate at the current rate and become a part of the project.
Did you buy already to current rates? I'm just asking without any offense  Smiley I'm a friendly guy.
full member
Activity: 180
Merit: 100
First I will not explain again my logical and respectful reasons to want to get XEL from early buyers before to make a donation, it has already been explained and if some people cannot read my post or understand they better no post and anyway they don't deserve my time.

Besides I have spent some time to read the last half of this thread and I have some questions if Evil-Knievel and / or Lannister wishes to answer them.

Earlier "Dazza" was working with you and specifically on the computational side of the project, I would like to say the core of the project. Now it seems that Dazza has some personal issues and did not appear on btctalk since few months, so it seems possible that he will not contribute on this project anymore.

According to EK, dazza was a key element for this project, so I would like to know if even without Dazza both of you are still confident to be able to achieve this project ?

If I go to the website http://forum.elastic-project.org/ I cannot see any post and the forum is totally empty, like there is only the frontpage and no activity, the only articles are about wordpress.
Am I on the good website, do I need to register to see the activity?

A last question is about the donation collected, I would like to know how long time the devellopement of the project can be funded with the remaining BTC considering the value of BTC remain the same?

full member
Activity: 182
Merit: 100
The project is advancing fast and it gets solid. There will be nobody seriously sell at this stage. Why they should? Get it from the donation side. It is more expensive now but that's life.
legendary
Activity: 1456
Merit: 1000
WTB XEL at rate 8000 XEL / BTC, I am open for discussion about the price.

I accept only if lannister is doing escrow and can insure me that I will have the full ownership of XEL with no risk of stealing from the seller.

PM me if interested




but why on forum?
you can buy it on "ico" site

I have tempted to answer but my post has been deleted.

Should I know the reason?

Anyway that's strange, I will try to answer again without any deleting;

So I have seen in the thread that some people wished to sell their XEL ( for reasons that I don't know, maybe increased price of BTC / some bills to pay / etc ...), so I am offering to buy back their XEL but at a better rate than current IPO price.

On my side I get more XEL  and on their side they can cash out.

 I am just asking and if you are not intertested you can just don't pay attention to my offer, and if you are interested you just have to PM me.




No one has their XEL to sell yet.
legendary
Activity: 1260
Merit: 1168
Quote
hope that helps, here is our GIT
https://github.com/LIMXTEC/Europecoin-V3

Thank you very much ;-) This looks pretty good! I will try to get a DETAILED look at your project this afternoon  Wink
legendary
Activity: 1260
Merit: 1168
It's so quiet in here, so I feel I have to give some kind of update to what I have done.

You have probably seen a lot of activity in the github repository. At the moment I am working on many of the small details of the protocol including:

- making sure that bounties are correctly paid. This is not trivial because, unlike POW rewards, which are paid immediately, bounties are collected and then, after a job is closed, timeouted or runs out of funds, the bounty fund is split among all bounty submissions.
- making sure that work timeouts work flawlessly, and that the remaining funds are refunded properly.

This requires some special treatment in the block validation routines: a block MUST for example enforce a job cancellation transaction if the blockheight is equal to the work expiration block height. And with all cancellations we have a list of bounty payments that have to be ensured to be in the block.

This is a bit different to bitcoin, because in our case certain transactions HAVE to be there and some of them HAVE to come together with other transactions. In bitcoin, each transaction is independent.

Furthermore, I have spent a lot of time addressing rounding problems. As some "arbitrary" design decisions had to be made, I share my thoughts with you here so anyone of you can give his veto if not agreed:


Common problems when working with fractions!
==============================================

== 1. Rounding error on bounty payments may occur, which would normally cause little fractions of XEL being destroyed. 1 XEL, to recall, is described by 100000000 NQT.

Example:
- The Bounty fund (for fucks sake) is 100000001 NQT
- We have two bounty submissions
- Each submitter is credited half of the bounty fund
- As we have no fractional NQTs, everyone would get 50000000.
- 1 NQT (which cannot be split up) would get lost
- Even though 1 NQT is almost nothing, we do not want any deflation.

The lack of subNQT values is essential here, so we track how many NQT would actually get lost. Those NQT get assigned to "someone" "randomly". I suggest the lowest account number of all bounty submisions (this is deterministic and unique) is credited those rounding-error-NQT.

This NQT saving function is implemented in BlockImpl.java in function checkIfBlockContainsNecessaryBountyPaymentTransactions();

== 2. Same problem may occur when a job is being created. Usually you attach some amount of XEL which gets split up in 60% which go to the proof-of-work fund (we need to write that down in some blog so people can understand this scheme easily), and 40% go to the pow found.

Due to the lack of fractions, we are faced with the same problem. Fractions of XEL might be lost when the split 60:40 would result in sub-NQT values which get ignored.

Here, I also suggest to track how many NQT would get lost due to such split, and add it by default back to the proof of work fund.

copper member
Activity: 2324
Merit: 1348
Any progress on the development?

I am working a lot on the protocol "under the hood" right now. I avoided giving a visual update because there is none.

My goal is to be able to do a video demonstration by the middle of next week where you can submit work on "client 1",
and see "client 2" receiving that work and starting to contibute CPU power to it (visible in the Task Manager) while periodically earning Elastic Coins.
At the same time we will see how "client 1" receives his desired solutions to his work.

All without being cryptographically secure yet, of course. This will follow in a month or two. It's just meant to demonstrate the working network protocol.

If anyone of you has a simple idea what "work" we could use for the demonstration, feel free to tell me. It must be something simple that can be "bruteforced" like for example "mining a block for some CPU coin"). I think a distributed optimization with multiple iterations would be godlike, but also way too hard to understand by someone who is not doing that stuff every day.
Prime numbers solving or find convergent solutions to any already solved differential equation?? I'm sure in this forum there is some mathematicians that can give you some good ideas about this...


Hey see your discussion and maybe this helps, we just ported Hodl to a new core and built in a shield against the chain stopping at low mining rates,
we also built a new tricky diff retargeting algo with a dual KGW algo. (two kgw, one hardcoded to check against)

hope that helps, here is our GIT
https://github.com/LIMXTEC/Europecoin-V3

sharing is caring,
Matthias

Yes this is correct @ Matt ^^ Write a PM if you question about the git.
legendary
Activity: 2100
Merit: 1012
Europecoin Financecloud API
Any progress on the development?

I am working a lot on the protocol "under the hood" right now. I avoided giving a visual update because there is none.

My goal is to be able to do a video demonstration by the middle of next week where you can submit work on "client 1",
and see "client 2" receiving that work and starting to contibute CPU power to it (visible in the Task Manager) while periodically earning Elastic Coins.
At the same time we will see how "client 1" receives his desired solutions to his work.

All without being cryptographically secure yet, of course. This will follow in a month or two. It's just meant to demonstrate the working network protocol.

If anyone of you has a simple idea what "work" we could use for the demonstration, feel free to tell me. It must be something simple that can be "bruteforced" like for example "mining a block for some CPU coin"). I think a distributed optimization with multiple iterations would be godlike, but also way too hard to understand by someone who is not doing that stuff every day.
Prime numbers solving or find convergent solutions to any already solved differential equation?? I'm sure in this forum there is some mathematicians that can give you some good ideas about this...


Hey see your discussion and maybe this helps, we just ported Hodl to a new core and built in a shield against the chain stopping at low mining rates,
we also built a new tricky diff retargeting algo with a dual KGW algo. (two kgw, one hardcoded to check against)

hope that helps, here is our GIT
https://github.com/LIMXTEC/Europecoin-V3

sharing is caring,
Matthias
sr. member
Activity: 448
Merit: 250
Ben2016
I agree. No rush to launch lite client until the donation period ends.

EK should be free to allocate his time in getting on with the core project development rather than managing multiple genesis blocks.
I agree 100%. Guys, please don't let anyone push you. You are in the right track.
legendary
Activity: 1775
Merit: 1032
Value will be measured in sats
full member
Activity: 182
Merit: 100
Just check http://www.elastic.pro/donations to see the XEL/BTC going from 8000 XEL per BTC in the beginning to 4000 XEL per BTC at the end of the ICO
full member
Activity: 182
Merit: 100
Why not buy on ico ? It would be better and faster .

Faster it would be but more expensive as well. I guess the deal is to get the early investments when XEL to BTC was quite more favorable.
legendary
Activity: 3360
Merit: 1203
Why not buy on ico ? It would be better and faster .
full member
Activity: 180
Merit: 100
Hi Lannister,

First, thanks for the time spent in order to transfert the ownership of some accounts.

With the deal I have done with Jeremy, it seems that he has done everything right and on my side I sent the btc, so could you confirm the transfert of ownership is ok and definitive?

Now I have to apologize in advance because I would like your help again for another transfert of ownership from "TheDR", he is going to sign the same message as Jeremy with some of his accounts in order to give me the ownership of his XEL.

So could you tell me when everything is ok and I have the ownership of his XEL in order I can send him the btc? Is it ok if I use the same public key / address?

I don't want to use your time neither to pollute the thread with these transferts of ownership, so I declare that after the transfert from "TheDR" I will not accept any other deal but I will make a donation instead in order to help the project and be more involved.

As you have may noticed I am technically closer to a noob than an expert but I do understand the economics behind crypto, so I will try to help in this field later.
full member
Activity: 124
Merit: 100
I never setup mining on any coin before. I attempted to mine btc back in it's ancient times but should of tried harder lol. I decided I want to be an Elastic miner and would like tips on what hardware and learning I should acquire.
full member
Activity: 182
Merit: 100
legendary
Activity: 1092
Merit: 1001
Sounds good to me as well!
legendary
Activity: 1624
Merit: 1005
I wish you all love and profitable investments!!!
Evil-Knievel, any progress on the lite XEL wallet?
Cheers!

The thing is, that some community members disagreed on a light wallet prior to the final launch. Maybe we could use the same mechanism we know from the Bitcoin BIP softfork voting. We could roll out a lite wallet that is not functioning until at least 75% of the network (of course weighted by the amount of XEL they own) broadcasts a "agree with launch" transaction. That could be one fair way to do it democratically.

Other than that, from what I see the donation campaign ends in around ~35-40 days. If we roll out something before the donation campaign ends, we will have to have multiple genesis blocks, which succesively injects donations which were made after a rollout into the software. This may become pretty comples. We could also just wait, and then skip the complex "multiple genesis blocks" stuff and roll out a light (but armed) wallet working in light mode until the alert public key broadcasts the "GO!".

What do you think about this scheme:
- In 35-40 days, when the genesis block is fixed, a alpha version of the wallet goes online.
- On the main net everything else but the basic functions (send, receive, sign, messaging) is disabled
- The testnet has all the stuff enabled.
- From that time on, XEL can be moved around and people can try to collect the bug bounties on the testnet
- The wallet will be designed in a way that, if critical bugs are found they will require an update of the client.
- Yet, not everyone needs to update, only those on the testnet
- As someone wrote in the time sheet (seriously, it was not me but I try to stick to it) we then have to wait for a 3 week period in which no new bugs are found.
- When the whole thing is ready to launch, the alert pubkey broadcasts a "GO" and there will be a (24 hour??) countdown where users have time to update to the latest version visible in the UI.
- Then the whole thing is live

I am not the one to decide anything, I am just coding, but I would strongly suggest to stick to the 3 week bug-free period requirement.
We have seen what may happen if people rush and want to be "the first on the market" at any price.




Agree. Of course genesis should start after the end of the donation campaign.
Jump to: