Bitcoin Forum

Alternate cryptocurrencies => Announcements (Altcoins) => Topic started by: octavonce on September 15, 2018, 01:58:36 PM



Title: [ANN] Purple Protocol - The Global Decentralized Ledger Infrastructure
Post by: octavonce on September 15, 2018, 01:58:36 PM
https://i.imgur.com/R62A4w6.png

What is Purple?
Purple is an experimental blockchain protocol that started out as a research project for solving the scalability problem in public blockchain systems. It's purpose is to achieve the following:

* Provide the foundation of a decentralized multi-asset ecosystem.
* Achieve the highest scalability level possible on a public blockchain protocol.
* Be easy to use and to understand for both technical and non-technical persons.

What consensus algorithm does Purple use?
It is a variation of the original Proof of Work system that Satoshi Nakamoto invented and is based upon decades of research in distributed systems. It is designed to remove the transaction throughput bottleneck which blockchain systems currently have, the result being a much faster and scalable system which can in theory support mass usage.

Built for long term use
In Purple, multiple currencies/assets are handled at the protocol level. This means transaction and smart contract fees can be paid in any listed currency if the miners accept it. This in turn, means that even if the main currency of the protocol dies, or is otherwise lost, the protocol can still function because users can send transaction with fees paid in any currency.

Issue tokenized assets without writing any code
A main feature of Purple is the ability to issue tokens and assets without requiring to be a software engineer. Creating a fungible token or a non-fungible asset is as simple as filling a form. All created assets can then be transacted at the protocol layer in the same way as the purple token is. A token can be a simple issuable token or a complex asset that has custom functionality.

Decentralized exchange
Another result of native multi-asset support is that a decentralized exchange between all listed currencies can exist at the protocol layer. This provides a safe and reliant infrastructure for users wishing to own multiple assets. Any native token or security that is listed on the ledger will, by default, be able to be bought and sold on the decentralized exchange.

Virtual machine
Purple supports the execution of Turing Complete smart contracts. For this, a new Virtual Machine is being designed which will serve as a compilation target for many widespread programming languages. The aim is to enable developers to write smart contract software in familiar and well known programming languages.

Supported programming languages
We plan to support any programming language that can be compiled down to LLVM bytecode. A list of languages that are compatible can be found here: https://en.wikipedia.org/wiki/LLVM

How did this start out?
Purple was "officially" founded by software engineer Octavian Oncescu on the 1st of March 2018 but it's inception begins in December 2017 when research began on the subject of scalability on public blockchain systems.

Will there be a crowdsale?
Most probably, no. Coins will be distributed to miners.

What is the current status of the project?
Purple is in heavy development but will soon enter the testnet phase.

Participate in our crowdfunding campaign
You can help us further develop the protocol by participating in our crowdfunding (https://purpleprotocol.org/blog/participate-in-purple-crowdfunding-campaign). If you donate you will mean the world to us!

Join us
If you believe in any way, shape or form that you can contribute, do not hesitate to do so. Give us a message on Discord if you want get hands on and become a part of this: https://discord.gg/5ZVZnKd.

Links
* Whitepaper (https://purpleprotocol.org/whitepaper/)
* Website (https://purpleprotocol.org/)
* Blog (https://purpleprotocol.org/blog)
* Github (https://github.com/purpleprotocol)
* Twitter (https://twitter.com/purple_protocol)
* Reddit (https://www.reddit.com/r/purpleprotocol/)
* Facebook (https://www.facebook.com/purpleprotocol/)
* Medium (https://medium.com/purple-protocol)
* Discord (https://discord.gg/5ZVZnKd)
* Telegram (https://t.me/purple_protocol)


Title: Re: Purple Protocol - A scalable platform for building decentralized applications
Post by: djwatt3 on September 15, 2018, 02:00:08 PM
https://i.imgur.com/R62A4w6.png

What is Purple?
A new protocol that is being built with the sole purpose of offering the most scalable and developer-friendly platform for building and running smart contracts and decentralized applications. It has been built from scratch without any bias towards existing or emerging technologies.

What consensus algorithm does Purple use?
Purple uses a stateful asynchronous algorithm for achieving consensus on which transactions are to be written to the ledger. Being stateful means that there are a number of designated nodes that are actively participating in the consensus algorithm in the same way as in Proof of Stake. However, that is it's only similarity since the algorithm employed by the participants relies on tracking the causality of network events that are broadcasted by the participants and then assembling a partial causal graph that is then reduced to a total ordering of events.

The rules for assembling this causal graph make it so that all participating nodes deterministically choose the same events that are to be applied to the state, as long as up to a third of participants are either byzantine (malicious) or crashed. In order to prevent this, nodes wanting to participate in the consensus algorithm must solve a computational puzzle of deterministic complexity and to provide a valid Proof of Work. This entry phase represents the synchronous part of the system.

It can be said then that Purple is a semi-synchronous system with the synchronous part serving as an adjustable bottleneck for the asynchronous part.

How scalable is Purple?
With the current architecture, Purple can process more than a million transactions per second assuming there are more than a hundred active miners. This is made possible by dividing the ledger into shards each of which has it's own consensus algorithm and set of participating nodes. With the current unoptimized code, the consensus algorithm can process ~5000 transactions per second. What sharding does is enable the parallel processing of transactions. In Purple there will be 256 such shards, each represented by a single byte. This means that maximum throughput is equal to tps x num_of_shards which is 5000 x 256 = 1.2 million transactions per second. Future optimizations should increase this number even further.

Mining
From a miner's standpoint, it can be said that mining on the Purple network feels quite similar to mining on the Bitcoin or Ethereum networks. But this is only on the surface level, the mining process in Purple is actually completely different from any other protocol. In Bitcoin, miners approve transactions by providing a valid Proof of Work and by choosing a number of pending transactions to be written in the ledger. While this works, it also means that the main bottleneck is the Proof of Work algorithm. In Purple, miners who provide a valid Proof of Work are eligible to approve transactions in a designated period. During that period they broadcast network events that include the transactions that they wish to approve. After the period has ended they will be required to issue a leave event which transfers all of the fees of the transactions to the address chosen by the miner. If a miner crashes or behaves maliciously during it's designated period, it will be removed by the other participants and will lose all of it's collected fees.

Supported programming languages
The PurpleVM supports the execution of webassembly bytecode which means that any programming language that can compile to WASM can be used to write smart contracts and decentralized applications. The languages that are supported include:

* C/C++
* C#
* Golang
* Java
* Rust
* Haskell
* Python
* Typescript
* Lua
* Kotlin
* Scheme

What is the story behind Purple?
It started out as a mere curiosity in the technology powering Bitcoin and Ethereum and has since evolved into a thing of it's own. The main motivation behind building such a platform was the lack of tooling and ease of use for developing decentralized applications which along with the issue of scalability are the main impediments of mass-adoption. To this day there is no platform that offers all required properties which are: complete decentralization, scalability and ease of use. Most provide only one or two of the three. Purple strives to achieve all of the three.

Links
* Whitepaper - https://purpleprotocol.org/whitepaper/ (https://purpleprotocol.org/whitepaper/)
* Website - https://purpleprotocol.org/ (https://purpleprotocol.org/)
* Github - https://github.com/purpleprotocol (https://github.com/purpleprotocol)
* Twitter - https://twitter.com/purple_protocol (https://twitter.com/purple_protocol)
* Facebook - https://www.facebook.com/purpleprotocol/ (https://www.facebook.com/purpleprotocol/)
* Medium - https://medium.com/purple-protocol (https://medium.com/purple-protocol)
* Gitter - /purpleorg/purple]https://gitte[Suspicious link removed]/purpleorg/purple (https://gitte[Suspicious link removed)

For Image,
and reserve Italian translations if needed


Title: Re: [ANN] Purple - A highly scalable and decentralized smart contract platform
Post by: octavonce on September 15, 2018, 03:21:02 PM
Thank you for your offerings of translation. The current version of the whitepaper only explains the underlying technology behind the protocol but is still missing certain implementation details, images and the cryptoeconomics part which is still up to debate. We will post an update when a more complete version of the whitepaper is released.


Title: Re: [ANN] Purple - A highly scalable and decentralized smart contract platform
Post by: Ninamuze on September 15, 2018, 04:24:13 PM
Wow I like this coin. It is looking good. Lots and lots of bounties planned. Very good. Glad to see there is a good game plan . The coin should do very well with the right people to support it and hopefully people who join for the community bounty will be supporters.                                                   


Title: Re: [ANN] Purple - A highly scalable and decentralized smart contract platform
Post by: octavonce on September 15, 2018, 11:31:35 PM
For a non-technical explanation of how Purple works check out https://medium.com/purple-protocol/how-purple-protocol-achieves-the-highest-throughput-out-of-all-public-blockchains-6de9b974767c (https://medium.com/purple-protocol/how-purple-protocol-achieves-the-highest-throughput-out-of-all-public-blockchains-6de9b974767c)


Title: Re: [ANN] Purple - A highly scalable and decentralized smart contract platform
Post by: TimeTeller on September 15, 2018, 11:58:28 PM
---

What is the story behind Purple?
It started out as a mere curiosity in the technology powering Bitcoin and Ethereum and has since evolved into a thing of it's own. The main motivation behind building such a platform was the lack of tooling and ease of use for developing decentralized applications which along with the issue of scalability are the main impediments of mass-adoption. To this day there is no platform that offers all required properties which are: complete decentralization, scalability and ease of use. Most provide only one or two of the three. Purple strives to achieve all of the three.


Do you have detailed plan on how to address those 3 important properties of a coin?
Many altcoins are already addressing such features. But, up until now bitcoin is still the popular cryptocurrency that go mainstream.
Even if there are disadvantages of using the bitcoin network, still, most people prefer to deal with it.
Because it is already an established cryptocurrency, people already trust it.
Then, how are you going to establish the trust on your coin? Mass-adoption is really one of the hindrances in making a certain project successful.


Title: Re: [ANN] Purple - A highly scalable and decentralized smart contract platform
Post by: octavonce on September 16, 2018, 12:25:57 AM
---

What is the story behind Purple?
It started out as a mere curiosity in the technology powering Bitcoin and Ethereum and has since evolved into a thing of it's own. The main motivation behind building such a platform was the lack of tooling and ease of use for developing decentralized applications which along with the issue of scalability are the main impediments of mass-adoption. To this day there is no platform that offers all required properties which are: complete decentralization, scalability and ease of use. Most provide only one or two of the three. Purple strives to achieve all of the three.


Do you have detailed plan on how to address those 3 important properties of a coin?
Many altcoins are already addressing such features. But, up until now bitcoin is still the popular cryptocurrency that go mainstream.
Even if there are disadvantages of using the bitcoin network, still, most people prefer to deal with it.
Because it is already an established cryptocurrency, people already trust it.
Then, how are you going to establish the trust on your coin? Mass-adoption is really one of the hindrances in making a certain project successful.

IMO the only problem with Bitcoin is the fact that it is slow. It achieves the first point but fails at the second point and there hasn't been much thought given to the third, but the third point is not that important since a third party can develop a shiny interface for it. The main two points that do not really go together in any current cryptocurrency are scalability and decentralization, they either have one or the other. Most see PoS as a solution to this but it is inherently flawed by the fact that it relies on a few trusted parties to make the network function which is centralized.

Purple achieves both decentralization and scalability by adding an additional step besides Proof of Work, thus removing the transaction throughput bottleneck but maintaining it for allowing nodes to participate. As I have said in the first post, Purple's consensus algorithm is alike to PoS in the sense that they are both stateful i.e. both have a set of designated nodes that process pending transactions. What is different is the way in which those nodes are chosen, in PoS a node is eligible if it deposits a fixed amount of tokens in an address. In Purple, nodes are required to provide a valid PoW and such they are always being shuffled. Thus, the chance of any set of chosen nodes to collude is much smaller than that in Proof of Stake.


Title: Re: [ANN] Purple - A highly scalable and decentralized smart contract platform
Post by: hany103 on September 16, 2018, 12:39:12 AM
cool logo and idea, but seems a bit low effort. purple protocol seems to have potential but will the idea be properly filled and fleshed out?


Title: Re: [ANN] Purple - A highly scalable and decentralized smart contract platform
Post by: Silasa on September 16, 2018, 12:39:17 AM
wow! this is an absolute! dân đông sẽ thực hiện là một hợp đồng dự án. Defected the first users will be recommended at the first here. Kkhông can wait for your ICO to start.
You can speak english on the forum


Title: Re: [ANN] Purple - A highly scalable and decentralized smart contract platform
Post by: alicee on September 16, 2018, 03:29:42 AM
Chinese translation reserved


Title: Re: [ANN] Purple - A highly scalable and decentralized smart contract platform
Post by: isnowblind on September 16, 2018, 03:36:12 AM
Can some please explain me the difference between byzatine and normal pow :/ ?


Title: Re: [ANN] Purple - A highly scalable and decentralized smart contract platform
Post by: cabbage55 on September 16, 2018, 03:39:24 AM
This project really does not look like the others. Willingly I believe in your success, devs. Good luck.


Title: Re: [ANN] Purple - A highly scalable and decentralized smart contract platform
Post by: mixelalex on September 16, 2018, 03:39:57 AM
Do you need a French translation? I can help you with this. Write to me, please, if interested. Thanks.


Title: Re: [ANN] Purple - A highly scalable and decentralized smart contract platform
Post by: TimeTeller on September 16, 2018, 09:42:55 AM
---
What is the story behind Purple?
It started out as a mere curiosity in the technology powering Bitcoin and Ethereum and has since evolved into a thing of it's own. The main motivation behind building such a platform was the lack of tooling and ease of use for developing decentralized applications which along with the issue of scalability are the main impediments of mass-adoption. To this day there is no platform that offers all required properties which are: complete decentralization, scalability and ease of use. Most provide only one or two of the three. Purple strives to achieve all of the three.


Do you have detailed plan on how to address those 3 important properties of a coin?
Many altcoins are already addressing such features. But, up until now bitcoin is still the popular cryptocurrency that go mainstream.
Even if there are disadvantages of using the bitcoin network, still, most people prefer to deal with it.
Because it is already an established cryptocurrency, people already trust it.
Then, how are you going to establish the trust on your coin? Mass-adoption is really one of the hindrances in making a certain project successful.

IMO the only problem with Bitcoin is the fact that it is slow. It achieves the first point but fails at the second point and there hasn't been much thought given to the third, but the third point is not that important since a third party can develop a shiny interface for it. The main two points that do not really go together in any current cryptocurrency are scalability and decentralization, they either have one or the other. Most see PoS as a solution to this but it is inherently flawed by the fact that it relies on a few trusted parties to make the network function which is centralized.

Purple achieves both decentralization and scalability by adding an additional step besides Proof of Work, thus removing the transaction throughput bottleneck but maintaining it for allowing nodes to participate. As I have said in the first post, Purple's consensus algorithm is alike to PoS in the sense that they are both stateful i.e. both have a set of designated nodes that process pending transactions. What is different is the way in which those nodes are chosen, in PoS a node is eligible if it deposits a fixed amount of tokens in an address. In Purple, nodes are required to provide a valid PoW and such they are always being shuffled. Thus, the chance of any set of chosen nodes to collude is much smaller than that in Proof of Stake.

I appreciate your explanation. But, the main problem still lies on mass adoption.
Even if you design this project to have those 3 features on, still, you are relying from the community who will really utilize your platform.
Without large following, great features are almost useless. As most of time, the value of the coin depends on the community.
And, it would take at least 6 months to years to build such true community. They need to see real progress and usage here. Good luck!


Title: Re: [ANN] Purple - A highly scalable and decentralized smart contract platform
Post by: Kasperiko on September 16, 2018, 10:18:00 AM
---
What is the story behind Purple?
It started out as a mere curiosity in the technology powering Bitcoin and Ethereum and has since evolved into a thing of it's own. The main motivation behind building such a platform was the lack of tooling and ease of use for developing decentralized applications which along with the issue of scalability are the main impediments of mass-adoption. To this day there is no platform that offers all required properties which are: complete decentralization, scalability and ease of use. Most provide only one or two of the three. Purple strives to achieve all of the three.


Do you have detailed plan on how to address those 3 important properties of a coin?
Many altcoins are already addressing such features. But, up until now bitcoin is still the popular cryptocurrency that go mainstream.
Even if there are disadvantages of using the bitcoin network, still, most people prefer to deal with it.
Because it is already an established cryptocurrency, people already trust it.
Then, how are you going to establish the trust on your coin? Mass-adoption is really one of the hindrances in making a certain project successful.

IMO the only problem with Bitcoin is the fact that it is slow. It achieves the first point but fails at the second point and there hasn't been much thought given to the third, but the third point is not that important since a third party can develop a shiny interface for it. The main two points that do not really go together in any current cryptocurrency are scalability and decentralization, they either have one or the other. Most see PoS as a solution to this but it is inherently flawed by the fact that it relies on a few trusted parties to make the network function which is centralized.

Purple achieves both decentralization and scalability by adding an additional step besides Proof of Work, thus removing the transaction throughput bottleneck but maintaining it for allowing nodes to participate. As I have said in the first post, Purple's consensus algorithm is alike to PoS in the sense that they are both stateful i.e. both have a set of designated nodes that process pending transactions. What is different is the way in which those nodes are chosen, in PoS a node is eligible if it deposits a fixed amount of tokens in an address. In Purple, nodes are required to provide a valid PoW and such they are always being shuffled. Thus, the chance of any set of chosen nodes to collude is much smaller than that in Proof of Stake.

I appreciate your explanation. But, the main problem still lies on mass adoption.
Even if you design this project to have those 3 features on, still, you are relying from the community who will really utilize your platform.
Without large following, great features are almost useless. As most of time, the value of the coin depends on the community.
And, it would take at least 6 months to years to build such true community. They need to see real progress and usage here. Good luck!


I agree with what you wrote above. It is necessary to adequately assess the ability and this race for a long distance. There are many advantages in the project, but there are big disadvantages, including that as for me the team clearly could be better.
Can you at one of the conferences take to yourself a couple of people who write code well for the idea and tokens of the project?


Title: Re: [ANN] Purple - A highly scalable and decentralized smart contract platform
Post by: cabron on September 16, 2018, 10:24:11 AM


Is there an ICO or what?
I look in the the webpage but nothing was said about the ICO and price. are these going to be distributed via airdrop?
Its not being said in the OP but if it can attract developers to create their smart contract then this could be one of the great project of this year.
I was thinking this is going to be like EOS.


Title: Re: [ANN] Purple - A highly scalable and decentralized smart contract platform
Post by: ThachSanhTp on September 16, 2018, 10:44:32 AM
There are so many "highly scalable and decentralized" smart contract platforms.
Such as: ETH, NEO, EOS, ADA..
And new platforms, such as Quarkchain, CyberMiles...

So what make Purple better than others?


Title: Re: [ANN] Purple - A highly scalable and decentralized smart contract platform
Post by: RobertTene on September 16, 2018, 01:33:24 PM
There are so many "highly scalable and decentralized" smart contract platforms.
Such as: ETH, NEO, EOS, ADA..
And new platforms, such as Quarkchain, CyberMiles...

So what make Purple better than others?

ETH has proven to be unscalable, hence Vitalik's tries to move the network into a PoS algorithm, which is hard to do and also highly centralizes the blockchain.

NEO,EOS,ADA - Are all planning to run on PoS, NEO and EOS showing signs of being INCREDIBLY centralized.

All 4 mentioned by you have only 1 attribute: they're either decentralized and unscalable or centralized and scalable.


Title: Re: [ANN] Purple - A highly scalable and decentralized smart contract platform
Post by: octavonce on September 16, 2018, 05:34:12 PM


Is there an ICO or what?
I look in the the webpage but nothing was said about the ICO and price. are these going to be distributed via airdrop?
Its not being said in the OP but if it can attract developers to create their smart contract then this could be one of the great project of this year.
I was thinking this is going to be like EOS.

We do not yet have a date for when the ICO will start since we are working hard to have a working prototype before we fully commit to doing an ICO. But to answer your question, we plan to do it either in December or in January. We will announce on the thread when we have more details regarding the ICO.

---
What is the story behind Purple?
It started out as a mere curiosity in the technology powering Bitcoin and Ethereum and has since evolved into a thing of it's own. The main motivation behind building such a platform was the lack of tooling and ease of use for developing decentralized applications which along with the issue of scalability are the main impediments of mass-adoption. To this day there is no platform that offers all required properties which are: complete decentralization, scalability and ease of use. Most provide only one or two of the three. Purple strives to achieve all of the three.


Do you have detailed plan on how to address those 3 important properties of a coin?
Many altcoins are already addressing such features. But, up until now bitcoin is still the popular cryptocurrency that go mainstream.
Even if there are disadvantages of using the bitcoin network, still, most people prefer to deal with it.
Because it is already an established cryptocurrency, people already trust it.
Then, how are you going to establish the trust on your coin? Mass-adoption is really one of the hindrances in making a certain project successful.

IMO the only problem with Bitcoin is the fact that it is slow. It achieves the first point but fails at the second point and there hasn't been much thought given to the third, but the third point is not that important since a third party can develop a shiny interface for it. The main two points that do not really go together in any current cryptocurrency are scalability and decentralization, they either have one or the other. Most see PoS as a solution to this but it is inherently flawed by the fact that it relies on a few trusted parties to make the network function which is centralized.

Purple achieves both decentralization and scalability by adding an additional step besides Proof of Work, thus removing the transaction throughput bottleneck but maintaining it for allowing nodes to participate. As I have said in the first post, Purple's consensus algorithm is alike to PoS in the sense that they are both stateful i.e. both have a set of designated nodes that process pending transactions. What is different is the way in which those nodes are chosen, in PoS a node is eligible if it deposits a fixed amount of tokens in an address. In Purple, nodes are required to provide a valid PoW and such they are always being shuffled. Thus, the chance of any set of chosen nodes to collude is much smaller than that in Proof of Stake.

I appreciate your explanation. But, the main problem still lies on mass adoption.
Even if you design this project to have those 3 features on, still, you are relying from the community who will really utilize your platform.
Without large following, great features are almost useless. As most of time, the value of the coin depends on the community.
And, it would take at least 6 months to years to build such true community. They need to see real progress and usage here. Good luck!


I believe that is up to the community to decide. It is a fallacy to believe that these things can be controlled. All we can do is to provide the best possible solution to these problems and then let it stand against the test of time.

---
What is the story behind Purple?
It started out as a mere curiosity in the technology powering Bitcoin and Ethereum and has since evolved into a thing of it's own. The main motivation behind building such a platform was the lack of tooling and ease of use for developing decentralized applications which along with the issue of scalability are the main impediments of mass-adoption. To this day there is no platform that offers all required properties which are: complete decentralization, scalability and ease of use. Most provide only one or two of the three. Purple strives to achieve all of the three.


Do you have detailed plan on how to address those 3 important properties of a coin?
Many altcoins are already addressing such features. But, up until now bitcoin is still the popular cryptocurrency that go mainstream.
Even if there are disadvantages of using the bitcoin network, still, most people prefer to deal with it.
Because it is already an established cryptocurrency, people already trust it.
Then, how are you going to establish the trust on your coin? Mass-adoption is really one of the hindrances in making a certain project successful.

IMO the only problem with Bitcoin is the fact that it is slow. It achieves the first point but fails at the second point and there hasn't been much thought given to the third, but the third point is not that important since a third party can develop a shiny interface for it. The main two points that do not really go together in any current cryptocurrency are scalability and decentralization, they either have one or the other. Most see PoS as a solution to this but it is inherently flawed by the fact that it relies on a few trusted parties to make the network function which is centralized.

Purple achieves both decentralization and scalability by adding an additional step besides Proof of Work, thus removing the transaction throughput bottleneck but maintaining it for allowing nodes to participate. As I have said in the first post, Purple's consensus algorithm is alike to PoS in the sense that they are both stateful i.e. both have a set of designated nodes that process pending transactions. What is different is the way in which those nodes are chosen, in PoS a node is eligible if it deposits a fixed amount of tokens in an address. In Purple, nodes are required to provide a valid PoW and such they are always being shuffled. Thus, the chance of any set of chosen nodes to collude is much smaller than that in Proof of Stake.

I appreciate your explanation. But, the main problem still lies on mass adoption.
Even if you design this project to have those 3 features on, still, you are relying from the community who will really utilize your platform.
Without large following, great features are almost useless. As most of time, the value of the coin depends on the community.
And, it would take at least 6 months to years to build such true community. They need to see real progress and usage here. Good luck!


I agree with what you wrote above. It is necessary to adequately assess the ability and this race for a long distance. There are many advantages in the project, but there are big disadvantages, including that as for me the team clearly could be better.
Can you at one of the conferences take to yourself a couple of people who write code well for the idea and tokens of the project?

The problem with the team is one of geographical nature. With my current whereabouts (Eastern Europe) it is very hard to assemble a team that a project of this caliber requires. Swaying developers to your cause is very hard when they have families to feed and you do not pay them with anything besides "virtual tokens that might be worthless". The only solution for this is either donations or doing an ICO.

My hope is that by announcing the project on BitcoinTalk I can find passionate people from around the world that wish to support the project and to start from there.


Title: Re: [ANN] Purple - A highly scalable and decentralized smart contract platform
Post by: cabron on September 17, 2018, 04:23:22 AM


Is there an ICO or what?
I look in the the webpage but nothing was said about the ICO and price. are these going to be distributed via airdrop?
Its not being said in the OP but if it can attract developers to create their smart contract then this could be one of the great project of this year.
I was thinking this is going to be like EOS.

We do not yet have a date for when the ICO will start since we are working hard to have a working prototype before we fully commit to doing an ICO. But to answer your question, we plan to do it either in December or in January. We will announce on the thread when we have more details regarding the ICO.



Are you able to introduce your team first for us to make sure there ain't suspicious? We all want some thing good that will come in the future like this project but we wanna make sure too. Investors are businessmen, they are not all philanthropist. Maybe getting involve in some coin events and find some known individual in the crypto that may back you up.


Title: Re: [ANN] Purple - A highly scalable and decentralized smart contract platform
Post by: elr01 on September 17, 2018, 08:21:18 AM
You should consider expanding your readme with some build info for those unfamiliar with Elixir & Rust.
And first explain how to run a wallet, a node and its miner, in this early stage. At least a Docker command.
In your code and whitepaper you do not give some credits to previous platforms, i mean, what are the different codebase and inspirations ?

edit: I could not build purple
Code:
~/purple-master $ iex -S mix
...
could not compile dependency :rox, "mix compile" failed. You can recompile this dependency with "mix deps.compile rox", update it with "mix deps.update rox" or clean it with "mix deps.clean rox"
...
 uname -a
Linux Ubuntu 4.10.0-28-generic #32~16.04.2-Ubuntu SMP Thu Jul 20 10:19:48 UTC 2017 x86_64 x86_64 x86_64 GNU/Linux


Title: Re: [ANN] Purple - A highly scalable and decentralized smart contract platform
Post by: octavonce on September 17, 2018, 11:30:11 AM
In your code and whitepaper you do not give some credits to previous platforms, i mean, what are the different codebase and inspirations ?

The main inspirations are Ethereum and Nano. It started out as a "Nano with support for smart contracts" but has since diverged and besides the consensus algorithm, the architecture is quite similar to that of ETH. For example, both Ethereum and Purple use RLP encoding, Patricia Tries for storing state and the account model. What is different is: the consensus algorithm, the sharding model and the virtual machine.

The only thing that was inspired from Nano and has been kept is the way in which inter-shard transactions are processed. In Nano, there are no shards but a transaction is composed out of a send transaction and a receive transaction. This is the same way in Purple, only in the case of inter-shard transactions, one is placed in the sender shard and one in the receiving shard.

You should consider expanding your readme with some build info for those unfamiliar with Elixir & Rust.
And first explain how to run a wallet, a node and its miner, in this early stage. At least a Docker command.
In your code and whitepaper you do not give some credits to previous platforms, i mean, what are the different codebase and inspirations ?

edit: I could not build purple
Code:
~/purple-master $ iex -S mix
...
could not compile dependency :rox, "mix compile" failed. You can recompile this dependency with "mix deps.compile rox", update it with "mix deps.update rox" or clean it with "mix deps.clean rox"
...
 uname -a
Linux Ubuntu 4.10.0-28-generic #32~16.04.2-Ubuntu SMP Thu Jul 20 10:19:48 UTC 2017 x86_64 x86_64 x86_64 GNU/Linux

Do you have clang and g++ installed? Rocksdb needs them in order to compile.

The repository also has a dockerfile. Try:
Code:
docker build .

After you manage to start the node, you can start the miner with the following command:
Code:
iex> Purple.start_mining

I will update the readme with a comprehensive build guide soon.


Title: Re: [ANN] Purple - A highly scalable and decentralized smart contract platform
Post by: elr01 on September 17, 2018, 05:26:02 PM
Thanks for your explanations.

Yes I already have theses dependencies. Here is the way i went to this error :
Code:
wget https://packages.erlang-solutions.com/erlang-solutions_1.0_all.deb && sudo dpkg -i erlang-solutions_1.0_all.deb
sudo apt-get update && sudo apt-get install esl-erlang elixir
curl https://sh.rustup.rs -sSf | sh
source $HOME/.cargo/env
git clone https://github.com/purpleprotocol/purple
cd purple-master
mix dep.get
iex -S mix

To make me wait for my docker build, could you give us the getmininginfo to get an insight about the network ?

edit: the docker image doesn't work for me either:
Code:
$ docker build .
...
==> gettext
Compiling 1 file (.erl)
/usr/lib/erlang/lib/parsetools-2.1.7/include/yeccpre.hrl:59: illegal pattern
/usr/lib/erlang/lib/parsetools-2.1.7/include/yeccpre.hrl:60: variable 'Error' is unbound
/usr/lib/erlang/lib/parsetools-2.1.7/include/yeccpre.hrl:60: variable 'Stacktrace' is unbound
/usr/lib/erlang/lib/parsetools-2.1.7/include/yeccpre.hrl:63: variable 'Stacktrace' unsafe in 'try' (line 60)
/usr/lib/erlang/lib/parsetools-2.1.7/include/yeccpre.hrl:64: variable 'Error' unsafe in 'try' (line 60)
/usr/lib/erlang/lib/parsetools-2.1.7/include/yeccpre.hrl:64: variable 'Stacktrace' unsafe in 'try' (line 60)
could not compile dependency :gettext, "mix compile" failed. You can recompile this dependency with "mix deps.compile gettext", update it with "mix deps.update gettext" or clean it with "mix deps.clean gettext"
The command '/bin/sh -c mix release --env=prod --verbose .' returned a non-zero code: 1


Title: Re: [ANN] Purple - A highly scalable and decentralized smart contract platform
Post by: octavonce on September 17, 2018, 10:59:52 PM
Thanks for your explanations.

Yes I already have theses dependencies. Here is the way i went to this error :
Code:
wget https://packages.erlang-solutions.com/erlang-solutions_1.0_all.deb && sudo dpkg -i erlang-solutions_1.0_all.deb
sudo apt-get update && sudo apt-get install esl-erlang elixir
curl https://sh.rustup.rs -sSf | sh
source $HOME/.cargo/env
git clone https://github.com/purpleprotocol/purple
cd purple-master
mix dep.get
iex -S mix

To make me wait for my docker build, could you give us the getmininginfo to get an insight about the network ?

edit: the docker image doesn't work for me either:
Code:
$ docker build .
...
==> gettext
Compiling 1 file (.erl)
/usr/lib/erlang/lib/parsetools-2.1.7/include/yeccpre.hrl:59: illegal pattern
/usr/lib/erlang/lib/parsetools-2.1.7/include/yeccpre.hrl:60: variable 'Error' is unbound
/usr/lib/erlang/lib/parsetools-2.1.7/include/yeccpre.hrl:60: variable 'Stacktrace' is unbound
/usr/lib/erlang/lib/parsetools-2.1.7/include/yeccpre.hrl:63: variable 'Stacktrace' unsafe in 'try' (line 60)
/usr/lib/erlang/lib/parsetools-2.1.7/include/yeccpre.hrl:64: variable 'Error' unsafe in 'try' (line 60)
/usr/lib/erlang/lib/parsetools-2.1.7/include/yeccpre.hrl:64: variable 'Stacktrace' unsafe in 'try' (line 60)
could not compile dependency :gettext, "mix compile" failed. You can recompile this dependency with "mix deps.compile gettext", update it with "mix deps.update gettext" or clean it with "mix deps.clean gettext"
The command '/bin/sh -c mix release --env=prod --verbose .' returned a non-zero code: 1


This happens because you have erlang 21. They changed some apis and things tend to break. Try with erlang 20.

Mining on the test network has not started yet since the code is still buggy. The latest patch i'm writing should fix most of these issues once it's merged into master.


Title: Re: [ANN] Purple - High throughput smart contract platform
Post by: octavonce on September 21, 2018, 12:37:49 AM
There are so many "highly scalable and decentralized" smart contract platforms.
Such as: ETH, NEO, EOS, ADA..
And new platforms, such as Quarkchain, CyberMiles...

So what make Purple better than others?

Purple can achieve a significantly higher transaction throughput than any other current platform without losing the decentralized nature of the network that both Bitcoin and Ethereum have.


Title: Re: [ANN] Purple - A highly scalable and decentralized smart contract platform
Post by: octavonce on September 21, 2018, 01:20:09 PM
cool logo and idea, but seems a bit low effort. purple protocol seems to have potential but will the idea be properly filled and fleshed out?

The thing is that up until very recently, because it is an experimental project, it was mostly a solo-effort. We are starting now to bring in more and more people so that the project can come to fruition. Mind that the project is still in a very early stage.

Can some please explain me the difference between byzatine and normal pow :/ ?

The term "byzantine" does not reffer to PoW. It refers to a peer that is acting maliciously, a byzantine node.


Title: Re: [ANN] Purple - A highly scalable smart contract platform 3m+ TPS
Post by: octavonce on September 21, 2018, 05:11:29 PM
We have just uploaded a new version of the whitepaper which contains graphics and the economic model of Purple: https://purpleprotocol.org/whitepaper/


Title: Re: [ANN] Purple - A highly scalable smart contract platform 3m+ TPS
Post by: RobertTene on September 21, 2018, 05:30:29 PM
We have just uploaded a new version of the whitepaper which contains graphics and the economic model of Purple: https://purpleprotocol.org/whitepaper/

Much needed. The pie chart looks good. 50% of the supply is going to be distributed to miners, this will be great for long-term. Good job on the economics


Title: Re: [ANN] Purple - A highly scalable smart contract platform 3m+ TPS
Post by: elr01 on September 22, 2018, 11:31:13 AM
Anyone managed to run this ?
I can't figure what are the right version of erlang & elixir to install on ubuntu from here :
https://www.erlang-solutions.com/resources/download.html


Title: Re: [ANN] Purple - A highly scalable smart contract platform 3m+ TPS
Post by: octavonce on September 22, 2018, 03:15:32 PM
Anyone managed to run this ?
I can't figure what are the right version of erlang & elixir to install on ubuntu from here :
https://www.erlang-solutions.com/resources/download.html

I use erlang 20.0 and elixir 1.6 for development.


Title: Re: [ANN] Purple - A highly scalable smart contract platform 3m+ TPS
Post by: octavonce on September 24, 2018, 09:48:48 AM
I have just uploaded a new version of the whitepaper which contains more details about the way in which sharding is done in Purple. Check it out: https: https://purpleprotocol.org/whitepaper/


Title: Re: [ANN] Purple - Fast, Programmable, Multi-Asset Blockchain
Post by: octavonce on September 25, 2018, 11:50:46 PM
We have just updated the topic with information about the multi-asset capabilities of Purple.


Title: Re: [ANN] Purple - Fast, Programmable, Multi-Asset Blockchain
Post by: 101nowby on September 26, 2018, 12:23:41 AM
I like that you solve these pressing problems. Such decisions will lead our world to a more rapid development, and we will all benefit from this.It's a pity that you did a little, but I see that you are working on this


Title: Re: [ANN] Purple - Fast, Programmable, Multi-Asset Blockchain
Post by: octavonce on September 26, 2018, 10:48:07 AM
I like that you solve these pressing problems. Such decisions will lead our world to a more rapid development, and we will all benefit from this.It's a pity that you did a little, but I see that you are working on this

We have just started expanding our team since we now have a more or less testable proof of concept. The development of the protocol is speeding up with each passing day. We will also soon post a new website, a dedicated blog and a forum for the community. Stay tuned.


Title: Re: [ANN] Purple - Fast, Programmable, Multi-Asset Blockchain
Post by: octavonce on September 27, 2018, 05:39:50 PM
We have just created a Telegram channel for Purple. Join the community here: https://t.me/purple_protocol


Title: Re: [ANN] Purple - Fast, Programmable, Multi-Asset Blockchain
Post by: octavonce on September 30, 2018, 04:57:55 PM
I have just posted an article regarding the current problems that the crypto community faces. Check it out: https://medium.com/purple-protocol/blockchain-wont-save-the-world-but-it-will-enable-the-things-that-will-ae2b3738ee1


Title: Re: [ANN] Purple - Fast, Programmable, Multi-Asset Blockchain
Post by: KnyazED on October 01, 2018, 08:07:50 PM
I have just posted an article regarding the current problems that the crypto community faces. Check it out: https://medium.com/purple-protocol/blockchain-wont-save-the-world-but-it-will-enable-the-things-that-will-ae2b3738ee1

Thanks for the interesting and important article. it's very meaningful and interesting to read. many useful points on which to focus attention.


Title: Re: [ANN] Purple - Fast, Programmable, Multi-Asset Blockchain
Post by: octavonce on October 01, 2018, 08:19:57 PM
I have just posted an article regarding the current problems that the crypto community faces. Check it out: https://medium.com/purple-protocol/blockchain-wont-save-the-world-but-it-will-enable-the-things-that-will-ae2b3738ee1

Thanks for the interesting and important article. it's very meaningful and interesting to read. many useful points on which to focus attention.

I'm glad that you have enjoyed it. I will be trying to post an article that explains the different aspects of Blockchain technology every week. Stay tuned!


Title: Re: [ANN] Purple - Fast, Programmable, Multi-Asset Blockchain
Post by: Caztiel on October 01, 2018, 08:26:31 PM
So Just Correct me if I am Wrong - This coin is Distributed via POW + ICO ? Also it's algo/structure is what makes it unique ?


Title: Re: [ANN] Purple - Fast, Programmable, Multi-Asset Blockchain
Post by: octavonce on October 01, 2018, 08:32:52 PM
So Just Correct me if I am Wrong - This coin is Distributed via POW + ICO ? Also it's algo/structure is what makes it unique ?

That is exactly right. It's algorithm is one of the features that makes it unique and also really fast.

Another big difference between Purple and existing platforms (except Waves) is that it supports token creation at the protocol level. You basically don't need to write a smart contract to create a new token. This also means that you can send transactions and pay fees in other currencies (if the miners accept it).


Title: Re: [ANN] Purple - Fast, Programmable, Multi-Asset Blockchain Protocol
Post by: octavonce on October 04, 2018, 08:10:40 PM
I have just wrote the first draft of the paper that explains all of the features of Purple. Check it out here: https://purpleprotocol.org/feature_paper/


Title: Re: [ANN] Purple - Fast, Programmable, Multi-Asset Blockchain Protocol
Post by: octavonce on October 05, 2018, 09:19:53 AM
We have just created Purple's official sub-reddit! Join the community discussion here: https://www.reddit.com/r/purpleprotocol/


Title: Re: [ANN] Purple - Fast, Programmable, Multi-Asset Blockchain Protocol
Post by: octavonce on October 15, 2018, 01:03:33 PM
We have just uploaded our new website! Check it out here https://purpleprotocol.org (https://purpleprotocol.org)


Title: Re: [ANN] Purple - Fast, Programmable, Multi-Asset Blockchain Protocol
Post by: RobertTene on October 15, 2018, 02:00:20 PM
We have just uploaded our new website! Check it out here https://purpleprotocol.org (https://purpleprotocol.org)
Damn the website looks really good. Good job! I think the token creation will be VERY ATTRACTIVE to people looking into this. The ability to create a new token without any knowledge of coding is pretty damn awesome!


Title: Re: [ANN] Purple - Fast, Programmable, Multi-Asset Blockchain Protocol
Post by: octavonce on October 16, 2018, 08:14:40 AM
We have just uploaded our new website! Check it out here https://purpleprotocol.org (https://purpleprotocol.org)
Damn the website looks really good. Good job! I think the token creation will be VERY ATTRACTIVE to people looking into this. The ability to create a new token without any knowledge of coding is pretty damn awesome!

This is just the first version of the website. Once we create a more complete visual identity we will update it once again. We will also be adding new pages such as FAQ in the next weeks. Stay tuned!


Title: Re: [ANN] Purple - Fast, Programmable, Multi-Asset Blockchain Protocol
Post by: act0d on October 18, 2018, 10:56:19 AM
it will support C#?


Title: Re: [ANN] Purple - Fast, Programmable, Multi-Asset Blockchain Protocol
Post by: octavonce on October 18, 2018, 12:11:26 PM
it will support C#?

Yes


Title: Re: [ANN] Purple - Fast, Programmable, Multi-Asset Blockchain Protocol
Post by: Ohgreatanotherone on October 20, 2018, 11:30:09 AM
Any ETA on when we'll be able to see the team profile on the site?
Yeah, it's not really a priority for most. However, I like to follow up on team to see if they really know their salt and its worth. It's one thing to have an ambitious project. It's another having the manpower and talent to execute it


Title: Re: [ANN] Purple - Fast, Programmable, Multi-Asset Blockchain Protocol
Post by: 0xcitchx on October 20, 2018, 11:41:05 AM
Reserve Indonesian translations and pool 8)


Title: Re: [ANN] Purple - Fast, Programmable, Multi-Asset Blockchain Protocol
Post by: octavonce on October 20, 2018, 01:04:50 PM
Any ETA on when we'll be able to see the team profile on the site?
Yeah, it's not really a priority for most. However, I like to follow up on team to see if they really know their salt and its worth. It's one thing to have an ambitious project. It's another having the manpower and talent to execute it

We will try to post a list of the team members in the following weeks.


Title: Re: [ANN] Purple - Fast, Programmable, Multi-Asset Blockchain Protocol
Post by: Ohgreatanotherone on October 21, 2018, 09:02:33 AM
Any ETA on when we'll be able to see the team profile on the site?
Yeah, it's not really a priority for most. However, I like to follow up on team to see if they really know their salt and its worth. It's one thing to have an ambitious project. It's another having the manpower and talent to execute it

We will try to post a list of the team members in the following weeks.
Thanks for the prompt and speedy response. Will give the WP a thorough read and since you guys are this responsive on the thread, I'll be popping in with any questions I need clarifying.


Title: Re: [ANN] Purple - Fast, Programmable, Multi-Asset Blockchain Protocol
Post by: octavonce on October 25, 2018, 01:17:31 PM
We would like to announce that the first ever transaction performed on Purple was today approved on a private test-net. This day marks an important chapter in Purple's history.

Code:
13:03:47.312 [debug] hash=6e101158d4107024f0a97542c1fdf416cc1b378841d34f9df40a01316623ae3b type=send node_id=64c2c67aebd45d7429125dcfdead15fe7952c3aebb45485f4679b260adff43d2 fee=15.0 currency_hash=0aeb948b96e37e69674f3d852f7dd1a2ec0d492e657d7ec59b6f55c5b9e56c8c fee_hash=0aeb948b96e37e69674f3d852f7dd1a2ec0d492e657d7ec59b6f55c5b9e56c8c Substracted amount 100.0 from 0x28838ef7bb5b356401e40c3aeda61e70ade5bc8fd5f7fa49ac9519207a73763e


Title: Re: [ANN] Purple - Fast, Programmable, Multi-Asset Blockchain Protocol
Post by: octavonce on October 28, 2018, 06:32:50 PM
We have written a medium article explaining the economic functionality of the Purple Protocol: https://medium.com/purple-protocol/how-purple-protocol-enables-a-new-digital-economy-40858ff78efe


Title: Re: [ANN] Purple - Fast, Programmable, Multi-Asset Blockchain Protocol
Post by: Gireesh.giri on November 01, 2018, 02:56:31 AM
Just did the first benchmark on the consensus algorithm. I estimated it will be able to handle around 5000 transactions per second. I got surprised when the benchmark yielded 13000 transactions per second! This means that with sharding, Purple can handle 13000 x 256 = 3.4 million tps.


Title: Re: [ANN] Purple - Fast, Programmable, Multi-Asset Blockchain Protocol
Post by: Ohgreatanotherone on November 03, 2018, 12:16:40 PM
Bump
You're risking your account by bumping (using the word bump) on an ANN thread instead of posting something constructive (even if mildly). BTW, where are we on the team profile? It's been over a week if I recall correctly


Title: Re: [ANN] Purple - Fast, Programmable, Multi-Asset Blockchain Protocol
Post by: octavonce on November 03, 2018, 12:26:10 PM
Bump
You're risking your account by bumping (using the word bump) on an ANN thread instead of posting something constructive (even if mildly). BTW, where are we on the team profile? It's been over a week if I recall correctly

I've read on the forum rules that it is allowed to bump a thread once every 24 hours. I try to keep the bumps as constructive as possible but I don't have something constructive to write each day.

Regarding the team, we are working on an updated version of the website which will also contain the team section but it is still a WIP. 


Title: Re: [ANN] Purple - Fast, Programmable, Multi-Asset Blockchain Protocol
Post by: U on November 03, 2018, 12:41:05 PM
SHOW US THE CODE AND PRODUCT :'(


Title: Re: [ANN] Purple - Fast, Programmable, Multi-Asset Blockchain Protocol
Post by: octavonce on November 03, 2018, 12:52:59 PM
SHOW US THE CODE AND PRODUCT :'(

All of the code is open source: https://github.com/purpleprotocol


Title: Re: [ANN] Purple - Fast, Programmable, Multi-Asset Blockchain Protocol
Post by: Ohgreatanotherone on November 06, 2018, 09:43:01 AM
Bump
You're risking your account by bumping (using the word bump) on an ANN thread instead of posting something constructive (even if mildly). BTW, where are we on the team profile? It's been over a week if I recall correctly

I've read on the forum rules that it is allowed to bump a thread once every 24 hours. I try to keep the bumps as constructive as possible but I don't have something constructive to write each day.

Regarding the team, we are working on an updated version of the website which will also contain the team section but it is still a WIP. 
Any ETA on when that will finally be out?
Meanwhile, would love to run something by you through PM if you don't mind. Can I PM you?


Title: Re: [ANN] Purple - Fast, Programmable, Multi-Asset Blockchain Protocol
Post by: octavonce on November 06, 2018, 12:02:43 PM
Bump
You're risking your account by bumping (using the word bump) on an ANN thread instead of posting something constructive (even if mildly). BTW, where are we on the team profile? It's been over a week if I recall correctly

I've read on the forum rules that it is allowed to bump a thread once every 24 hours. I try to keep the bumps as constructive as possible but I don't have something constructive to write each day.

Regarding the team, we are working on an updated version of the website which will also contain the team section but it is still a WIP. 
Any ETA on when that will finally be out?
Meanwhile, would love to run something by you through PM if you don't mind. Can I PM you?

To answer your question,

We do not yet have a full-time developer responsible for the website so it might take a while and I don't really have an ETA, but in the meanwhile I can answer your question about the team directly here.

We are a still a small team from Eastern Europe that is trying to relocate and to expand it's ranks but the main people (excluding advisors) in the team are:
* Octavian Oncescu - Founder and core developer
* Radu Irava - Operations
* Tudor Gheorghiu - Core developer




Title: Re: [ANN] Purple - Fast, Programmable, Multi-Asset Blockchain Protocol
Post by: octavonce on November 09, 2018, 03:20:38 PM
After receiving feedback that the text on our website makes bold claims, we have updated it to indicate that the technology is still at an experimental stage and that the numbers posted are only theoretical.

If anyone has any more feedback we are happy to hear about it either here or at contact@purpleprotocol.org


Title: Re: [ANN] Purple - Fast, Programmable, Multi-Asset Blockchain Protocol
Post by: Ohgreatanotherone on November 18, 2018, 09:45:49 AM
Been checking in daily for updates - yeah, I know, I'm jobless like that. Haven't heard a peep - yeah, I know, new blockchain development is time consuming. So, just asking if there's a morsel of an update to be had  ;D


Title: Re: [ANN] Purple - Fast, Programmable, Multi-Asset Blockchain Protocol
Post by: octavonce on November 18, 2018, 03:37:45 PM
Been checking in daily for updates - yeah, I know, I'm jobless like that. Haven't heard a peep - yeah, I know, new blockchain development is time consuming. So, just asking if there's a morsel of an update to be had  ;D

We have received feedback that the technical side is not detailed enough so we began writing the protocol's wiki which will contain an in depth explanation of everything. We will announce here when it is released.


Title: Re: [ANN] Purple - Fast, Programmable, Multi-Asset Blockchain Protocol
Post by: Ohgreatanotherone on November 19, 2018, 04:08:09 PM
Been checking in daily for updates - yeah, I know, I'm jobless like that. Haven't heard a peep - yeah, I know, new blockchain development is time consuming. So, just asking if there's a morsel of an update to be had  ;D

We have received feedback that the technical side is not detailed enough so we began writing the protocol's wiki which will contain an in depth explanation of everything. We will announce here when it is released.
Back to twiddling my thumbs and hoping for the best.
This waiting game can make a saint out of anybody.
Could you help a saint with an ETA?  ;D


Title: Re: [ANN] Purple - Fast, Programmable, Multi-Asset Blockchain Protocol
Post by: octavonce on November 20, 2018, 07:39:59 PM
Been checking in daily for updates - yeah, I know, I'm jobless like that. Haven't heard a peep - yeah, I know, new blockchain development is time consuming. So, just asking if there's a morsel of an update to be had  ;D

We have received feedback that the technical side is not detailed enough so we began writing the protocol's wiki which will contain an in depth explanation of everything. We will announce here when it is released.
Back to twiddling my thumbs and hoping for the best.
This waiting game can make a saint out of anybody.
Could you help a saint with an ETA?  ;D

We open sourced the repository containing the wiki today. It's still a WIP but you can check it out here: https://github.com/purpleprotocol/wiki/wiki


Title: Re: [ANN] Purple - Fast, Programmable, Multi-Asset Blockchain Protocol
Post by: octavonce on December 11, 2018, 10:47:18 PM
I have written a new article about smart contracts. Check it out: https://medium.com/purple-protocol/how-smart-contracts-will-revolutionize-law-and-finance-e2515dcb8845


Title: Re: [ANN] Purple - Fast, Programmable, Multi-Asset Blockchain Protocol
Post by: octavonce on December 12, 2018, 09:49:33 PM
A few updates regarding the status of the project:

- Because of several issues regarding sharding (cross-shard smart contract calls are very hard to implement right, shards are difficult to merge and partition tolerance pretty much fails with sharding) we have decided to stop focusing on it at this moment, simplifying the whole architecture and making the codebase much smaller.

- Because sharding has been dropped, we have decided to re-write the code in the Rust programming language in order to optimize the consensus algorithm as much as possible and such we are now looking for contributors who either know Rust or C/C++.

- I have moved a few weeks ago to Berlin and the legal entity will most probably be established here in Germany.

- Because of the regulatory issues regarding ICOs we do not believe any longer that we will host an ICO. This will only happen if the legal landscape gets better in the following months.


Title: Re: [ANN] Purple - Fast, Programmable, Multi-Asset Blockchain Protocol
Post by: Ohgreatanotherone on December 21, 2018, 10:13:45 PM
A few updates regarding the status of the project:

- Because of several issues regarding sharding (cross-shard smart contract calls are very hard to implement right, shards are difficult to merge and partition tolerance pretty much fails with sharding) we have decided to stop focusing on it at this moment, simplifying the whole architecture and making the codebase much smaller.

- Because sharding has been dropped, we have decided to re-write the code in the Rust programming language in order to optimize the consensus algorithm as much as possible and such we are now looking for contributors who either know Rust or C/C++.

- I have moved a few weeks ago to Berlin and the legal entity will most probably be established here in Germany.

- Because of the regulatory issues regarding ICOs we do not believe any longer that we will host an ICO. This will only happen if the legal landscape gets better in the following months.
So, no crowdsale or offering of any kind? How are people going to get a hold of the crypto then? By mining it?
Does that mean we have to hold on till the blockchain is release before we can acquire it. No placeholder ERC20 to keep first and swap later?
Also, sharding isn't off the table right? Just on hold?


Title: Re: [ANN] Purple - Fast, Programmable, Multi-Asset Blockchain Protocol
Post by: octavonce on December 22, 2018, 12:57:27 PM
So, no crowdsale or offering of any kind? How are people going to get a hold of the crypto then? By mining it?

This is not definite. We are waiting for the legal landscape to stabilize.

If it will make sense at some point to hold a crowdsale we will do it. Right now however, there are too many complications on all levels. It is a matter of choosing what's best for the project in the short-term vs the long-term.

Since the coin is mined, a launch without a crowdsale is viable because the distribution is handled by the protocol itself.

Does that mean we have to hold on till the blockchain is release before we can acquire it. No placeholder ERC20 to keep first and swap later?

Most probably.

Also, sharding isn't off the table right? Just on hold?

There are too many hoops you have to jump through to get sharding right and even if you do, the attack surface area is still quite big. Now let's assume that all of this is handled, you then still have to solve the issues of inter-shard contract calls.

Now, there may be a way to solve all of these and if there is, a hard fork can be performed to update the protocol. But right now, sharding is too far fetched.   



Title: Re: [ANN] Purple - Fast, Programmable, Multi-Asset Blockchain Protocol
Post by: Ohgreatanotherone on December 28, 2018, 12:07:08 PM
Reading between the line, seems like a lot of thought has been put into the long-term sustainability of this project and how it's gonna improve on existing tech. Love it. Can't wait for further development and get my mints on the coin. Wish there was a more concrete ETA


Title: Re: [ANN] Purple - Fast, Programmable, Multi-Asset Blockchain Protocol
Post by: octavonce on January 07, 2019, 01:49:06 AM
Reading between the line, seems like a lot of thought has been put into the long-term sustainability of this project and how it's gonna improve on existing tech. Love it. Can't wait for further development and get my mints on the coin. Wish there was a more concrete ETA

I wish that there would be a more concrete ETA available however with the drop of ICOs our options for funding have shortened and I do not want to promise unrealistic things.

With all this in mind, I can say that we are continuously trying to catch lightning in a bottle and create the best protocol that there is. This requires an incredible amount of effort and preparation and with limited options for funding, unfortunately this also means that a lot of time has to be spent and I would rather have the launch delayed if it means that at the end of the day everything works flawlessly.

Launching early is the capital sin of open blockchain projects.


Title: Re: [ANN] Purple - Fast, Programmable, Multi-Asset Blockchain Protocol
Post by: Ohgreatanotherone on January 08, 2019, 10:34:17 AM
Reading between the line, seems like a lot of thought has been put into the long-term sustainability of this project and how it's gonna improve on existing tech. Love it. Can't wait for further development and get my mints on the coin. Wish there was a more concrete ETA

I wish that there would be a more concrete ETA available however with the drop of ICOs our options for funding have shortened and I do not want to promise unrealistic things.

With all this in mind, I can say that we are continuously trying to catch lightning in a bottle and create the best protocol that there is. This requires an incredible amount of effort and preparation and with limited options for funding, unfortunately this also means that a lot of time has to be spent and I would rather have the launch delayed if it means that at the end of the day everything works flawlessly.

Launching early is the capital sin of open blockchain projects.
This I can agree with. While it's gonna be sad, popping in from time to time for signs of life and being met with an empty room, my confidence in the project has grown immensely.  Would rather wait for everything to be ship-ready. Seen my own fair share of early launches and its attendant damnation


Title: Re: [ANN] Purple - Fast, Programmable, Multi-Asset Blockchain Protocol
Post by: octavonce on January 22, 2019, 12:29:43 AM
Reading between the line, seems like a lot of thought has been put into the long-term sustainability of this project and how it's gonna improve on existing tech. Love it. Can't wait for further development and get my mints on the coin. Wish there was a more concrete ETA

I wish that there would be a more concrete ETA available however with the drop of ICOs our options for funding have shortened and I do not want to promise unrealistic things.

With all this in mind, I can say that we are continuously trying to catch lightning in a bottle and create the best protocol that there is. This requires an incredible amount of effort and preparation and with limited options for funding, unfortunately this also means that a lot of time has to be spent and I would rather have the launch delayed if it means that at the end of the day everything works flawlessly.

Launching early is the capital sin of open blockchain projects.
This I can agree with. While it's gonna be sad, popping in from time to time for signs of life and being met with an empty room, my confidence in the project has grown immensely.  Would rather wait for everything to be ship-ready. Seen my own fair share of early launches and its attendant damnation

I can assure you that everything is going really well. The protocol is getting more and more refined with each passing day. It is an iterative process that the more it is applied, the higher the quality of the product will be.

I am currently working on a new and improved version of the whitepaper which will describe everything in greater detail. We are also be constantly adding content to the wiki: https://github.com/purpleprotocol/wiki/wiki

Stay tuned.


Title: Re: [ANN] Purple - Fast Consensus | Mining | Security Tokens | DEX | Smart Contracts
Post by: octavonce on January 22, 2019, 06:36:18 PM
I have just added more information in the original post. If anyone has any questions, do not hesitate to ask!


Title: Re: [ANN] Purple - Fast Consensus | Mining | Security Tokens | DEX | Smart Contracts
Post by: octavonce on January 24, 2019, 05:51:59 PM
We have just released a new and improved version of the whitepaper. Check it out here: https://purpleprotocol.org/whitepaper/


Title: Re: [ANN] Purple - The Modern Blockchain Protocol | SSPoW | Smart Contracts | DEX |
Post by: octavonce on February 10, 2019, 01:31:46 PM
We now have a blog! Check it out here: https://purpleprotocol.org/blog/we-finally-have-a-blog


Title: Re: [ANN] Purple - The Modern Blockchain Protocol | SSPoW | Smart Contracts | DEX
Post by: octavonce on February 19, 2019, 09:28:48 PM
We have posted a new article which explains in detail the way in which the consensus algorithm of Purple works: https://medium.com/purple-protocol/presenting-the-consensus-algorithm-behind-purple-sspow-784ebadb983d


Title: Re: [ANN] Purple - The Modern Blockchain Protocol | SSPoW | Smart Contracts | DEX
Post by: octavonce on February 23, 2019, 05:07:16 PM
Help us raise funds to further develop the Purple Protocol by participating in our crowdfunding campaign! Read here (https://purpleprotocol.org/blog/participate-in-purple-crowdfunding-campaign) how.


Title: Re: [ANN] Purple - The Modern Blockchain Protocol | SSPoW | Smart Contracts | DEX
Post by: Ohgreatanotherone on February 23, 2019, 08:26:10 PM
Help us raise funds to further develop the Purple Protocol by participating in our crowdfunding campaign! Read here (https://purpleprotocol.org/blog/participate-in-purple-crowdfunding-campaign) how.
Market seems to be on the uptick. An ICO with a softcap of $250,000 is actually feasible with the right tools and contacts. The question is what do they get in turn for contributing? Based on the gofundme campaign, can't see any sort of return for contributing atm


Title: Re: [ANN] Purple - The Modern Blockchain Protocol | SSPoW | Smart Contracts | DEX
Post by: octavonce on February 23, 2019, 09:45:10 PM
Help us raise funds to further develop the Purple Protocol by participating in our crowdfunding campaign! Read here (https://purpleprotocol.org/blog/participate-in-purple-crowdfunding-campaign) how.
Market seems to be on the uptick. An ICO with a softcap of $250,000 is actually feasible with the right tools and contacts. The question is what do they get in turn for contributing? Based on the gofundme campaign, can't see any sort of return for contributing atm

There aren't any. This is not an ICO. It still is quite risky to host one at this moment and this is why we are more looking for donations at this point. Any amount can help a lot since we do not have almost any funds at our disposal. If the ICO makes sense in the future maybe it will be on the table again but I can't promise anything.


Title: Re: [ANN] Purple - The Modern Blockchain Protocol | SSPoW | Smart Contracts | DEX
Post by: octavonce on March 01, 2019, 04:27:04 PM
Purple has turned 1 year old today! Read about our story so far here (https://purpleprotocol.org/blog/purple-turns-one-year-old).


Title: Re: [ANN] Purple - The Modern Blockchain Protocol | SSPoW | Smart Contracts | DEX
Post by: Ohgreatanotherone on March 14, 2019, 03:11:57 PM
Purple has turned 1 year old today! Read about our story so far here (https://purpleprotocol.org/blog/purple-turns-one-year-old).
Congratulations and this is hoping for many more years. Better yet, this is a toast to the beginning of bigger and better things from Purple. Can't wait for it to step out in all its royal glory and take its rightful place. How goes the development?


Title: Re: [ANN] Purple - The Modern Blockchain Protocol | SSPoW | Smart Contracts | DEX
Post by: octavonce on March 14, 2019, 03:37:31 PM
Purple has turned 1 year old today! Read about our story so far here (https://purpleprotocol.org/blog/purple-turns-one-year-old).
Congratulations and this is hoping for many more years. Better yet, this is a toast to the beginning of bigger and better things from Purple. Can't wait for it to step out in all its royal glory and take its rightful place. How goes the development?

Thank you for the kind words!

For the past month I have been focusing entirely on the virtual machine and smart contracts aspect of the protocol and all I can say is that the design of the vm is mostly finished and it is quite a beauty. There will be a blog post detailing this soon.

The development speed is still quite slow since I am still the only active core developer but I am currently attempting to onboard other enthusiasts so this might change soon.   


Title: Re: [ANN] Purple - The Modern Blockchain Protocol | SSPoW | Smart Contracts | DEX
Post by: Ohgreatanotherone on March 31, 2019, 06:08:55 PM
Purple has turned 1 year old today! Read about our story so far here (https://purpleprotocol.org/blog/purple-turns-one-year-old).
Congratulations and this is hoping for many more years. Better yet, this is a toast to the beginning of bigger and better things from Purple. Can't wait for it to step out in all its royal glory and take its rightful place. How goes the development?

Thank you for the kind words!

For the past month I have been focusing entirely on the virtual machine and smart contracts aspect of the protocol and all I can say is that the design of the vm is mostly finished and it is quite a beauty. There will be a blog post detailing this soon.

The development speed is still quite slow since I am still the only active core developer but I am currently attempting to onboard other enthusiasts so this might change soon.   

How about just putting up your entire requirement on angel.co and have the community come to you rather than you going to them. Pretty sure you'll be inundated by applications in no time if you post there


Title: Re: [ANN] Purple - The Modern Blockchain Protocol | SSPoW | Smart Contracts | DEX
Post by: octavonce on March 31, 2019, 10:31:23 PM
Everyone check out the late March development update about the Purple Protocol! https://purpleprotocol.org/blog/end-of-march-development-update


Title: Re: [ANN] Purple - The Modern Blockchain Protocol | SSPoW | Smart Contracts | DEX
Post by: octavonce on March 31, 2019, 10:35:29 PM
Purple has turned 1 year old today! Read about our story so far here (https://purpleprotocol.org/blog/purple-turns-one-year-old).
Congratulations and this is hoping for many more years. Better yet, this is a toast to the beginning of bigger and better things from Purple. Can't wait for it to step out in all its royal glory and take its rightful place. How goes the development?

Thank you for the kind words!

For the past month I have been focusing entirely on the virtual machine and smart contracts aspect of the protocol and all I can say is that the design of the vm is mostly finished and it is quite a beauty. There will be a blog post detailing this soon.

The development speed is still quite slow since I am still the only active core developer but I am currently attempting to onboard other enthusiasts so this might change soon.  

How about just putting up your entire requirement on angel.co and have the community come to you rather than you going to them. Pretty sure you'll be inundated by applications in no time if you post there

I don't exactly have the resources to hire people right now (which, I presume, is what angel.co is for) but I could certainly try this and maybe have a bunch of passionate people find out about this which wouldn't hurt at all right now.

The experimental nature of the project doesn't help either in this regard. Most people I met say they need some kind of proof on my part that it will actually work and this is quite hard to provide until the code is mostly written, which is what I need the devs for. It becomes a chicken and egg situation. Imagine Satoshi trying to recruit devs for building Bitcoin before he had any proof that it will actually work. I think that's why it was written by one or maximum a few people and after the concept has been proven, everyone realised that it was working.

All I can do is to suck it up and continue to write code by myself up until a basic testnet will always stay up. In a way I am grateful for this, even though it is very hard. The difficulties I encounter right now must have been much greater for Satoshi back in the day so I cannot complain.


Title: Re: [ANN] Purple - The Modern Blockchain Protocol | SSPoW | Smart Contracts | DEX
Post by: Ohgreatanotherone on April 01, 2019, 09:08:22 AM
Purple has turned 1 year old today! Read about our story so far here (https://purpleprotocol.org/blog/purple-turns-one-year-old).
Congratulations and this is hoping for many more years. Better yet, this is a toast to the beginning of bigger and better things from Purple. Can't wait for it to step out in all its royal glory and take its rightful place. How goes the development?

Thank you for the kind words!

For the past month I have been focusing entirely on the virtual machine and smart contracts aspect of the protocol and all I can say is that the design of the vm is mostly finished and it is quite a beauty. There will be a blog post detailing this soon.

The development speed is still quite slow since I am still the only active core developer but I am currently attempting to onboard other enthusiasts so this might change soon.  

How about just putting up your entire requirement on angel.co and have the community come to you rather than you going to them. Pretty sure you'll be inundated by applications in no time if you post there

I don't exactly have the resources to hire people right now (which, I presume, is what angel.co is for) but I could certainly try this and maybe have a bunch of passionate people find out about this which wouldn't hurt at all right now.

The experimental nature of the project doesn't help either in this regard. Most people I met say they need some kind of proof on my part that it will actually work and this is quite hard to provide until the code is mostly written, which is what I need the devs for. It becomes a chicken and egg situation. Imagine Satoshi trying to recruit devs for building Bitcoin before he had any proof that it will actually work. I think that's why it was written by one or maximum a few people and after the concept has been proven, everyone realised that it was working.

All I can do is to suck it up and continue to write code by myself up until a basic testnet will always stay up. In a way I am grateful for this, even though it is very hard. The difficulties I encounter right now must have been much greater for Satoshi back in the day so I cannot complain.

See a few ads on angel.co that have zero payment and offered some sort of compensation model mostly in the blockchain's native cryptocurrency... Doesn't hurt to try, right? At the very least, you get more eyeballs for the project. Wish I wasn't so mathematically retarded...


Title: Re: [ANN] Purple - The Modern Blockchain Protocol | SSPoW | Smart Contracts | DEX
Post by: octavonce on April 02, 2019, 02:27:07 PM
Purple has turned 1 year old today! Read about our story so far here (https://purpleprotocol.org/blog/purple-turns-one-year-old).
Congratulations and this is hoping for many more years. Better yet, this is a toast to the beginning of bigger and better things from Purple. Can't wait for it to step out in all its royal glory and take its rightful place. How goes the development?

Thank you for the kind words!

For the past month I have been focusing entirely on the virtual machine and smart contracts aspect of the protocol and all I can say is that the design of the vm is mostly finished and it is quite a beauty. There will be a blog post detailing this soon.

The development speed is still quite slow since I am still the only active core developer but I am currently attempting to onboard other enthusiasts so this might change soon.  

How about just putting up your entire requirement on angel.co and have the community come to you rather than you going to them. Pretty sure you'll be inundated by applications in no time if you post there

I don't exactly have the resources to hire people right now (which, I presume, is what angel.co is for) but I could certainly try this and maybe have a bunch of passionate people find out about this which wouldn't hurt at all right now.

The experimental nature of the project doesn't help either in this regard. Most people I met say they need some kind of proof on my part that it will actually work and this is quite hard to provide until the code is mostly written, which is what I need the devs for. It becomes a chicken and egg situation. Imagine Satoshi trying to recruit devs for building Bitcoin before he had any proof that it will actually work. I think that's why it was written by one or maximum a few people and after the concept has been proven, everyone realised that it was working.

All I can do is to suck it up and continue to write code by myself up until a basic testnet will always stay up. In a way I am grateful for this, even though it is very hard. The difficulties I encounter right now must have been much greater for Satoshi back in the day so I cannot complain.

See a few ads on angel.co that have zero payment and offered some sort of compensation model mostly in the blockchain's native cryptocurrency... Doesn't hurt to try, right? At the very least, you get more eyeballs for the project. Wish I wasn't so mathematically retarded...

A big problem right now is that the token is not liquid yet and I intend to keep it this way until the project is more mature.

I am mostly focusing on getting right the consensus algorithm this month. If this is written well and tested all the way I believe I can start to focus actively on talking with and recruiting more people. Let's hope this goes well. Also, if this is done, I believe a basic testnet is not that far away.



Title: Re: [ANN] Purple - The Modern Blockchain Protocol | SSPoW | Smart Contracts | DEX
Post by: Ohgreatanotherone on April 03, 2019, 07:54:16 PM
Purple has turned 1 year old today! Read about our story so far here (https://purpleprotocol.org/blog/purple-turns-one-year-old).
Congratulations and this is hoping for many more years. Better yet, this is a toast to the beginning of bigger and better things from Purple. Can't wait for it to step out in all its royal glory and take its rightful place. How goes the development?

Thank you for the kind words!

For the past month I have been focusing entirely on the virtual machine and smart contracts aspect of the protocol and all I can say is that the design of the vm is mostly finished and it is quite a beauty. There will be a blog post detailing this soon.

The development speed is still quite slow since I am still the only active core developer but I am currently attempting to onboard other enthusiasts so this might change soon.  

How about just putting up your entire requirement on angel.co and have the community come to you rather than you going to them. Pretty sure you'll be inundated by applications in no time if you post there

I don't exactly have the resources to hire people right now (which, I presume, is what angel.co is for) but I could certainly try this and maybe have a bunch of passionate people find out about this which wouldn't hurt at all right now.

The experimental nature of the project doesn't help either in this regard. Most people I met say they need some kind of proof on my part that it will actually work and this is quite hard to provide until the code is mostly written, which is what I need the devs for. It becomes a chicken and egg situation. Imagine Satoshi trying to recruit devs for building Bitcoin before he had any proof that it will actually work. I think that's why it was written by one or maximum a few people and after the concept has been proven, everyone realised that it was working.

All I can do is to suck it up and continue to write code by myself up until a basic testnet will always stay up. In a way I am grateful for this, even though it is very hard. The difficulties I encounter right now must have been much greater for Satoshi back in the day so I cannot complain.

See a few ads on angel.co that have zero payment and offered some sort of compensation model mostly in the blockchain's native cryptocurrency... Doesn't hurt to try, right? At the very least, you get more eyeballs for the project. Wish I wasn't so mathematically retarded...

A big problem right now is that the token is not liquid yet and I intend to keep it this way until the project is more mature.

I am mostly focusing on getting right the consensus algorithm this month. If this is written well and tested all the way I believe I can start to focus actively on talking with and recruiting more people. Let's hope this goes well. Also, if this is done, I believe a basic testnet is not that far away.



Basic testnet will immensely boost the profile of the project. Tokens may be illiquid, however a testnet that the public can play around with is bound to become the proverbial proof-in-the-pudding


Title: Re: [ANN] Purple - The Modern Blockchain Protocol | SSPoW | Smart Contracts | DEX
Post by: octavonce on April 07, 2019, 06:37:46 PM
In order to provide a better way for the community to engage with us, we have replaced our telegram channel with a dedicated group which anyone can join and use for any kind of discussion related to the Purple Protocol. Join the discussion now! https://t.me/purple_protocol


Title: Re: [ANN] Purple - The Modern Blockchain Protocol | SSPoW | Smart Contracts | DEX
Post by: Ohgreatanotherone on April 12, 2019, 11:20:35 AM
In order to provide a better way for the community to engage with us, we have replaced our telegram channel with a dedicated group which anyone can join and use for any kind of discussion related to the Purple Protocol. Join the discussion now! https://t.me/purple_protocol

Finally! Physical space for real-time discussion!

Ok, well telegram is as close to physical as we can get to interact with development team. BTT is great too, but not as real-time as one would often wish. Also, saw that the Testnet is estimated three months from now!

Awesome!


Title: Re: [ANN] Purple - The Modern Blockchain Protocol | SSPoW | Smart Contracts | DEX
Post by: octavonce on April 13, 2019, 03:04:17 PM
We have just added the contribution guideline (https://github.com/purpleprotocol/wiki/wiki/Contribution-Guideline) and faq (https://github.com/purpleprotocol/wiki/wiki/Faq) pages to the purple wiki. Check it out!


Title: Re: [ANN] Purple - The Modern Blockchain Protocol | SSPoW | Smart Contracts | DEX
Post by: octavonce on April 13, 2019, 03:44:42 PM
In order to provide a better way for the community to engage with us, we have replaced our telegram channel with a dedicated group which anyone can join and use for any kind of discussion related to the Purple Protocol. Join the discussion now! https://t.me/purple_protocol

Finally! Physical space for real-time discussion!

Ok, well telegram is as close to physical as we can get to interact with development team. BTT is great too, but not as real-time as one would often wish. Also, saw that the Testnet is estimated three months from now!

Awesome!

Yes, the next thing we hope to get up and running soon is a dedicated forum.


Title: Re: [ANN] Purple - The Modern Blockchain Protocol | SSPoW | Smart Contracts | DEX
Post by: Ohgreatanotherone on April 17, 2019, 10:05:40 AM
We have just added the contribution guideline (https://github.com/purpleprotocol/wiki/wiki/Contribution-Guideline) and faq (https://github.com/purpleprotocol/wiki/wiki/Faq) pages to the purple wiki. Check it out!

O.o contribution guidelines! Let me see if there's any applicable to me... worst case scenario I'll just come up with Purple Protocol merchs - especially T-shirts. Something like:

"Think Blockchain
Think Purple"
 
or

"Purple Rain
Purple Hills
Purple Protocol"  ;D


Title: Re: [ANN] Purple - The Modern Blockchain Protocol | SSPoW | Smart Contracts | DEX
Post by: octavonce on April 29, 2019, 02:27:16 PM
I have just added the beginning of a lengthier introduction of the Consensus Scheme behind Purple: SSPoW. Check it out on our wiki: https://github.com/purpleprotocol/wiki/wiki/Consensus-Introduction


Title: Re: [ANN] Purple - The Modern Blockchain Protocol | SSPoW | Smart Contracts | DEX
Post by: octavonce on May 07, 2019, 01:38:27 PM
We have just posted the April 2019 development update! Check it out on our blog: https://purpleprotocol.org/blog/april-development-update


Title: Re: [ANN] Purple - The Modern Blockchain Protocol | SSPoW | Smart Contracts | DEX
Post by: Ohgreatanotherone on May 13, 2019, 08:41:02 AM
We have just posted the April 2019 development update! Check it out on our blog: https://purpleprotocol.org/blog/april-development-update

This is the biggest update yet! Was away for a while and came up to see the market's gone into some sort of run and now this. Also think we owe this ""Dr. Brain" some sort of gratitude for bringing those pain-points to light


Title: Re: [ANN] Purple - The Modern Blockchain Protocol | SSPoW | Smart Contracts | DEX
Post by: starkovblue on May 13, 2019, 09:34:52 AM
Architecture updates

In order to not break the validator pool, we have to make the state transitions explicit somehow. To achieve this, we will need to determine the sequence in which validators are joined when put against the stream of blocks that is produced by the pool.

Do you think that such dramatic changes will scare the big players? It’s not just small changes its change everything.


Title: Re: [ANN] Purple - The Modern Blockchain Protocol | SSPoW | Smart Contracts | DEX
Post by: octavonce on May 13, 2019, 03:04:49 PM
Architecture updates

In order to not break the validator pool, we have to make the state transitions explicit somehow. To achieve this, we will need to determine the sequence in which validators are joined when put against the stream of blocks that is produced by the pool.

Do you think that such dramatic changes will scare the big players? It’s not just small changes its change everything.

It definitely is a scary and dramatic change but otherwise we cannot achieve what we intend, which is a really fast, but secure open blockchain.

At the same time, what I meant by making the state transitions explicit is that instead of joining validators one by one while the pool is processing blocks, we have to instead stop the pool, join a set of new validators in a deterministic sequence/order, and then start the pool again with the updated validator set. In this way, the state transition is explicit and therefore safer/manageable. In the other way, some validators might witness the new node while others do not, which most definitely results in a fork.


Title: Re: [ANN] Purple - The Modern Blockchain Protocol | SSPoW | Smart Contracts | DEX
Post by: octavonce on May 13, 2019, 03:06:38 PM
We have just posted the April 2019 development update! Check it out on our blog: https://purpleprotocol.org/blog/april-development-update

This is the biggest update yet! Was away for a while and came up to see the market's gone into some sort of run and now this. Also think we owe this ""Dr. Brain" some sort of gratitude for bringing those pain-points to light

Indeed, his input helped quite a lot and I am very grateful for it. However, I am still not aware of his true identity or if he wishes to reveal it.


Title: Re: [ANN] Purple - The Modern Blockchain Protocol | SSPoW | Smart Contracts | DEX
Post by: Ohgreatanotherone on May 13, 2019, 08:12:28 PM
We have just posted the April 2019 development update! Check it out on our blog: https://purpleprotocol.org/blog/april-development-update

This is the biggest update yet! Was away for a while and came up to see the market's gone into some sort of run and now this. Also think we owe this ""Dr. Brain" some sort of gratitude for bringing those pain-points to light

Indeed, his input helped quite a lot and I am very grateful for it. However, I am still not aware of his true identity or if he wishes to reveal it.

The altruistic ones are never one to put their image/selves ahead of whatever cause they are trying to aid. I don't think we're ever going to know who they are anytime soon. Find by me since they're in for the tech


Title: Re: [ANN] Purple - The Modern Blockchain Protocol | SSPoW | Smart Contracts | DEX
Post by: octavonce on May 31, 2019, 04:29:03 PM
We have just posted this month's development update! It is all about mining this month, or rather, the mining algorithm that will be used by Purple. Check it out on on our blog (https://purpleprotocol.org/blog/may-development-update).


Title: Re: [ANN] Purple - The Modern Blockchain Protocol | SSPoW | Smart Contracts | DEX
Post by: octavonce on June 14, 2019, 07:32:09 PM
Some mid June updates:

* We have written a more comprehensive contribution guideline on our wiki for developer contributors: https://github.com/purpleprotocol/wiki/wiki/Contribution-Guideline.
* We have also added a roadmap which contains a rough timeline of the events of the project: https://github.com/purpleprotocol/wiki/wiki/Roadmap.
* We have been quiet in the past weeks because we have been focusing on writing the network layer of the core protocol. After this is done, the testnet is not very far away.

Stay tuned!


Title: Re: [ANN] Purple - The Modern Blockchain Protocol | SSPoW | Smart Contracts | DEX
Post by: octavonce on July 01, 2019, 03:59:28 PM
We have just posted this month's development update! Check it out on our blog:  https://purpleprotocol.org/blog/june-2019-development-update


Title: Re: [ANN] Purple Protocol - A Modern Platform for Decentralized Applications
Post by: octavonce on August 06, 2019, 11:47:24 AM
I have posted last month's development update just now. This month's update is all about oracles, or how the Purple blockchain will be able to interface with the outside world. Check it out on our blog!
https://purpleprotocol.org/blog/july-2019-development-update


Title: Re: [ANN] Purple Protocol - A Modern Platform for Decentralized Applications
Post by: octavonce on September 09, 2019, 05:33:20 PM
Here's last month's development update! This marks the beginning of network tests on Purple Core and is an exciting moment in the life of the Purple Protocol. Check it out here: https://purpleprotocol.org/blog/august-2019-development-update


Title: Re: [ANN] Purple Protocol - A Modern Platform for Decentralized Applications
Post by: octavonce on October 06, 2019, 07:22:43 PM
We have just released the development update for September! This month's update is probably the last monthly update before we have an operational test-net and presents information on the phases of the launch and how purple coins will be mined. Check it out on our blog: https://purpleprotocol.org/blog/september-2019-development-update


Title: Re: [ANN] Purple Protocol - The Global Decentralized Ledger Infrastructure
Post by: octavonce on November 04, 2019, 02:16:05 PM
The development update for this month is out! Check it out on our blog: https://purpleprotocol.org/blog/october-2019-development-update


Title: Re: [ANN] Purple Protocol - The Global Decentralized Ledger Infrastructure
Post by: octavonce on December 01, 2019, 04:21:31 PM
We have just released the newest development update! This update is probably the most important one to date and it talks about several architecture simplifications that have been performed on the core protocol. The result is a much safer, simplified and easily understood  protocol architecture. Read about it on our blog: https://purpleprotocol.org/blog/november-2019-development-update


Title: Re: [ANN] Purple Protocol - The Global Decentralized Ledger Infrastructure
Post by: octavonce on February 02, 2020, 10:53:40 PM
The latest development update for Purple is out! Check it out on our blog: https://purpleprotocol.org/blog/january-2020-development-update


Title: Re: [ANN] Purple Protocol - The Global Decentralized Ledger Infrastructure
Post by: octavonce on April 02, 2020, 04:41:14 AM
The development update for March has just been released! In this development update we talk about the latest changes to the network layer. We also briefly discuss how the COVID-19 pandemic affects the core developers. Check it out on our blog: https://purpleprotocol.org/blog/march-2020-development-update


Title: Re: [ANN] Purple Protocol - The Global Decentralized Ledger Infrastructure
Post by: octavonce on May 03, 2020, 05:34:23 PM
Last month's development update is now out!  This month's development update is about the latest news in the development of the protocol and what we plan to do in the next few months. Check it out on our blog: https://purpleprotocol.org/blog/april-2020-development-update


Title: Re: [ANN] Purple Protocol - The Global Decentralized Ledger Infrastructure
Post by: octavonce on June 05, 2020, 12:00:25 PM
We have just posted the latest development update. In this update we present the first virtual machine benchmark results. Check it out on our blog: https://purpleprotocol.org/blog/may-2020-development-update