|
|
|
|
|
by rcxdude
1500 days ago
|
|
ASICs only offer a benefit through significant specialisation. Specifically with bitcion the double-SHA256 hash lends itself to an extremely efficient hardware operation which beats any general-purpose system substantially. In general what you want to do is design the algorithms differently. There's a few reasons to do this. Firstly your new coin probably doesn't want to run best on hardware which is already used by a bigger coin, especially bitcoin, because then there's a massive attack vector just looming over you as the existing miners could just turn a fraction of their processing power towards your network and destroy it easily. This means you generally want to come up with a novel proof of work function which is not easily computed by existing miners. The best form of this is using a completely different hardware resource. Secondly (and apart from the few large coins which generally got to this idea first, competing with the first point), if you care about keeping your miners distributed in terms of ownership and control, it helps if said algorithm is tuned for some general purpose bit of hardware your users are already likely to have for some other purpose. Ethereum's PoW was expliticly designed to be optimal for GPUs (because computing it is memory-bandwidth limited), and Monero's was designed to be optimal for CPUs. Chia's system was optimised for storage space instead of compute power. Lower-effort clones (e.g. dogecoin) tend to at least change the hashing algorithm used at little to provide some protection, but to a lesser degree (e.g. Ethereum is probably safe from attacks by bitcoin miners, Monero is probably safe from ethereum miners, but while dogecoin is probably safe from attacks by bitcoin miners, it's not safe from the other larger coins, and especially bitcoin forks have actually been attacked by bitcoin miners). |
|
(your last point however is valid nonetheless, the scenario of large blocks of capacity jumping between networks and how deliberate algorithm design tweaks might offer some protection)