Bitcoin Forum
May 30, 2024, 05:50:56 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 20 21 22 23 24 25 26 27 »
41  Alternate cryptocurrencies / Altcoin Discussion / Re: New Cryptocurrency written using 'Rust', looking for another programmer on: September 29, 2015, 06:16:28 PM
The coin I am making is pretty unique and different from any other coin I've seen out there.

Let me talk to you via private message, I suspect we could work something out though, particularly if you guys have any developers or marketers that I could hire, such as you.. mostly paying stock options for now but I could probably pay one developer in cash to help with a few of the smaller features required for the initial release. At that point we can get investors and have enough money to hire others.
42  Alternate cryptocurrencies / Altcoin Discussion / Re: New Cryptocurrency written using 'Rust', looking for another programmer on: September 29, 2015, 04:32:09 PM

Coin is going to be named 'Fractal'



Would you be interested in doing a coin burn/swap from the original Fractalcoin and making it a relaunch for existing users?  It launched over a year ago, it's already listed on Cryptsy, and it would bring over a small but established base of users.

Yeah, we choose the name first, then we did realize there was a coin with that name. It seemed like the coin died.. market cap of < $6000? Dead site, etc.

Fractal just so perfectly describes one of the key concepts of what is unique about this coin.


We could talk to them, my first inclination is I want to start from scratch but would be willing to talk to them, maybe some very small piece of the coin. Feel free to put some of them in touch with me.
43  Alternate cryptocurrencies / Altcoin Discussion / Re: New Cryptocurrency written using 'Rust', looking for another programmer on: September 29, 2015, 03:16:38 PM
Good point. One fix is to allow account balances to dip into negative, keeping track of which accounts currently have negative  balances. And when finished processing, accept the block only if no such account balances exist.
This method is applicable only to payments. It won't work on advanced features like asset exchange.

Nah, same idea, just treat every asset balance like a seperate account balance for that account.
You still have to have some canonical order for market orders.

True, maybe a little trickier but I don't see it being impossible. Perhaps something like your chaining idea could be involved or the block creator could simply include a numbering for all trades on same asset in same block.  And again, right now I'm focused on version one, assets probably won't be till version 3, and parallelizing their processing until later still.. or perhaps parallelize first, then assets. Either way, I'm still in the early stages of the initial product, eventual parallelization was just meant as one more reason for choosing Rust.

CfB based on the previous conv, sounds like you are too busy for something like this. Bcdev,would you be interested?
44  Alternate cryptocurrencies / Altcoin Discussion / Re: New Cryptocurrency written using 'Rust', looking for another programmer on: September 29, 2015, 03:03:11 PM
Got it, guys. What is the name of the currency, so I could spot it when it's released and check how parallelization works?

It's going to be a little bit, least 2 months, probably 3ish.

Coin is going to be named 'Fractal', happy to ping you and let you know. Feel free to do the same when you release your new project.

And like I said, parallel processing probably won't be in version 1.

@mczarnek: Do you have in mind a tx-based currency [like Bitcoin] or account-balance-based one [like NXT]?
I'm planning account based, makes blockchain trimming much more compact.

Good point. One fix is to allow account balances to dip into negative, keeping track of which accounts currently have negative  balances. And when finished processing, accept the block only if no such account balances exist.
This method is applicable only to payments. It won't work on advanced features like asset exchange.

Nah, same idea, just treat every asset balance like a seperate account balance for that account.
45  Alternate cryptocurrencies / Altcoin Discussion / Re: New Cryptocurrency written using 'Rust', looking for another programmer on: September 29, 2015, 02:53:11 PM
Not every transaction depends on the transaction before it. You can parallelize 99.9% of transaction processing and keep 0.01% serial [if one transaction depends on the one before it in the same block].

What is the source of your numbers?
I don't have a source. I don't think it's needed in this case.
Look at this block for example: https://blockchain.info/block/000000000000000000c0e693dd6c552e8ba40ac63d978f7cef1b49cce03f8c7d
While there are some chains of transactions [I can see even one chain of 10tx!] they are exception. Most of transactions are using transactions from previous blocks. These can be easily parallelized.

Even if there were many chains in the block which would make parallel processing difficult [lots of waiting for chain to complete], it'd be quite easy to fix on miner side. [Make chains spread out all over the block, don't keep chain together when you forge a block.]

Something like this could also help where you link transactions back to the ones they rely on seeing first though my initial thought is that dipping into negative balances may be easier to implement and enforce.
46  Alternate cryptocurrencies / Altcoin Discussion / Re: New Cryptocurrency written using 'Rust', looking for another programmer on: September 29, 2015, 02:34:48 PM
I don't see any reason you can't parallelize transaction processing, which seems to be the majority of the work miners are doing.

Alice has $10, Bob has $0.
Block contains "Alice pays Bob $5" and "Bob pays Alice $5".
One node will accept this block, another node will reject it because thread scheduler will lead to the opposite order of transactions.

Good point. One fix is to allow account balances to dip into negative, keeping track of which accounts currently have negative  balances. And when finished processing, accept the block only if no such account balances exist.

Again, two steps, each of which can be done in parallel.. or maybe the second step can even just be, "Is list empty?"
47  Alternate cryptocurrencies / Altcoin Discussion / Re: New Cryptocurrency written using 'Rust', looking for another programmer on: September 29, 2015, 12:51:24 PM
I don't see any reason you can't parallelize transaction processing, which seems to be the majority of the work miners are doing.

I intend to keep basically a running total going for the most frequently used accounts, and as you process a transaction, you check to see if that account had enough money, assets, etc at that moment.  Even if they are out of order, the miner who initially mines them can mine them in either order.

I don't know that I would use it here would have to think through security implications further, but hashing these blocks together to make sure they have the correct hash could be done this way too, you just could keep an accumulator which is basically the 'sum' of all the byte values of transactions so order isn't important, appended to the header info, then at the end you put it through the hashing function.  And when it comes to verifying transactions, similarly it doesn't matter if they are out of order or not, either the block is valid or it isn't.  You can process all transactions in parallel into a buffer that is sorted by changes to individual account ids, then go through and check those all at once, then finally apply them. Each of those steps could be done in parallel.

Granted you would have to verify and manipulate all transactions in the block you are checking before you starting building the new one, but building a new block or verifying a block someone else mined could be done in parallel.

This probably would not be in version one as it is indeed a little trickier, but somewhere does the line, it would be nice to have this easy to add.  You could hope for 3 times speed up of block processing on a 4 core CPU.  Which may someday be significant.
48  Alternate cryptocurrencies / Altcoin Discussion / New Cryptocurrency written using 'Rust', looking for another programmer on: September 29, 2015, 01:19:29 AM
Hello,

I am in the process of writing a new cryptocurrency, because of the uniqueness of the mining algorithm, it needs to be re-written from scratch.  I've started the program using 'Rust' to do this.  I went with Rust because it means it means the transactions processing will be able to be parallelized easier and also because it forces you to write secure code that doesn't have the potential memory risks of C++ but in theory runs as fast as C++ (C++ has had lots of time to optimize itself.. Rust is still newish).

Any chance any developers are out there and interested?  I'd be happy to further explain the idea behind this new coin which I think will grab some attention.. the project just still happens to be in 'Stealth Mode'.


If you want to learn more about Rust developed by Mozilla, I recommend reading this post. It was the eye opener for me:
http://blog.rust-lang.org/2015/04/10/Fearless-Concurrency.html

Or check out rust-lang.org
49  Alternate cryptocurrencies / Altcoin Discussion / What is your favorite amount of total supply of coins? on: September 25, 2015, 01:14:49 PM
Realize it's a fairly small consideration, but if I'm releasing a new coin, how high would you set the total supply of coins?

Anyone have a favorite?  21 million? 1 billion?  100 billion?  Any reason it's your favorite?

Thanks!
50  Bitcoin / Bitcoin Discussion / Re: Decentralized Provable Identity on: September 16, 2015, 02:43:31 AM
I want to give them 'special abilities' or rights if they are a unique person, I'm thinking maybe combine POC with picture or something like that.  So you need to spend at least a minimum amount of economic resources as well as providing an image.

So a private key isn't enough by itself.
51  Bitcoin / Bitcoin Discussion / Re: Decentralized Provable Identity on: September 16, 2015, 12:36:15 AM
Very interesting..  The issue though is that I would like to be able to prove that you don't have multiple identities as best possible.

Actually that is a very interesting idea adamstgBit...  issue is on a massive scale and people faking photos.  But there might be something there and it might be good enough.
52  Bitcoin / Bitcoin Discussion / Decentralized Provable Identity on: September 16, 2015, 12:15:49 AM
For one of my projects, I would really like a way for people to be able prove their identity.. ideally in a trustless way.  Is this possible?

I believe the answer is an obvious it's not possible.. but just curious to hear thoughts.  As far as I'm concerned, anonymity is not an issue.
53  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][BURST] Burst | Efficient HDD Mining | New 1.2.3 Fork block 92000 on: July 13, 2015, 07:23:16 PM

On another note, I get a popup asking for username/password and stating "page suspended" on burstcoin.eu. For God's sake, don't let Burst's best site close!

The law in Germany requires him to put a link [Impressum]. If this page is missing a punishment of 5,000 to 25,000 Euro is the result.
He prefers NOT to do that page, so he needs to close. I don't know what he wants to hide by not revealing his NAME, ADDRESS and VAT number (in case he has a company). See a sample at http://burstcoin.de/impressum.htm

A good replacement is https://block.burstcoin.info

I hear you only need such a page if you are selling something, as far as I can tell burstcoin.eu is not selling anything.

Source (may not be the most accurate but worth examining): http://www.toytowngermany.com/forum/profile/16-editor-bob/

Point being,  no reason to close it smaxzer! It's a really nice site and I'd hate to see it disappear.
54  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][BURST] Burst | Efficient HDD Mining | New 1.2.3 Fork block 92000 on: June 30, 2015, 01:18:11 AM
I have no access to any Burst coin account and can not simply "dump" any coins. I bought this account, very cheap due to these controversies, which at the time I was not aware of. I bought it for sig. purposes. I make some income by posting with high ranked account on the forum to support my family.

You told me you made .01 BTC max per account you own... I highly doubt the story but pretending it is true for $2, could you please stop posting from our dead friends account?  In fact I'll buy the account off of you for .05 BTC.  And how many accounts do you have that you are posting from?  I'm guessing a job at McD's would probably pay better.

I'm convinced that mmmaybe's dumping his coins and this whole thing is his attempt at a PR story to try to get some press before he dumps them all.
55  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][BURST] Burst | Efficient HDD Mining | New 1.2.3 Fork block 92000 on: June 25, 2015, 11:36:43 PM
Been holding Burst for ages now but stopped watching it a few months back. Ecstatic to see an active community still exists for this coin, and the dev still (slightly) active. Surprised to see the price has been doing so poorly despite such an innovative project with active developments. But I guess most altcoins suffer in price in times of Bitcoin recession. I'm still optimistic for the future of this project, and I'll buy some more Burst to keep my average buy price down. Sorry I can't do more for Burst, keep on fighting the good fight.

i'm not worried about the price...
but i'm worried about transaction count..
we are going down...
we need some idea to change outlook...



If you are worried about transactions per day.. go look at Nxt's transaction count.. we're beating them by a lot I believe, mostly because mining granted but it counts for something!
56  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][BURST] Burst | Efficient HDD Mining | New 1.2.3 Fork block 92000 on: June 25, 2015, 08:20:57 PM
#Debenture

4 day left !!!!
Get 1% Profit Weekly and Double your NXT/BURST on Next Year

https://forum.cryptomining.farm/index.php?topic=7.0

https://asset.cryptomining.farm/asset-debenture

Koko, what's happen to cell on c-cex.com ? all freeze



guys ,what you think about this debenture asset?

I have trouble understanding how they can promise to double it.. are they buying that extra Burst now and holding on to it?  Otherwise,  what about when Burst shoots up in price by at least 10x? And how do they make money from this asset? Idk.. I'd avoid it.
57  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][BURST] Burst | Efficient HDD Mining | New 1.2.3 Fork block 92000 on: June 25, 2015, 01:05:59 PM
Just wanted to say that I'm in Burst now. I sold all my viral and bought burst and circ instead.
Please don't let me down, I already lost money on the viral scam.
p.s. gpu mining a wonderful idea.

How is viral a scam?  And doesn't look like you could've lost that much looking at the price chart. Every stock/crypto will have it's up and downs.. just have to buy during the down, not the up! Anyway I still don't own any as I tend to stay away from POS but it's one that's always seemed interesting to me and I may buy in at some point.

Yeah, I'm with Iron, HDD mining totally beats GPU mining Smiley After all GPU mining can't really be made ASIC proof... so if it ever takes off, it loses the feature it was built on.
58  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][BURST] Burst | Efficient HDD Mining | New 1.2.3 Fork block 92000 on: June 20, 2015, 12:49:03 AM
Has anyone info if another coin is intrested in integrating cyam technology?

I've no clue, but I do know CYIAM recently did a really stupid thing, more or less blackmailing the forum. As a consequence, he had to payback the BTC he up till that time held for the forum due to his great reputation. However, he's reputation must have gone down the hill, fast, after this, and I'd be surprised if it did not effects his business.

After reading about that, I don't own any Burst but is waiting for the market response to that and the future development, including funding. Edit


What?  Could you please elaborate or show us posts or something?

Keep in mind thought that it is largely vbecas and burstdev who implemented smart contracts.  CIYAM wrote them initially in C++ but he's barely touched the Burst implementation as far as I know.

Personally though, I think CIYAM is a great asset, and I'm not trying to distance ourselves.. just want to hear details for what you are saying and saying that even if it's true.. smart contracts will go on.
59  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][BURST] Burst | Efficient HDD Mining | New 1.2.3 Fork block 92000 on: June 20, 2015, 12:46:38 AM
Here's my take on how to make this coin more attractive.

1) No need to change the name.  The only problem with "burst" is that it's a commonly used word. Using "burstcoin" instead of "burst" makes every mention searchable and discoverable. 

2) This coin needs a white paper. A prestigious, high quality, peer-reviewed white paper, focusing on Proof of Capacity and on Smart Contracts. The blog posts by Mczarnek are a good starting point, but polishing and review is required. Hint: Lisa Cheng is an expert in white papers and has been involved in the production of white papers for some other cryptocurrency projects. Another hint: google "Eight Rules for Creating Great White Papers".

3) Don't change the underlying parameters of this coin. Yes, the low price of the coin may be caused by miners who are dumping their coins. But this should be countered by attracting new buyers through the publication of a highbrow white paper.  Changing parameters or changing the name is an admission of failure, which is unnecessary with this coin.
 

Appreciate the thoughts laurelled.

I will look into Lisa Chang.. perhaps we can pay her for some help crafting a better paper.  Step number 7 of "Eight Rules for Creating Great White Papers":  Have a writer write it..  maybe we could could at least get someone to help us organize the flow.

Should a whitepaper be focused just on Proof of Capacity?  Then a separate white paper for our smart contracts implementation?
60  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][BURST] Burst | Efficient HDD Mining | New 1.2.3 Fork block 92000 on: June 19, 2015, 04:20:09 AM
So bitladen got me thinking about block rewards.

It might not be a good idea to touch them at all but what if we simply stretched out the block rewards, so basically we half them but they are printed in a way to get to a similar final supply.  We are currently printing about 2,1000,000 Burst per day ~ $300, which coincidentally is a large part of the daily volume of Burst.  So if we were to cut it back, then miners would stop dumping as much, the price of Burst in general would go up.. and they would still be making more than half as much but have a longer period of time during which it is profitable to mine and inflation goes down so investors should be more willing to jump on board.

Agreed?

Miners stop mining - coin dies.

Whoops!! Mistyped that.. I don't think miners would stop mining.. I meant stop dumping as much.  Corrected in the versions I could change.

I mean let's face it, they have the equipment set-up already, it's quite cheap to mine, and there still is the same amount of money to be made in the long run.. and given that investors would see the price increase that would almost be bound to occur short term.. they'd probably rush in, we'd see a bubble and network strenthen would actually increase.

Theoretically anyway.
Pages: « 1 2 [3] 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!