Bitcoin Forum
June 16, 2024, 11:26:58 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 4 5 6 7 8 [9] 10 11 12 »  All
  Print  
Author Topic: [ANN] [DAG + Smart Contracts] Constellation | Horizontally Scalable Hylochain  (Read 24499 times)
constellationlabs (OP)
Newbie
*
Offline Offline

Activity: 184
Merit: 0


View Profile WWW
August 15, 2018, 02:45:41 PM
 #161

COO Ben is at Fintech Week: Silicon Valley 2018 today. If you're attending, be sure to catch his Keynote session at 2:10pm PST!            https://www.siliconvalley.fintechweek.com/agenda/speakers/301913
constellationlabs (OP)
Newbie
*
Offline Offline

Activity: 184
Merit: 0


View Profile WWW
August 20, 2018, 05:28:47 PM
 #162

We sat down with the engineering team recently to learn a bit more about what distributed tech is and how Constellation is utilizing it. Read what they had to say in our latest blog post:

https://constellationlabs.io/blog/index.php/how-constellation-is-utilizing-distributed-technology/

In this piece, we’re going to explore the world of distributed tech—breaking down what it is, how it’s currently being used in the tech landscape at large, why the blockchain space as a whole isn’t utilizing certain proven distributed tech frameworks, and how we intend on using them. We’re also going to break down what inspired Constellation’s approach to “Consensus as a service.” I sat down with several key members of our engineering team to discuss all of this in depth, so without further ado, let’s dive in.

From a higher level perspective, what does a distributed system entail? To put it simply, it’s the idea of splitting up computation and data across computers to solve scalability issues. Cloud computing can be seen as an example of distributed technology, where data and applications are served to millions of users over the internet. In terms of cryptocurrency, Bitcoin and cryptos approached distributed systems in a different way, as they weren’t focused on solving data processing problems or really trying to improve anything. As our CTO Wyatt Meldman-Floch puts it, “They were trying to add some notion of cryptographic security by mixing in economics. It all started with scalability, and crypto sort of became this other thing.”

What The Heck Is Distributed Tech?
To take a more macro-level view on what some of the most popular distributed tech platforms are, let’s turn it over to our VP of Engineering, Ryle Goehausen: “I would say really the basis for most of our involvement comes from Apache’s Spark, which is the big data distribution platform.” To put it another way, Spark is essentially a general-purpose data processing engine, which can rapidly analyze data at scale.

Ryle also mentioned the Scala programming language ecosystem as being a big influence within Constellation. Scala, which stands for “scalable language”, is already used by major companies such as Twitter and LinkedIn. Ryle also mentioned several other major distributed tech influences, in Akka, Algebird, and Hadoop. Akka is a toolkit for building highly distributed applications on Java, while Algebird provides abstractions for algebra within the Scala programming language. Apache’s Hadoop is a software library that allows for the distributed processing of large amounts of data and is used by the likes of Twitter, Spotify, and Facebook to store and process mass quantities of data in real time. At the heart of Hadoop lies MapReduce, which is a programming paradigm that allows for this massive amount of scalability to occur! For a quick laymen’s term breakdown of how that works, check this out: https://www.quora.com/How-would-you-explain-MapReduce-in-laymans-terms. If you’re wondering how all of this ties into what we’re doing at Constellation and the blockchain space in general, hang in there, we’ll get there.

In terms of how all of the aforementioned distributed tech paradigms influence Constellation, here’s what Ryle had to say: “We’re primarily trying to use a lot of the techniques and the same libraries that other distributed systems are built with, and that’s all sort of oriented around Scala, Akka, Algebird and some of the other like standard tooling.”

What We Learned From Twitter
To take this a step further and explore how these tools are being used in the greater tech landscape at large, let’s take a look at how Twitter leverages MapReduce and Hadoop. In terms of processing massive quantities of data, Twitter relies on MapReduce to “literally do reputation calculations on individual tweets to figure out whether or not this show on your newsfeed.” Essentially, what Twitter does is leverage MapReduce and other streaming libraries and “mix these two tools in order to aggregate data and serve it very quickly and in such a way that is horizontally scalable. That’s how Twitter can strain billions of data points per second,” according to Wyatt.

Ryle backed this up by sharing some further details on how Twitter uses Hadoop and Spark:

“Twitter primarily lies on Hadoop, and they’re migrating Spark in a lot of places. They have separate things that are done for real-time aggregation, but a lot of it is unified under a common language. That’s why they’re developing so much Scala code—because it integrates with older code. They don’t need to rewrite a bunch of things. They can use a lot of the same code for both real-time, batch processing and analytics, so they’ll have batch jobs that run every night, but also have real-time system stuff.”

Using Hadoop basically allows them to store and process billions of tweets, log files, and other forms of data across thousands of nodes.

Right about now, you might be thinking, “Great! There are all of these proven existing frameworks for scaling distributed tech—this sounds like a perfect, seamless integration for the blockchain and crypto space!”

Well, not quite.

The main hold up is that the existing code stacks are not very friendly to a crypto stack, or in the case of Bitcoin, Ethereum, or Dash’s stack— “it would not plug in very nicely and it wouldn’t have a lot of code reusability,” said Ryle. To extrapolate this point further, we can take a look at Ethereum, whose own messaging strongly plays up MapReduce (have a look at their Plasma whitepaper), but isn’t using any of the language libraries or common practices associated with MapReduce itself. Seems a bit backward, right? I asked Ryle why this is, and his response was quite illuminating:

The obvious answer is because they already have code and dependencies that are already written specifically for Ethereum, and they’re a slow moving boat. It would be difficult for them to adapt and change all of their existing stuff over [to MapReduce], so they’re viewing it as basically tacking it on to their system. There are other people trying to migrate MapReduce—except our strategy for the migration of MapReduce is to use libraries that are other actually used for developing MapReduce, instead of trying to develop MapReduce inside of crypto libraries.

In short, there are already existing standards for proven distributed tech frameworks such as MapReduce, and we want to reuse as much of that code as we can and forge the right path from the start. Ethereum is essentially ignoring the long-standing reasons for why people chose design patterns oriented around MapReduce in the first place, and are trying to recreate something that already works, but within their own sandbox. The same can be said of their approach with the Ethereum Virtual Machine (EVM). Ryle shared his take on this in the following quote:

“If you look at all the work that was done on EVM, it’s going to be scrapped because they went down a path that is now worthless because they chose to go against the standard. It’s better to go with common standards and to use tools that are already there. There’s no reason to try and reinvent the wheel for everything.”

Another example can be seen with IOTA, who are currently experiencing a crisis on their main network due to spammers creating a Side Tangle parasite chain, resulting in transactions not being confirmed. Wyatt shared his take on this by saying “this is the price of trying to customize too early.” IOTA has essentially tried to reinvent cryptography, which violates the underlying tenets of cryptography itself.

This isn’t meant to bash either Ethereum or IOTA—we’re merely trying to illustrate the importance of leveraging the existing proven tech and forging the proper path the first time, rather than trying to retroactively fit a lot of these tools in down the line.

Ryle sums it up quite succinctly:

If we go down the wrong path of attempting to prop up something that isn’t necessarily going to become the standard in the future, it’s a lot of wasted effort. And we’d like not to do that. These other tools have billions of dollars of aggregate industry value, and to ignore them is silly.


Forging the Right Path
With Constellation, we want to forge the right path from the outset. We want to develop libraries that bridge the gap between crypto and existing distributed tech, and that’s not really easy to do right now. While other projects are wasting their time trying to port existing distributed tech over into crypto, we want to leverage what already works, and focus on building the future.

“There are projects that are trying to adopt Bitcoin and Ethereum to Scala and Java, and they’re sort of in a weird state where they don’t really work all the way, and they don’t fully integrate. So we’re trying to focus on using languages and tools that make that problem go away,” shared Ryle.

While this is a difficult task, we aren’t the only ones in this space that are pursuing a similar path. As Ryle said, “Rchain are using a lot of the same functions same crypto code that we’re using. Waves is another example. When you look at a project like Rchain, they’ve essentially proven that it’s possible to do crypto on the Scala ecosystem.” But again, what distinguishes us from Rchain is we’re not trying to approach this as a language problem. While they’ve created Rholang, which is a new language for writing smart contracts that run on the RChain virtual machine, we’re more heavily focused on leveraging Scala for big data processing. Ryle went on to share how the success of Rchain has “proven that there is a demand for using the tooling of Scala and these other distributed systems within the crypto space.”

When I asked the team if it’d be fair to consider Constellation as one of the first blockchain companies intentionally building a bridge for mainstream developers to port over into the blockchain space, Ryle made it clear that Constellation isn’t unprecedented in the aspect of what toolkits we are trying to use, but rather, “we are unprecedented in the sense that we’re trying to solve a very narrowly scoped problem. We’re focusing heavily on the MapReduce aspect and using monads and other functional programming in Scala Concepts.”

Constellation – Consensus as a Service
During the interview, Wyatt shared the approach they took when dreaming up Constellation Labs, and how they leveraged their prior experience in creating scalable tech. “The approach we had was—we already build systems for the scalability side. We are also heavily into crypto, and we wanted to sort of take these things over and apply the stuff we learned for solving scalability problems and also use them for making scalable cryptocurrencies.” Wyatt went on to say that, “our approach to scalability was also a solution to that splitting protocols problem. That’s what we do. What we did was create this protocol for communicating across protocols.” By solving that, it allowed us to do MapReduce, and its like they were the same problem – one and the same. Tyler Prete, one of our Distributed Systems Engineers, added that by leveraging Java and Scala, “we can more easily integrate with these existing tools like Spark or Hadoop, because we can kind of be the connection point where blockchain needs MapReduce.”

At this point in the conversation, Ryle brought up the notion of focusing on Constellation as consensus as a service—“of trying to be that networking protocol layer between decentralized applications.” He went on to draw comparisons between us and Amazon’s S3 cloud storage service. “The same way that Amazon created S3 as its own service oriented around storage, we’re a service oriented around consensus network organization and reputation.”

To reiterate an earlier point, we’re not trying to focus on the contract language, because the contract language can be considered plug-and-play on top of a consensus player. As Ryle succinctly put it, “Our competitive edge is just focusing on consensus and reputation and big data at scale.”

The team made it clear throughout the interview that Constellation wants to integrate with as many other libraries as we can, and that they want it to be possible for code to be reused. “You should be able to run the same kind of code that does transaction processing in Spark, in Storm and even in Hadoop, and connect it to nodes also running off phones—that’s a very reasonable objective, but we can’t just do this in a vacuum,” said Ryle. By that, he means there are already standard ways of accomplishing this, and Constellation is trying to properly integrate with them.

While at the moment, you can’t really run Spark on a phone, Ryle admitted that “you can run a lot of the same libraries and code and have it very easy to connect to services that run Spark or Storm, or any of these other Hadoop-like services.” In closing, Ryle shared how the underlying problem that Constellation is tackling is very well stated:

We want these nodes running everywhere. We will also want them running on data centers. We want batch analytics to be possible on the data. We want to be able to run models to reputation and do analytics— all of that, the industry already has techniques for that, but they’re not being used.

constellationlabs (OP)
Newbie
*
Offline Offline

Activity: 184
Merit: 0


View Profile WWW
August 20, 2018, 07:13:48 PM
 #163

https://constellationlabs.io/blog/index.php/techcrunch-disrupt-announcement-ticket-giveaway/

We’re partnering with TechCrunch Disrupt SF 2018! On September 5 2018, Constellation will host a panel aimed at demystifying recent developments in crypto fundraising and a workshop on how to run a node on Constellation’s Testnet. We’ll also be on the ground over the course of the three days meeting the community and interviewing some of Crypto’s leading figures.  For a chance to win one of five GA tickets, fill out your details on Orion: https://docs.google.com/forms/d/e/1FAIpQLSca-JMW4QROl6MwMAbioN-o3sndMPLclsJopZgaC5ChR61pFw/viewform

 We’re looking forward to seeing you there. Read on for further details…

Panel: Beyond the ICO: New approaches to fundraising and enterprise investment in blockchain.

Time: Friday September 7th, 1.30 -2.30

Moderator: TBA

Speakers: Ben Jorgensen (COO of Constellation), Jacob Mullins (Shasta Ventures), + More TBA

Constellation has been through an extraordinary period of fundraising and subsequent growth. Ben Jorgensen (COO) and team will share their experiences in this session exploring the complex and ever-changing fundraising models available, and what enterprise leaders look for in potential partners and projects.

Workshop: Running a Node on a Distributed Ledger: Live Demo

Time: Friday September 7th, 2.45 – 3.30

Speakers: Wyatt Meldman-Floch, Ryle Goehausen

Wyatt (CTO) and Ryle (VP of Engineering) will demystify the key components of distributed ledger technology, and provide a guide on how to set up a Constellation node. Participants will leave with the basic skills they need to contribute to an emerging 3rd-Gen protocol.

As mentioned, there will be more announced in the coming weeks, so stay tuned!
constellationlabs (OP)
Newbie
*
Offline Offline

Activity: 184
Merit: 0


View Profile WWW
August 21, 2018, 07:47:49 PM
 #164

Want to attend TC Disrupt SF? Join our Orion portal for a chance to win a ticket!            https://docs.google.com/forms/d/e/1FAIpQLSca-JMW4QROl6MwMAbioN-o3sndMPLclsJopZgaC5ChR61pFw/viewform
constellationlabs (OP)
Newbie
*
Offline Offline

Activity: 184
Merit: 0


View Profile WWW
August 23, 2018, 10:13:00 PM
 #165

COO Ben discusses Constellation's distributed ledger and consensus model with Markets Media.            https://www.marketsmedia.com/constellation-labs-eyes-distributed-ledger-3-0/
constellationlabs (OP)
Newbie
*
Offline Offline

Activity: 184
Merit: 0


View Profile WWW
August 24, 2018, 08:31:33 PM
 #166

Constellation Update – Company All-Hands, Engineering, Product & TC Disrupt
https://constellationlabs.io/blog/index.php/constellation-update-company-all-hands-engineering-product-tc-disrupt/

Our team just got back from a two-day all hands meeting at our headquarters in San Francisco, and we wanted to share some of the highlights from our time together.

Over the course of the week we established a more organized, efficient and a cross collaboration framework which will be reflected in the output from our Marketing, Product and Engineering teams. It was a two day deep dive that allowed us all to come closer together and collectively refine the mission and values of Constellation.  The overall outcome was concrete three year plan which will be reflected and communicated in our upcoming whitepaper.

Each department head presented their roadmap for the coming months. Our COO Ben Jorgensen kicked things off with an inspiring talk on the highlights of the company’s growth thus far, while outlining some of our future goals (such as increasing our community visibility with Meetups), among many others. Zac Russell (CMO), touched upon all of our marketing initiatives thus far, and highlighted some new deliverables that we’re cooking up.

Brion Hickey and Gio Valdenegro laid out the roadmap from the product side of things, sharing what we can expect as V2 of Orion gets rolled out in the coming months. Altif Brown (CCO) shared all of the incredible growth we’ve had throughout all of our communities, while Ben Diggles, our VP of Business Development, closed out Thursday by outlining all of our exciting partnership opportunities (stay tuned for more info on these!)

Wyatt wrapped up our time together by giving a mind expanding talk on Friday—hashing out the granular technical aspects underlying the grand vision of Constellation to our entire team—who was able to ask questions and gain further clarity on the scope of what we’re building.

Engineering Update


- Our Schema was updated.  We are now using a generic Edge type, similar to the model in popular graph processing libraries like Pregel or GraphX. https://github.com/Constellation-Labs/constellation/pull/147

- We’re migrating to more granular edges for building up bundle partitions to eliminate some redundancies. This is based off the schema GraphX uses for Pregel programs. It presents everything as an edge, including transactions as an edge between two addresses, and distinguishes checkpoint edges (introduction of new data to the graph) from validation edges (re-verification and merging of separate partitions).  https://github.com/Constellation-Labs/constellation/issues/126

- The team is now working off of dev branch to stage changes properly before merging to master. They’ve also merged the download updates and fixes in preparation of dev testing, and are working on setting up separate testing environments in Kube. https://github.com/Constellation-Labs/constellation/tree/dev

- Open sourced the cache for the visualizer. https://github.com/Constellation-Labs/dashboard-server

- A number of additions were made to our wiki, and have much more comprehensive arch diagrams in the works. https://github.com/Constellation-Labs/constellation/wiki

Product Update

Breakdown of recent site and Orion updates:

- Added front end validation to the transaction approval process which lets transactions run more smoothly and reduces risks that a user inadvertently stakes more than DAG than intended.

- We added the ability to link Medium accounts to your Orion profile, which will let you participate in bounty rewards related to marketing.

- Updated transaction processing screens so that they auto-refresh to show transaction updates.

- Fixed some issues that arose after Metamask released updates.

- Small changes to copy and UI.


TechCrunch Disrupt Sponsorship


We have a couple of amazing new additions to our TechCrunch Disrupt panel.  Erika Perez, Global Leader of IBM Blockchain Strategy & Ecosystem, and Jascha Kaykas-Wolff, CMO of Mozilla will be joining the panel alongside previously announced Jacob Mullins, Partner at Shasta Ventures, and our very own COO Ben Jorgensen. See you on September 7th at 1.30pm PST.

Jascha believes in two key principles: Find opportunities where no one else is looking; And, never fail the same way twice. It’s a methodology centered around Agile marketing practices and marketing technology. Coupled with a B.A. in Psychology from Whittier College, it’s one that’s served him well professionally and personally. Prior to joining Mozilla, Jascha most recently served as CMO for BitTorrent, CMO for Mindjet, senior vice president of marketing and customer success at Involver and he previously headed Global Marketing for Webtrends.

 
Erika is responsible for developing and expanding IBM’s Blockchain ecosystem across all industries to accelerate enterprise adoption of Blockchain.  Working with a broad spectrum of Startups, ISV’s, GSI’s, and industry partners, Erika leads a business development team focused on building Blockchain networks based on the IBM Blockchain Platform.  Key to Erika’s charter is to develop and pivot on the business models and commercial vehicles to monetize Blockchain Networks.  Prior to her role in Blockchain, Erika led IBM’s Global charter for FinTech partnering with both Startups and Incumbent firms.  During her tenure at IBM, Erika has had multiple sales and leadership roles including her responsibility over clients such as Google, Facebook, Twitter and PayPal.

Our TC Disrupt ticket giveaway remains open through the 27th, so if you haven’t already done so, fill out your details on Orion for a chance to win one of five GA tickets to the event: https://docs.google.com/forms/d/e/1FAIpQLSca-JMW4QROl6MwMAbioN-o3sndMPLclsJopZgaC5ChR61pFw/viewform

We’re extremely excited to interact with our community on site and look forward to seeing you all there!
constellationlabs (OP)
Newbie
*
Offline Offline

Activity: 184
Merit: 0


View Profile WWW
August 27, 2018, 09:44:09 PM
 #167

Constellation: Can blockchains ever move beyond economic models? VP of Engineering, Ryle, weighs in on Finder.com Australia’s premier crypto and financial outlet.             

Read more here:

https://www.finder.com.au/constellation-can-blockchains-ever-move-beyond-economic-models?utm_content=buffera73c0&utm_medium=social&utm_source=twitter.com&utm_campaign=buffer   
constellationlabs (OP)
Newbie
*
Offline Offline

Activity: 184
Merit: 0


View Profile WWW
August 29, 2018, 07:24:53 PM
 #168

Head of Marketing, Zac, talks DAGs, Proof of Meme, and the future of the distributed ledger world with CoinCentral.         

Read more here:

   https://coincentral.com/exploring-dags-and-blockchain-scalability-issues-with-constellation-labs/?utm_campaign=explore-dags&utm_medium=social&utm_source=twitter
shewasfourteen
Sr. Member
****
Offline Offline

Activity: 686
Merit: 261



View Profile
September 30, 2018, 07:08:27 AM
 #169

Constellation Labs is now a member of The Linux Foundation's Hyperledger.

https://constellationlabs.io/blog/index.php/constellation-announcement-constellation-joins-hyperledger/


and also listed now on Hitbtc
Kasperiko
Sr. Member
****
Offline Offline

Activity: 924
Merit: 255


View Profile
September 30, 2018, 07:45:24 AM
 #170

Constellation Labs is now a member of The Linux Foundation's Hyperledger.

https://constellationlabs.io/blog/index.php/constellation-announcement-constellation-joins-hyperledger/


and also listed now on Hitbtc

This is very important news. It's odd that this news went a little under the radar. Usually such news shows that technically the team works very well. From what im know in order to get into the Linux Foundation, you need to work hard and efficiently.
It remains to run the marketing program and promote the community and then there will be success.
constellationlabs (OP)
Newbie
*
Offline Offline

Activity: 184
Merit: 0


View Profile WWW
October 01, 2018, 04:27:48 PM
 #171

A new exchange listing, Hyperledger membership, Engineering Updates, new TC Disrupt content, plus a recent MeetUp and future events in our most recent Constellation Update:         

https://constellationlabs.io/blog/index.php/constellation-update-hyperledger-hitbtc-news-eng-updates-tc-disrupt-video-and-meetups/
constellationlabs (OP)
Newbie
*
Offline Offline

Activity: 184
Merit: 0


View Profile WWW
October 02, 2018, 04:11:21 PM
 #172

Constellation is approaching Distributed Ledger Technology differently. Learn about Wyatt (CTO) and Ryle's (VP of Engineering) unique vision for the future.   

https://constellationlabs.io/blog/index.php/our-vision-for-distributed-ledger-technology/
Kasperiko
Sr. Member
****
Offline Offline

Activity: 924
Merit: 255


View Profile
October 07, 2018, 07:23:31 PM
 #173

Constellation is approaching Distributed Ledger Technology differently. Learn about Wyatt (CTO) and Ryle's (VP of Engineering) unique vision for the future.   

https://constellationlabs.io/blog/index.php/our-vision-for-distributed-ledger-technology/

Exactly this moment did not like- Proof of Stake, while it addressed the wastefulness issue, it still has vulnerabilities. Smaller networks can still be easily attacked, and in terms of governance, it’s fundamentally anti-democratic. “We don’t run the world by trusting people just because they have money, right? That’s not Democratic. That’s not a governance solution" said Ryle.
That is, he believes that POW is better and he is more democratic. And there is nothing that 70% of the entire mining belongs to just a few companies and pools, and if they agree on what has already happened in the past, they can make any decision to take advantage of small players. Both badly need to be combined and sharply criticizing only one side is a bad taste in my opinion.
But you doing great work guys!
shewasfourteen
Sr. Member
****
Offline Offline

Activity: 686
Merit: 261



View Profile
October 08, 2018, 07:23:56 AM
 #174

Constellation is a horizontally scalable, mobile friendly, transaction-free DAG ecosystem project that runs on a reputation-based delegate selection model. Constellation runs smart contracts as micro services, uses reputation-based consensus. Has the ability to run light nodes on mobile phones and other such devices and rewards for running nodes.
constellationlabs (OP)
Newbie
*
Offline Offline

Activity: 184
Merit: 0


View Profile WWW
October 08, 2018, 07:19:41 PM
 #175

COO Ben shares his thoughts on the future of investment in cryptocurrency:

https://constellationlabs.io/blog/index.php/a-new-era-of-cryptocurrency-investment-is-upon-us/
constellationlabs (OP)
Newbie
*
Offline Offline

Activity: 184
Merit: 0


View Profile WWW
October 09, 2018, 06:05:42 PM
 #176

We're hosting an LA MeetUp w/ Element Group! Join us on 10/18 for presentations by Constellation COO Ben Jorgensen and Element Group CEO Stan Miroshnik, followed by networking. Hope to see you there!

https://www.eventbrite.com/e/peer-to-peer-blockchain-mixer-tickets-51213824929
constellationlabs (OP)
Newbie
*
Offline Offline

Activity: 184
Merit: 0


View Profile WWW
October 10, 2018, 05:06:54 PM
 #177

Our Head of Marketing, Zac, has been featured in DMN. Check out what he has to say about  marketing and hiring for the blockchain startup space.            

https://www.dmnews.com/data/blockchain/article/21025534/the-missing-link-in-blockchain
constellationlabs (OP)
Newbie
*
Offline Offline

Activity: 184
Merit: 0


View Profile WWW
October 10, 2018, 06:02:10 PM
 #178

VP of Business Development, Benjamin Diggles, will be attending MOBI’s Colloquium this Friday in New Mexico. The event aims to promote and advance standards and accelerate adoption of blockchain, distributed ledger, and related technologies. MOBI will be livestreaming the event so be sure to tune in to learn more about MOBI and the future of mobility!

https://www.facebook.com/events/689334061448775/
constellationlabs (OP)
Newbie
*
Offline Offline

Activity: 184
Merit: 0


View Profile WWW
October 12, 2018, 09:34:08 PM
 #179

An update from Engineering, BWSF+ Block-Con Recaps, Upcoming Events, and Recent Press all in this week's Constellation Update.

            https://constellationlabs.io/blog/index.php/eng-news-event-roundup-recent-press/
constellationlabs (OP)
Newbie
*
Offline Offline

Activity: 184
Merit: 0


View Profile WWW
October 16, 2018, 06:33:33 PM
 #180

2018 has been an exciting time for blockchain. In our latest blog, we take a look at the major trends of the year in the space, and how Constellation fits into them.             

https://constellationlabs.io/blog/index.php/trends-from-the-trenches/
Pages: « 1 2 3 4 5 6 7 8 [9] 10 11 12 »  All
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!