Home » Archives for Shamsh Hadi

https://www.linkedin.com/pulse/why-zorrosign-moved-microservices-you-should-too-shamsh-hadi/

At ZorroSign we recently made a major change to our platform architecture!

We have always been built on blockchain—and have always delivered the most private, most secure digital signatures—but we wanted to scale our platform much more aggressively, and that vison required a big change in how we develop and deploy our technology. Specifically, we moved from a centralized, monolithic approach to using microservices and containers.

Let me explain why we choose this new engineering approach and how your company might benefit from a similar move.

What Are Microservices? What Are Containers?

“A microservices architecture splits your application into multiple services that perform fine-grained functions and are part of your application as a whole,” explains IBM. “Each of your microservices will have a different logical function for your application.”

Explained another way, “a microservices framework creates a massively scalable and distributed system, which avoids the bottlenecks of a central database,” says Avi Networks (now part of VMware). “Microservices break an application into independent, loosely-coupled, individually deployable services… allowing for each service to scale or update using the deployment of service proxies without disrupting other services in the application and enabling the rapid, frequent and reliable delivery of large, complex applications.”

There are two types of microservices:  Stateless (which do not save data, so any data is lost when the microservice’s container restarts), and Stateful (which do save data and so write to a database).

And where do you put those microservices? In containers.

“Containers are packages of your software that include everything that it needs to run, including code, dependencies, libraries, binaries, and more,” continues IBM. “Docker and Kubernetes are the most popular frameworks to orchestrate multiple containers in enterprise environments”

“Containers are a lightweight alternative to VMs for providing isolated operating environments for your workloads,” says Edward Kisller for JFrog. “Containers avoid the infrastructure overhead of a full-blown OS and provide only those resources (i.e., installations, dependencies, and code) that your applications actually need.” In other words, containers do not use all the CPU or RAM but instead share the operating system kernel for faster boots and less memory consumption.

“A container is a useful resource allocation and sharing technology. It’s something dev-ops people get excited about,” writes Ev Kontsevoy for Teleport. “A microservice is a software design pattern. It’s something developers get excited about.”

Why Develop with Microservices? What Are the Benefits?

“Microservices architectures make applications easier to scale and faster to develop,” notes Amazon Web Services. “Enabling innovation and accelerating time-to-market for new features.”

Such were ZorroSign’s high-level goals:  To improve scalability, resilience, and productivity.

“Moving to microservices enabled a polyglot tech stack,” said Priyal Walpita, chief technology officer at ZorroSign. “Which means our engineers could contribute to our development efforts using the technology stacks that they know best, plus we boosted performance and facilitated a continuous delivery pipeline for easier and faster deployments.”

“Applications were traditionally built as monolithic pieces of software,” continues Avi Networks. “Monolithic applications have long life cycles, are updated infrequently and changes usually affect the entire application. Adding new features requires reconfiguring and updating the entire stack — from communications to security. This costly and cumbersome process delays time-to-market and updates in application development.”

In contrast to monolithic apps, microservices/container architectures bring benefits such as greater:

  • Agility — Microservices foster the organization of small, independent teams that take ownership of their services. “Best examples of microservices agility are sites like Amazon, eBay, Uber and Netflix, which are active 24×7,” notes AnAr Solutions. “The performance of these sites is a benchmark for other sites and applications. The response time, ability to handle multiple requests and process in minimum time is commendable.”
  • Productivity — “The microservice architecture tackles the speed issue of applications and its productivity by dividing it into small parts. In this way, these applications are developed and maintained at a very fast speed,” writes Terralogic. “Different teams work independently without waiting for the other team to finish their chunks of work. In this way, separate microservices are easier to locate and modify. Quality assurance of this microservice architecture is very fast as the programs which are developed early are tested instead of waiting for all the programs to be completed.”
  • Resilience — With microservices, an application will still function if part of it goes down because microservices allow for spinning up a replacement, granting the entire system higher resilience. “Three well-known microservices resiliency techniques improve fault tolerance and allow applications to smoothly handle failures,” explains Dr. Alan F. Castillo for Cloud Computing Technologies: Retry patterns, circuit breaker patterns, and timeout design patterns. “Employing these patterns is a very effective resiliency strategy for microservices applications. It doesn’t matter how you apply these patterns; what matters is that you have systems that can properly deal with failures.”
  • Continuous integration/continuous delivery (CI/CD) — Microservice facilitate CI/CD for applications and modernize the technology stack. “There are some goals of a strong CI/CD progression to serve in the microservices design, for example, every team of coders independently develop and install their changes or edits owned by them individualistically so that it did not affect or disrupt the work of other teams,” reports DevOps Enabler. “CI/CD best practices include the goal of automating the building process, testing the products, and then releasing the software. Developers must be able to track the performance metrics of DevOps throughout the software delivery lifecycle and warn people so that they can quickly recover if something goes wrong during deployment or release cycle.”
  • Scalability — Meeting demand is easier when microservices only have to scale the necessary components, which requires fewer resources. “Since an application is composed of multiple micro services which share no external dependencies, scaling a particular micro service instance in the flow is greatly simplified,” writes Atul Saini for Fiorano Software. “If a particular microservice in a flow becomes a bottleneck due to slow execution, that microservice can be run on more powerful hardware for increased performance if required, or one can run multiple instances of the microservice on different machines to process data elements in parallel.”
  • Security — “Migrating to microservices creates an opportunity for a much better security model,” explains Kontsevo. “As every microservice is a specialized process, it is a good idea to only allow it to access resources it needs. This way a vulnerability in just one microservice will not expose the rest of your system to an attacker.”

Not everything is easier with microservices, of course. Three commonly acknowledged challenges of deploying microservices typically include: First, the “complexity from managing microservices written in different languages,” as we’ve done at ZorroSign. Second, the “cost implications of network resource usage from remote calls across multiple services” and third, “investigating root causes or auditing systems becomes challenging when dealing with log management across distributed services, as log aggregators would be required,” suggests BMC.

But complexity, costs, and support all increase when any application grows, so facing those challenges with a microservices architecture is little different than facing the complexity, costs, and support challenges of a larger monolithic app.

Why ZorroSign Choose Microservices—and Why You Should, Too

Our CTO and I have been assessing microservices for several years, and committed to an overhaul of our DevOps a year ago. We spent the first half of 2022 building the next iteration of ZorroSign’s blockchain platform with microservices and containers.

“Beyond the development advantages, microservices allow us to more easily manage complex ZorroSign back-end services and improve our entire system’s resiliency,” said Walpita. “It’s far easier finding and fixing bugs, allowing our development team to focus on single, isolated functionality, and then deploying asynchronously to other development efforts, whenever new functionality is tested and ready.”

From my perspective, I was intrigued to learn how microservices improved our defense-in-depth capabilities, as security can be configured much more granularly and configured at each microservice level. With ZorroSign’s commitment to privacy and security, microservices were another important upgrade to keep our platform ahead of the competition.

“Our team develops in C#, Go, Java, and Python,” adds Walpita. “Being able to deploy all those program languages in a single application, united across AWS cloud tools, Docker, and Kubernetes, gives ZorroSign the flexibility our engineers desire and the scalability our customers demand.”

Finally, I asked Priyal what advice he might give other organizations thinking of deploying microservices. He said: “Make sure your product and development team are mature enough to adopt the complexity of a microservice architecture. At some point, a growing app’s need for scalability, higher resilience, and improved performance may make microservices the best path forward. But ensuring your DevOps are ready to integrate and manage all the pieces of a polyglot tech stack is the key to success.”

I encourage you to consider microservices for your apps, and welcome the chance to talk more about this exciting architecture for new technologies!

(Originally published on LinkedIn by Shamsh Hadi, CEO and Co-Founder of ZorroSign)

Blockchain advocates have long been excited about distributed ledger technology’s potential for cybersecurity, financial services (especially cross-border payments), the Internet of Things (IoT), real estate, and supply chain management. But as we look ahead to 2023, some other interesting markets are worth watching for the latest trends in blockchain use. Here are four industries I believe will accelerate blockchain adoption to their great advantage . . .

Cloud Services

The worldwide public cloud services market, including Infrastructure as a Service (IaaS), Platform as a Service (PaaS), and Software as a Service (SaaS) generated $408.6 billion in 2021 revenues, according to the International Data Corporation (IDC). Big Tech players “Alphabet, Amazon and Microsoft have together invested almost $120 billion in the past 12 months,” calculates as recent article in The Economist. “Most of it in data centres and the servers that power them.”

While the cloud services industry is still young, this tremendous growth (and high profit margins) drive innovation. Such innovation will include more blockchain technology in 2023.

For example, “cloud storage is another sector that blockchain can electrify and change. Traditionally, cloud storage companies allow users to purchase a certain amount of storage that is generally sold by the terabyte,” explains a recent Investment Bank article. “Blockchain technology provides users a means to store information on a peer-to-peer network. A cloud storage platform could be run by the nodes that help facilitate transactions. The nodes would be giving up storage on their computers to the consumer, but the node owners would be compensated by the consumers for storing their data.”

More broadly for cloud services, blockchain brings greater privacy and security capabilities. “When cloud computing is integrated with blockchain technology, the main problem, security and privacy, gets addressed,” writes Tanvir Zafar for Yahoo! Finance. “Data deletion from one computer does not erase data stored on other devices on a blockchain network. As a result, there is no danger of data loss or alteration. Data on a blockchain is irremovable. It allows for clear documentation of data usage, including where, when, and how it is being used and by whom. Blockchains are governed by codes, eliminating the need for third-party rules, making them a more secure alternative.”

Such elevated privacy, security, and automation can quickly advance cloud computing—not only delivering greater benefits to consumers, but potentially lowering costs and overhead for providers.

Beyond these improvements to today’s cloud services, blockchain can be added as a service offering itself. “In blockchain-based cloud computing, blockchain can be used for secure network management by hosting the blockchain network as Blockchain as a Service (BaaS) in a cloud environment,” suggests Kenny Kleinerman for Ridge. “BaaS supports IoT applications by offering different blockchain-enabled services, such as smart contract services, verification services on user transactions, and cloud blockchain storage.”

I foresee blockchain as a huge piece of cloud services—both infrastructure and offering—in the years ahead!

Government

At ZorroSign, we have already seen many government agencies, departments, and ministries adopting blockchain for operations. “Governments are likely to begin implementing distributed ledger technology (DLT) systems that will replace traditional paper-based systems,” writes Finnegan Pierson for Chetu. “The migration to digital data systems has been going on for quite some time, but DLT has greater advantages that provide greater trust, transparency and security via encryption and validation features.”

Government organizations can readily improve constituent communications and administration with the innovative adoption of blockchains.  For example, blockchain can improve:

  • Form processing and chain-of-custody tracking of government documents
  • Identification and elimination of errors in government documents, plus reduce tampering and detect forgery
  • Operational efficiency by eliminating paper-based records (and related equipment and supplies to print, copy, distribute, and store paper documents)
  • Cost controls by reducing the expense of manually processing applications, forms, and documentation of all kinds and instead implementing digital records stored on blockchain

In the UAE, for example, H.H. Sheikh Mohammed bin Rashid Al Maktoum’s Digital City Vision for Smart Dubai has been a guiding principle for ZorroSign and other blockchain innovators. For ZorroSign, we share his goal of a paperless life in the UAE by 2030, but Digital Dubai pursues many technologies, as the leaders have found “government effectiveness became increasingly imperative especially in Government to Consumer (G2C) and Government to Government (G2G) services.”

Specific to blockchain, “The Dubai Blockchain strategy will usher in economic opportunity for all sectors in the city, and cement Dubai’s reputation as a global technology leader,” notes the Digital Dubai initiative. “In line with Digital Dubai’s mandate to become a global leader in the smart economy, fueling entrepreneurship and global competitiveness.” Such vision for government is starting in Dubai, but readily seen as critical to future governance in other countries.

Perhaps most exciting, “blockchain technology can end voter fraud,” claims Shivam Arora in an article for Simplilearn. How? With blockchain “people can vote online easily without revealing their identities. Using blockchain, officials can count votes with absolute accuracy, knowing that each ID can be attributed to only one vote. Fraud cannot occur because it is next to impossible with blockchain technology. And, once a vote is added to a ledger, it cannot be changed or erased.” The opportunity to improve voting processes and ensure democratic results will surely keep blockchain in the government focus for years to come.

Law

As blockchain transforms government, so it will transform the law and legal services.

There are many ways blockchain technology is already transforming legal services, writes Steve Glaveski for the NewLaw Academy: “Smart contracts, dispute resolution, IP rights… where The blockchain can support evidence of creation, first use, and rights management, and can track distribution. This ultimately prevents copyright infringement and enforces mitigation via time-stamped copies of work, aiding plaintiffs if appearing before a court. Land and property registries (that today) are notorious for being out of date, decentralized, and restricted. And public service records.”

Again, at ZorroSign we have seen law firms and legal departments start with digital signatures for digital transactions, then quickly expand their use of blockchain to store, track, and manage their contracts and agreements. Contract lifecycle management (or CLM) solutions help attorneys to manage the complex and evolving nature of contracts—making them more efficient at producing, executing, and upholding contractual agreements. Leveraging blockchain, ZorroSign manages contracts as we manage all digital documents, providing digital signatures to quickly execute legally binding contracts, a patented Z-Forensics token to ensure contract immutability, and a document management system built on blockchain for immutable storage.

Consensys, a software foundry providing decentralized software services and apps on Ethereum, believes blockchain can make the legal industry more accessible and more transparent. “Lawyers can leverage blockchain technology to streamline and simplify their transactional work, digitally sign and immutably store legal agreements,” claims a Consensys article. And “blockchain-based contracts have baked-in compliance, no surprises, and no room for misinterpretation.”

As transactions and records move to digital workflows, digital signing ceremonies, and digital storage, blockchain will be a boon to law firms and legal department in 2023 and beyond.

Identity

Finally, with the move to digital commerce and communications, our individual identity—as mapped to digital worlds—becomes increasingly important to control and authenticate.

“Identity systems are currently flawed in a number of ways. They are porous, operate in isolation and prone to error,” adds Finnegan Pierson again in Chetu. “Blockchain systems can solve these problems and provide a single source to verify identity and assets. Blockchain identity can also offer a type of ‘self-sovereignty’ that hasn’t existed before.”

This desire for control over one’s personal information—and digital data across platforms—lies at the heart of web3. While web3 starts with blockchain, its ambition and scope will spread far across the Internet, metaverses, and shared networks.

“Identification and credentials are easier for everyone to work with when they’re digital: vaccination cards, academic qualifications, occupational licenses, employee ID and more. But this highly personal information must remain private and secure,” says IBM. “Governments, businesses and educational institutions are turning to blockchain as a proven way to enable a secure and trusted infrastructure and improve services.”

“One of the most problematic results of the internet age has been identity security,” notes Nathan Reiff for Investopedia. “Blockchain technology has already demonstrated the potential for transforming the way that online identity management takes place. The applications for blockchain and identity management are wide-ranging.”

From cloud services, cybersecurity, and IT to financial services, government, healthcare, legal services, real estate, supply chains, and other industries, blockchain is changing how we do business, share information, and identify ourselves.

These trends are just the start, however, and the opportunities for blockchain to improve the privacy and security of our digital data will flourish in the years ahead.

Contact us to learn more . . . or start a free trial to put our blockchain software for digital signatures to the test!

Global ZorroSign
(Originally published on LinkedIn by Shamsh Hadi, CEO and Co-Founder of ZorroSign)

Last year, I shared how ZorroSign’s early roots in Dubai, UAE, helped us grow into an international company. I want to update that theme today and talk about ZorroSign’s role as a global company providing global solutions that improve data democratization, privacy, and security.

As CEO and co-founder of ZorroSign, I have dedicated my career to advancing technology while simultaneously advancing sustainability:  Ensuring the new technologies we bring to market elevate information privacy, data security, and data democratization while not coming at the expense of future generations.

At ZorroSign, we saw very early a market need to push past web2 solutions for digital signatures and digital transactions—escaping centralized information architectures that consolidate data with a provider (and expose that data to the risks of single-point-of-failure cyber-attacks) while simultaneously pulling data ownership away from users (to be housed and monetized by the web2 provider). Alternatively, ZorroSign empowers our users by deploying web3 solutions that decentralize data and ensure users will always own their documents and transaction metadata—even after their subscriptions with us end.

Dubai Start, Dubai Strong

As a long-time resident of Dubai, I was greatly inspired by the Digital City Vision—Smart Dubai of H.H. Sheikh Mohammed bin Rashid Al Maktoum. ZorroSign’s technology very purposefully supports Dubai’s paperless initiatives for Digital Dubai and helps to advance Dubai’s leadership in digital operations, specifically focused on:

  • Security—providing superior digital privacy and security by leveraging a private, permissioned blockchain technology
  • Digital Signatures—a platform that is easy-to-use and legally compliant to global standards
  • Chain of Custody—delivering immutable records of every step of every digital transaction: Authenticating users, securing data, and verifying documents for legal enforceability
  • Advancing UAE’s 10 Principles for the Next 50 Years—specifically helping Dubai to build the best and most dynamic economy in the world; defining new UAE development with digital, technical, and scientific excellence; and promoting a value system based on openness and tolerance

Initially, our company served government departments in UAE but soon grew into an international business—helping people to build, sign, store, and track mission-critical documents on the blockchain in Sri Lanka, India, and the United States.

Last year, ZorroSign was named Blockchain SaaS Innovator of the Year at the UAE Business Awards 2021, then at the turn of the year, Unlock News Desk showcased a story on UAE Based ZorroSign introducing six new features to our blockchain platform.

This spring, Tech Channel wrote a great article on ZorroSign making waves in digital signature space using blockchain technology, and TahawulTech.com interviewed me on how ZorroSign helps tackle identity theft on our now multi-chain blockchain platform.

And most recently, ZorroSign was highlighted in a Zawya article for UAE businesses and a TECHx article on ZorroSign’s mission to provide businesses across the Middle East with seamless integration of document management and secure digital signature solutions.

I am incredibly proud of our continued success in my home town, and while ZorroSign expands our global presence, the UAE and other Gulf Cooperation Council countries will be a strategic market for us.

Success in South Asia

From the start, ZorroSign has had close ties with the south Asia countries of India and Sri Lanka. While operations started in Dubai, our development center of excellence has always been in Colombo!

Our blockchain architecture was conceived, coded, and cultivated entirely in Sri Lanka with a vision to provide global customers with the ability to securely transform paper-based workflows to digital operations. I could not be prouder of our Sri Lanka team, and though they are struggling through that beautiful country’s difficult political and economic crisis, they have proven again and again the resilience and tenacity of their engineering genius.

Recently, APAC Business Headlines recognized the ZorroSign team as the “Most Innovative Blockchain Company from Sri Lanka” for 2022! The award validates the hard work of our center of excellence team, and further proves blockchain’s prominence on the global stage.

This recognition followed our 2021 success where the International Business Awards® named ZorroSign a Gold Stevie® Award Winner for Blockchain Solutions. The Stevie’s are the world’s premier business awards program, where in 2021 more than 3,700 nominations from organizations across 63 nations and territories—of all sizes and in virtually every industry—were submitted for recognition. We were delighted to be awarded a gold Stevie for our blockchain solution and to be recognized as a Company of the Year, and Most Innovative Tech Company of the Year. Most flattering, the judges were quick to note that ZorroSign is “one of the few companies that are able to use blockchain technology to solve a real business problem” . . . a strong endorsement of our digital signature technology, built on blockchain, and paired with identity-as-a-service (IDaaS) and patented fraud detection, to authenticate users and verify documents across digital transactions.

Tackling North American Markets

As a U.S. citizen who has lived in Canada, China, and the UAE at various times over the past forty years, my goal was always to return home and bring ZorroSign’s blockchain solutions to North American users.

In August 2020, we opened our global operations hub in Phoenix, Arizona—ushering in a new phase of business growth. We quickly established local partnerships with Arizona State University, Grand Canyon State University, the Arizona Commerce Authority, Arizona Technology Council, City of Phoenix, Global Chamber®, the Greater Phoenix Economic Council, and many other incredible organizations!

And we’ve engaged government agencies, financial services providers, IT businesses (and departments), legal services firms, real estate companies, and several other verticals to prove the value of a paperless life and the most private, secure, compliant digital transactions hosted on blockchain. Early adopters of our web3 solutions are excited to embrace ZorroSign’s robust platform to advance their digital operations and gain a competitive advantage in a market place still dominated by legacy, web2 technologies.

Global Privacy and Security Compliance

Our unique combination of blockchain architecture, web3 technologies, artificial intelligence/machine learning, and patented fraud prevention grants ZorroSign compliance across many international standards for privacy and security.

The list continues to grow as we expand our markets, but already includes:

  • Canada’s Personal Information Protection and Electronic Documents Act (PIPEDA)
  • Canada’s Uniform Electronic Commerce Act (UECA)
  • The European Union’s Data Protection Regulation (GDPR) for data privacy and security
  • EU’s electronic IDentification, Authentication and trust Services (eIDAS) regulation
  • India’s Information Technology Act 2000 (IT Act of India)
  • International Standard on Assurance Engagements (ISAE) No. 3402, Type II audited
  • International Organization for Standardization (ISO) 27001 certified
  • PDF Advanced Electronic Signatures (PAdES) is a set of restrictions and extensions to PDF and ISO 32000-1
  • The UAE’s Federal Law No. 1 of 2006 regarding Electronic Transactions and E-Commerce granting electronic signatures legal force and effect
  • The American Institute of Certified Public Accountants (AICPA) SOC 2 Type I audit
  • USA’s California Consumer Privacy Act (CCPA)
  • USA’s Department of Commerce’s National Institute of Standards and Technology (NIST) encryption standards
  • USA’s Digital Millennium Copyright Act (DMCA)
  • USA’s Electronic Signatures in Global and National Commerce Act (E-Sign Act)
  • USA’s FDA Title 21 of the Code of Federal Regulations; Electronic Records; Electronic Signatures
  • USA’s Health Insurance Portability and Accountability Act (HIPAA)
  • USA’s Uniform Electronic Transactions Act (UETA)

I am proud of all ZorroSign has achieved for our international customers and incredibly excited about some big announcements later this summer! ZorroSign is truly a global company delivering global solutions, and we are not resting on our laurels—the best is yet to come.

Contact us to learn more . . . or start your free trial to put our digital signature software to the test!

Sustainable technology
Originally published by Shamsh Hadi on LinkedIn

In an earlier article, I briefly introduced sustainability in advancing technology—specifically urging innovators to be aware of the impact of their new technologies on the environment and human sustainability.

In advance of Earth Day 2022, I reiterate that while it is easy to laud the potential of new technologies, we must also be wary of their effects on the environment . . . specifically the depletion of natural resources which may disrupt ecological balance. This is not to say innovation must be stymied, but that the true price of innovation must be measured in more than purely economic terms.

Defining Sustainability for Business

My quick definition of sustainability—from the Brundtland Report, drafted by the World Commission on Environment and Development (WCED) in 1987—is simply “meeting the needs of the present without compromising the ability of future generations to meet their needs.”

Bigger picture, the idea of sustainability is “often broken down into three pillars: economic, environmental, and social—also known informally as profits, planet, and people.” For me, new technologies tend to span all three: Driven by economic goals, but often extracting environmental and social costs.

For example, it has been a long-running criticism of bitcoin that the proof-of-work data mining required to produce coins consumes an astonishing amount of electricity. With many public blockchains used for cryptocurrencies, mining coins requires complicated mathematical processing on high-end graphic processing units (GPUs), consuming energy both for calculation processing and cooling those GPUs down under heavy load.

“Scientists from the University of Cambridge Judge Business School recently built an interactive analysis tool to calculate the real energy cost of bitcoin cryptocurrency,” explains Caroline Delbert in Popular Mechanics. “Using their energy use model, the researchers found that bitcoin mining uses more energy each year (130.00 terawatt-hours [TWh]) than the entire country of Argentina (125.03 TWh).”

Another example might emphasize social sustainability. “Social sustainability is about identifying and managing business impacts, both positive and negative, on people,” notes UN Global Compact.

Recall how Facebook’s social network technologies were taken to task by The Social Dilemma—a documentary highlighting the dangerous impact of social networking, which represents a sustainability challenge to human societies.

The film shows that while social networks’ cost is not environmental per se, social media’s “design nurtures an addiction, manipulates people’s views, emotions, and behavior, and spreads conspiracy theories and disinformation . . . [plus an] effect on mental health (including the mental health of adolescents and rising teen suicide rates).” Such social costs put existing social media in direct conflict with sustainable practices.

Balancing Innovation and Sustainability

So how can innovators build and create without jeopardizing the “ability of future generations to meet their needs”?

Such effort requires vision beyond immediate solutions and an eye for real-world consequences . . . even those completely unintended or unexpected in the deployment and adoption of new technology.

“The Industrial Revolution brought forth extraordinary gains in financial prosperity. Between 1870 and 1910, per capita income in the United States rose almost 40 percent, and the value of manufacturing output increased sevenfold. Yet rapid industrialization left in its wake darkened noontime skies, noisy and unsafe machinery, and severely compromised living conditions,” write David Austin and Molly K. Macauley in a classic article from Brookings. “Technology is a double-edged sword—one capable both of doing and undoing damage to environmental quality.”

“Technology has the ability to significantly impact the United Nations Sustainable Development Goals,” says Jeff Fromm in a Forbes article on sustainability and innovation. “As well as improve work/life balance, enable commerce and so much more.”

Here, environmental technologies have a chance to remedy the historical efforts of Industrial Revolution technologies that brought pollution and ecological disruption, as well as massively depleting natural resources.

“We are currently living in a period of rapid change, where technological developments are revolutionizing the way we live, at the same time as leading us further into the depths of catastrophe in the form of climate change and resource scarcity,” adds a great piece by Edinburgh Sensors. “While the impact of technology on the environment has been highly negative, the concept of environmental technology could save our planet from the harm that has been done.”

Even those technologies that simply avert environmental damage, without perhaps directly rebuilding or restoring natural resources, can have a tremendously positive effect on sustainability.

ZorroSign’s Example

Circling back to my company, ZorroSign’s platform was originally built on private, permissioned Hyperledger Fabric.

Starting with this economic pillar, we constructed a blockchain platform unlike bitcoin and the proof-of-work cryptocurrency models, instead leveraging Hyperledger Fabric as a next-generation enterprise blockchain architecture with lower electricity costs and a smaller carbon footprint. Hyperledger Fabric is a next-generation enterprise blockchain architecture “with even lower electricity costs and attendant carbon footprints,” writes Michael Barnard in a CleanTechnica report.

Hyperledger Fabric’s architecture is so completely different from the mining and broadly distributed model of bitcoin, that the enterprise blockchain can operate faster with far, far lower energy consumption rates. This combination of speed and energy-efficiency made Hyperledger Fabric the sustainable choice to launch ZorroSign’s digital platform.

For the environmental pillar, ZorroSign’s vision includes a commitment to saving trees and having a positive impact on the environment through sustainable practices. With our Save-a-Tree, Plant-a-Tree program, ZorroSign plants a tree on behalf of our customers every time they save 8,000 pages of copy paper! As one tree produces roughly 8,000 pages of copy paper, this amounts to a double incentive:  Reducing the destruction of trees via reduced paper use and increasing the number of trees as reward for reducing paper use. Again, our efforts aspire to realize significant environmental benefits such as conserving water, reducing carbon emissions, improving air quality, and reducing deforestation.

At ZorroSign, we use blockchain to help individuals, businesses, and governments to achieve a paperless life. Here we embrace the social pillar: Understanding that switching to digital records is not only a smart business decision, but it is also good for the environment and society.

Every time someone uses ZorroSign to digitally sign agreements, contracts, and other documents—instead of printing, faxing, scanning, and couriering documents to collect signatures—we all save trees, save water, and reduce carbon emissions. By moving social costs from paper consumption, logistics, and storage to digital signatures, digital archiving, and digital chains-of-custody, we advance a technology that similarly advances sustainability.

I am eager to engage technology innovators in advancing their solutions while also advancing sustainability goals!  Connect with me on LinkedIn at https://www.linkedin.com/in/shamsh-hadi/