Bitcoin Forum

Alternate cryptocurrencies => Announcements (Altcoins) => Topic started by: sorpaas on July 26, 2019, 06:42:56 PM



Title: [ANN] Solri - Self-evolving Blockchain, WebAssembly, Proof-of-Work, No Premine
Post by: sorpaas on July 26, 2019, 06:42:56 PM
Highly inspired by Substrate (https://github.com/paritytech/substrate) by Parity Technologies and Ethereum 2.0 (https://github.com/ethereum/eth2.0-specs/) by Ethereum Foundation, Solri is a proof-of-work blockchain designed to be simple, self-evolve and stateless.

  • Website: https://solri.org
  • Specification: https://github.com/solri/specs
  • Twitter: https://twitter.com/solri
  • Work-in-progress MVP: https://github.com/solri/solri
  • Matrix: https://riot.im/app/#/room/#solri:matrix.org
  • Discord: https://discord.gg/DZbg4rZ

In particular, Solri’s design goals are to:

  • Become a pure coin, in most possible aspects that blockchain community cares about. This includes having no premine and establishes fair launch.
  • Use well-established Proof of Work consensus algorithm, and at the same time, allows it to change to either become ASIC-friendly or ASIC-resistent.
  • Most essential functions of the blockchain is coded into WebAssembly runtime. This makes it so that the blockchain can evolve and upgrade features without hard fork. In fact, we aim to never conduct any hard fork!
  • Have clear and simple specification to make supporting multiple implementations easier.
  • Be stateless. To fully verify a new block, you will only need the parent block together with the parent block’s runtime output. This reduces the bare minimal storage requirement for full node to nearly zero. In practice, clients can selectively choose to only store states it cares about.

Disclaimer

I'm Wei Tang (sorpaas) (https://github.com/sorpaas), a Rust/core developer working at Parity Technologies. However, Solri is entirely a hobby project and is not endorsed by Parity Technologies or any other organizations. The network is also not launched yet, and the reference implementation MVP is still work-in-progress.

Launch Strategy

The initial network is expected to launch with basic account-based transfer functionalities, and it requires future network participation to implement additional features such as smart contracts and privacy. All of this we aim to be done by only modifying the online WebAssembly runtime, so it should be without any hard fork. In a catastrophic event we may decide to relaunch the network. So please bear in mind that initially the network should not to be expected to have values.

In Solri, we don't distinguish testnet and mainnet. Once we need to test new features, we create a pegged testnet chain where you can transfer fund from mainnet, and test things. Once we decided it is stable, the testnet's state is merged into mainnet, so that no information is lost.

Regarding software development, we aim to get a MVP first, which has all the block validation and production functions, but without networking. We later add networking and other non-essential functions into the MVP, so that it is suitable for a network launch. We aim to get the MVP in the next one or two months, and conduct the initial network launch in the next four to eight months.

Scaling Strategy

It is possible to implement shards or other scaling solutions in Solri. A main advantage we have here is that shards are "stateless", in that they only need to commit verification computations to the main chain, while do not incur any storage cost. This is slightly different from PoS systems' "shards" and more similar to merge mining and pegged chain in PoW systems. Note that we cannot implement oracle system using this -- it must resort to other common solutions in PoW system, because there's no "validators" we trust.

Governance

Like any other blockchains that can self-evolve, to install feature upgrades without hard fork, we need a governance system. The initial governance system will be a simple majority miner vote. As with all other things on Solri, the governance system can also be changed without hard fork. In the future (after the initial launch) we plan to implement more sophisticated governance system that allow better community voice.

Limitations

With WebAssembly runtime we will be really flexible in terms of what features we can implement without hard fork. We can change account model, change how smart contract works, change the state completely, or do any other massive operations. It's also possible to change the PoW algorithm if we want to be ASIC-resistent/ASIC-friendly. However, it's not possible to change the fork choice rule -- meaning, we'll stay on Proof of Work unless a dramatic hard fork happens.

Fun Facts

Solri is a Lojban (https://mw.lojban.org/papri/Lojban) word meaning "the Sun".


Title: Re: [ANN] Solri - Self-evolving Blockchain, WebAssembly, Proof-of-Work, No Premine
Post by: sorpaas on July 26, 2019, 07:30:12 PM
Just to post some questions I received regarding Solri:

What's the proof of work algorithm?

We're tentatively deciding on Sha3-256. Note that this can be changed in an online upgrade.

What's the monetary policy?

We don't have a fixed monetary policy at this moment yet. It's entirely up to the community and can be changed in an online upgrade.

Do we have a wallet?

No. The network has not been launched yet!


Title: Re: [ANN] Solri - Self-evolving Blockchain, WebAssembly, Proof-of-Work, No Premine
Post by: notsofast on July 26, 2019, 07:37:35 PM
I joined the discord and would be pleased to assist with advice on monetary policy, PoW algo, and anything else you may need.


Title: Re: [ANN] Solri - Self-evolving Blockchain, WebAssembly, Proof-of-Work, No Premine
Post by: rgsnedds on July 26, 2019, 07:48:08 PM
discussing algo options.


Title: Re: [ANN] Solri - Self-evolving Blockchain, WebAssembly, Proof-of-Work, No Premine
Post by: HelioWallet.com on July 26, 2019, 07:50:40 PM
That's good. I pinned it, waiting for the release date.


Title: Re: [ANN] Solri - Self-evolving Blockchain, WebAssembly, Proof-of-Work, No Premine
Post by: sorpaas on July 26, 2019, 09:38:36 PM
Have you tried hex? underrated barely used algorithm which wont have asics on it anytime soon.

Will take a look. But to be honest, at this moment we really just want a mining algorithm that is:

  • Known to be bullet-proof, and has no vulnerabilities.
  • Simple, and have a good implementation in Rust

Because the mining algorithm can be easily swapped out without hard fork in the future anyway.


Title: Re: [ANN] Solri - Self-evolving Blockchain, WebAssembly, Proof-of-Work, No Premine
Post by: oldgpuminer on July 30, 2019, 06:30:36 AM
The cuckoo algo seems like a good choice if Rust is your intention


Title: Re: [ANN] Solri - Self-evolving Blockchain, WebAssembly, Proof-of-Work, No Premine
Post by: gigabyted on July 30, 2019, 06:00:58 PM
I'll check into it as well!


Title: Re: [ANN] Solri - Self-evolving Blockchain, WebAssembly, Proof-of-Work, No Premine
Post by: LaserBadger on August 05, 2019, 08:36:06 PM
Will watch this , Looks interesting

Badger Farm is ready


Title: Re: [ANN] Solri - Self-evolving Blockchain, WebAssembly, Proof-of-Work, No Premine
Post by: sorpaas on August 09, 2019, 12:12:11 PM
Some development updates -- we've got a "MVP of MVP" implemented at https://github.com/solri/solri

The runtime is currently a stub, while the engine is mostly working. This is probably not really useful for end users, but just in case if you're interested in the idea behind Solri and want to take a look at the code!