Ethereum, Digital Asset, R3, and more go head-to-head in this detailed blockchain study by Aite Group.

Research and advisory firm Aite Group is preparing to release a detailed comparison of what it deems the ‚Top 10‘ distributed ledger platforms suited for securities settlement.

After eight months of research, including lengthy interviews with each of the platforms included, the report’s author Javier Paz has crafted a side-by-side analysis complete with defining characteristics, ranging from the project’s consensus mechanism to business model.

At the end of the 80-page report, Paz draws a series of conclusions for sectors including regulators and cloud providers.

But, Paz reserves his sternest conclusion for financial technology vendors not yet dealing in distributed ledger, or as he calls it, elsewhere in the report, ‚chaintech‘.

„Blockchain hype is high,“ he writes. „But the threat to traditional fintech vendors is real.“

Paz continues:

„This is the time for vendors to pivot and decide whether to acquire or develop relevant blockchain technology, years before a vendor’s client feel that a move to blockchain technology is required.“

Path to profit

Platforms selected based on their potential to more quickly and transparently conduct post-trade securities settlement include Axoni, Chain, Digital Asset, Ethereum, Hyperledger, Nasdaq, R3, Setl, Symbiont and tØ.

The report details how each of the firms earns money, or intends to earn money. Most plan to give away the building blocks of their services for free as part of various open-source licenses.

While giving enterprising companies the ability to build solutions from scratch, the startups will charge licensing fees to use the application layers they themselves have built.

Of the 10 firms, only Hyperledger and the Ethereum Foundation do not provide development teams to potential customers for a fee, instead relying on third-party consulting firms to help potential users build with the code.

But what is not mentioned is the price.

„Buyers and sellers discover the equilibrium price for that new thing after a good deal of haggling and window shopping,“ Paz writes. „Similarly, neither chaintech vendors nor their target audience has a perfectly clear sense of what should be the price tag for the new service.“

Blockchain fees

Tech dive

Another notable side-by-side comparison is the consensus mechanisms employed by each of the groups.

Of the numerous criteria, only Digital Assset, ethereum and Setl are not marked with the category „nodes using confederated consensus“.

„A growing trend, adopted by five chaintech platforms and spearheaded by R3,“ writes Paz, „calls for consensus taking place at the transaction level, requiring the consent of at least two counterparty nodes.“

Blockchain consensus

In conversation with CoinDesk, Javier Paz admitted that, in part, the exercise of aggregating so much data was part of his own personal attempt to better understand the technology.

But other than for his own gratification, Paz says the report is aimed at C-suite executives, regulators and platform developers themselves, who he believes might become so focused on their own projects that they lose sight of the competition.

For the report, Paz sifted through oral interviews, written responses, and schematics provided by 30 senior executives from 16 blockchain firms, four financial market utilities and others in search of the comparison points.

He estimates that the methodology could cut down on a reader’s learning curve by between one month and three months.

The full report is due out later this month.

Disclosure: CoinDesk is a subsidiary of Digital Currency Group, which has an ownership stake in Chain and Axoni.

Measuring cups via Shutterstock

Quelle: ‚Top 10‘ Blockchains Report Concludes: Now is the Time to Pivot – CoinDesk

Blockchains are beginning to turn green. This post describes some of the IC3 research in this direction.

The glorious view from our windows at Cornell Tech takes in 432 Park Avenue, the tallest residential building in the world. This tower is a monument to many things. Above all, for a student of Financial systems, it epitomizes ways to store wealth with breathtaking waste. (Fittingly, it was inspired by a wastepaper basket, shown to the right.) Buildings like it are sprouting up around NYC as investment vehicles for the ultra-wealthy, and their owners don’t actually live much in them. 432 Park and its ilk are essentially hollow vaults.

Something similar can be said for Bitcoin. As a concept and technological inspiration, Bitcoin is a marvelous thing. And unquestionably like 432 Park, it does see legitimate and valuable uses (and some shady ones). As a currency, though, Bitcoin serves in no small degree as a wasteful and ecologically damaging way for people to park their money.

There are a number of ways to substantiate this claim. One is in terms of its electricity consumption. Estimates vary, but it is likely that the Bitcoin network consumes roughly as much electricity as a nuclear reactor, about 1/3 of the entire electricity consumption of the entire country of Ireland. (See our back-of-the-envelope calculations in the blog notes.) To view this in another light, a recent IC3 paper estimated the cost-per-confirmed transaction at as much as $6.20 in capital costs and electricity. (Transaction rates have been rising, and today the figure is substantially lower, but still high.) That’s $6.20 in resources per transaction to move money between accounts in the same system.

Bitcoin proponents argue that this is simply the cost of decentralization. A credit-card network doesn’t provide the pseudonymity, freedom from government interference, portability, and other features of Bitcoin, so it isn’t comparable. This is true. But it isn’t a law of nature that a system like Bitcoin should be so resource-intensive. Researchers at IC3 believe that the many benefits of Bitcoin can be had without the waste. In a few papers released over the past month or so, we’ve outlined three different approaches to the development of greener alternatives:

  1. PieceWork is a tweak to standard cryptocurrency PoWs that enables recycling of mining effort.
  2. Resource-Efficient Mining (REM) repurposes innately useful workloads for mining effort. It relies on use of a trusted hardware technology called Intel SGX.
  3. Snow White is the Proof-of-Stake system with rigorous security guarantees.

PieceWork: Recycling PoWs

PatchWork

If we can’t reduce waste at the source, why not recycle? That’s the premise of the first, and simplest idea, called PieceWork. Piecework involves a slight modification to the standard Proof-of-Work (PoW) construction, decomposing it into two layers. One layer produces small PoWs called puzzlets that play a critical role in the mining process and can also, as we shall show, serve useful non-mining purposes.

Consider a standard cryptocurrency, abstracting away into a single value X the details of what gets hashed into a PoW (transactions, the previous block, etc.). A miner’s task then is is simply to search for an input (“nonce”) n∈N for which

H(X, n) ≤ Z,

where Z is a threshold representing the difficulty of the PoW.

To decompose a PoW into two layers, we instead construct it as follows:

H(X, n) = Fout (X, Fin (X, n; rin ), rout ),

where rin = H0(r) and rout = H1(r) for distinct hash functions H0, H1 and a secret value r. (These two values are a technical requirement to prevent what are called block withholding attacks. See the blog notes.)

A valid solution is a value n such that

Fin (∙, n, ∙) < Zin and Fout (∙, n, ∙) < Zout.

To solve this puzzle or PoW, a miner must first find an n such that Fin (∙, n, ∙) < Zin. This inner-puzzle is what we call a puzzlet. To solve the whole PoW, a miner must find a puzzlet solution. The puzzlet solution must additionally satisfy Fout (… n…) < Zout, meaning that a miner must in general come up with many puzzlet solutions to solve the PoW as a whole. By setting Zin + Zout = Z, one obtains a PoW with the same difficulty as that in (1).

What’s the benefit of this two-layered structure? A puzzlet, i.e., the task of finding a solution n to Fin (∙, n ,∙) < Zin, can be outsourced by a miner or mining pool operator to a worker, and put to any of several non-cryptocurrency goals. DoS prevention for TLS is one example. TLS requires computationally intensive crypto operations from a server to set up connections. Thus it’s a natural target for DoS attacks, prompting the idea of requiring clients to solve PoWs if a server comes under attack, an idea now floated in an IETF proposal. These PoWs used for DoS mitigation can themselves be puzzlets. The effect is that the server becomes a mining pool operator, and its clients become workers. And a DoS attacker effectively showers the victim HTTPS server with cryptocurrency. (Of course, a server can also dispense puzzlets and make money even when it’s not under attack…) Other examples of puzzlet uses are spam prevention (the original PoW goal proposed by Dwork and Naor), MicroMint, and Tor relay payments.

In summary, PieceWork requires only a small modification to standard cryptocurrency PoWs. It turns them into dual-use computational problems and recycle wasted mining effort. How much recycling it can feasibly accomplish is an open research question. PieceWork benefits from a number of previous, related ideas. Our short paper on it can be found here. PieceWork will be presented in April at BITCOIN 2017.

Resource-Efficient Mining (REM): Using Innately Useful Work as Mining Effort

Efficient Miner

A very different approach to minimizing waste is embraced in our second project, a system called REM. Rather than relying on hash-based PoWs, it makes use of an entirely different type of PoW, in which the W, i.e., the work, is useful. We call this concept Proof of Useful Work (PoUW).

Of course, traditional PoWs have several useful properties, prime among them the ease with which solutions can be verified. Most workloads don’t have this property. To enable verification of work on arbitrary useful workloads, REM relies on a new technology: Intel SGX.

Intel’s new SGX (Software Guard eXtensions) trusted execution environment technology. In a nutshell, SGX enables the execution of an application in a hardware-protected environment, called an enclave, that is isolated from the operating system and other applications. It thus protects the application against tampering by even the owner of the machine on which it’s running. SGX also enables generation of an attestation that proves to a remote party that a particular application was running in an enclave. SGX is already supported in many recent-model Intel CPUs.

As a good way to see how SGX can facilitate mining, it’s worth discussing an elegant mining scheme proposed by Intel called PoET (Proof of Elapsed Time). The idea behind PoET is simple. If miners use SGX, then they can be forced to use only a sanctioned piece of mining software that simulates PoWs. Standard PoWs have solution times that are exponentially distributed. A PoET client can thus sample a solution time from an exponential distribution, simply sit idle until this time elapses, and then wake up with a block in hand. The first client to awake gets to publish its block. An SGX attestation proves to others in the system that the client idled as it should have.

PoET has several nice features. Foremost among them is the fact that (at first glance) it’s virtually energy-waste-free. Clients idle instead of hashing. Block solution times can be tuned to mimic those of a standard mining regime, like Bitcoin or Ethereum mining. Thus PoET can effectively be plugged into such schemes. It is also relatively egalitarian in that it achieves precisely one vote per CPU. PoET, though, has two technical challenges. We call these the broken chips and stale chips problems.

First, the broken chips problem. SGX security is imperfect and, as with any trusted hardware, it’s to be expected that a well-resourced adversary can break it. Thus, it’s to be expected that some SGX CPUs will be broken. In the basic PoET scheme, a broken chip has devastating effect, as it enables a miner to simulate a zero mining times and win every consensus round, i.e., publish all blocks. Intel has proposed a statistical testing regime to detect breaks, but details aren’t published and formal foundations are needed for a good analysis.

REM faces the same challenge. In REM, we have developed a rigorous statistical testing regime with formal foundations and shown analytically and empirically that it is highly effective: It can strictly limit the gains of adversaries that have broken chips while minimizing incorrect rejection of blocks from honest miners.

The stale chips problem is more subtle. Our economic analysis shows that in many practical settings in PoET and related systems, it will be advantageous for a miner to buy old (“stale”) SGX CPUs and cobble them together into “farms” that mine cheaply. Such farms reinstate a fraction of the waste that PoET is trying to avoid to begin with. This is where REM’s Proof of Useful Work (PoUW) approach comes into play. In a nutshell, with PoUW, miners run whatever workloads they consider to be useful—protein-folding computations and ML classification algorithms are a couple of examples considered in our work. Miners can prove that they did work on these problems using SGX. The probability of a miner mining a block is proportional to the amount of work she does. Thus, REM turns otherwise useful work into mining effort. Making PoUW work is technically challenging. It requires that workloads be themselves compiled and instrumented using SGX to prove correctness, an innovation of independent interest introduced in REM.

The biggest objection lodged against SGX-based mining is the fact that it places Intel in charge, undermining the decentralization at the heart of permissionless ledgers. Of course, Intel is already a trust anchor. But we’d view this another way, and characterize REM and PoET as partially decentralized. You can read about REM here, in a paper under submission.

Snow White: Proof of Stake with Rigorous Security Guarantees

PatchWork

Our final approach to reducing cryptocurrency waste is one both proposed and studied by many projects in the cryptocurrency community since the inception of Bitcoin. This idea is called proof of stake, and revolves around the basic premise that rather than mining simulating a lottery where your chance of finding a block is proportional to computing power, mining simulates a lottery where your chance of finding a block is proportional to the number of coins (or “stake”) you have in the system.

A key roadblock to the adoption and deployment of proof of stake systems involves questions around the security guarantees that they provide. This continues to be an ongoing source of controversy and debate in the community, with sources like the Bitcoin Wiki claiming that “Proof of Stake alone is considered to an unworkable consensus mechanism” and efforts like Ethereum’s Casper project studying questions of how to design a maximally useful and relevant proof of stake protocol for the next generation of cryptocurrencies.

Despite its potential shortfalls, we believe proof of stake represents a critical new development and direction in both the blockchain and distributed consensus fields. With this in mind, we set out to apply previous work by Rafael Pass (an IC3 member) and others, in which a model for analyzing and proving consistency, chain growth, and restrictions on adversarial chain impact for proof of work blockchains was developed.

To more accurately model the nature of blockchain distributed consensus, and the implication of network delays, we propose a new model for consensus called the sleepy model. This model more accurately mimics the operation and naturally captures the design of permissionless blockchains. In the sleepy model, a user (node or miner) can leave or join the protocol at will. This is modeled by (non-crashed) users in the protocol being given the ability to “sleep”, or go offline and rejoin the network at some unspecified later date with unmodified original state. The key question then becomes how can we design a useful consensus protocol in the sleepy model, when at least half of all online nodes (or stake) is honestly following the protocol?

The guarantees of consistency and availability are rigorously defined in this new model, more accurately capturing the guarantees users expect from blockchain protocols. The analogues of proof-of-work style guarantees like chain growth (availability) and chain quality (integrity) are also discussed. We believe this new class of consensus protocols in the “sleepy” model represents one of the fundamental contributions of blockchains to the distributed consensus space. Neither the asynchronous, partially synchronous, or synchronous models, in either a permissioned or permissionless setting, prove sufficient to model or reason about these new consensus protocols or the probabilistic and often economic guarantees they provide.

To that end, we are working on two protocols proven in the Sleepy model: Sleepy and Snow White.

Sleepy is a simple protocol intended to achieve the guarantees of chain quality, chain growth, and consistency/agreement with 51% of online nodes being honest. This protocol is intended for deployment in a permissioned context, and assumes stake assigned or instantiated by some trusted source. This makes Sleepy ideal for bankchains or other permissioned deployments, in which the set of stakeholders is known a priori but the blockchain guarantees of robust, auditable distributed consensus remain desirable. Every second, every member of the committee is eligible to “mine” a new block in the system, which involves a standard block mining solution with a public source of entropy as the nonce. Standard difficulty adjustments retarget the block interval to a desired target, as in Bitcoin and Ethereum today. The challenges of choosing an appropriate, ungameable mining function and source of entropy are tackled in the work, and proof is given that no committee member can manipulate the protocol to their advantage.

Snow White, on the other hand, is an extension of Sleepy intended to provide the same rigorous blockchain-derived guarantees in a permissionless setting, such as in the deployment of a public cryptocurrency. Obviously, this is substantially more difficult: choosing appropriate committee members for the block lottery, as well as ensuring that no coalition of these committee members (of bounded size) can game the protocol for more than a negligible advantage, are highly nontrivial. The resulting protocol is actually quite simple: each step, a committee mines as in Sleepy, with a shared source of entropy h0. With sufficiently many bits of entropy in h0 and an appropriately selected committee weighted on stake, it is possible to prove the desired result of chain quality, growth, and consistency in the Sleepy model. Choosing both the committee and h0 such that no adversary or non-majority coalition of adversaries gain substantial advantage by deviating from the protocol is the key to the construction and concrete parameters of the protocol, which are discussed further in our full publication.

Sleepy and Snow White represent the first rigorously justified and proven blockchain consensus protocols in both the permissioned and permissionless proof of stake space. It is our belief that the rigorous proofs of security are valuable as both theoretical efforts and to guide protocol development and deployment. Both the proof and concrete parameterization of these protocols are highly non obvious, and while heuristic protocols designed elsewhere in the community (with only informal justification) may operate in a similar manner to Sleepy, there is no guarantee that subtle network-level, timing, committee / stake poisoning, and other attacks are not present in these protocols. In our work, we assume an optimal adversary with ability to delay network messages up to some arbitrary time, a very strong notion of attacker that makes our protocols the most rigorous conceived in the space thusfar.

You can read about the papers in prepublication manuscripts we have uploaded for release on ePrint: Snow White, Sleepy. Further conference or journal publications with implementation details of these systems, full proofs, simulation results, and experimental comparisons to existing cryptocurrencies are currently in development. We hope to share more exciting news about these new protocols soon.

[It is worth noting that our willingness to assume that the majority of online coins are honestly following the protocol is an assumption that `has been challenged <https://blog.ethereum.org/2016/12/06/history-casper-chapter-1/>`_ by the Ethereum foundation. We do not necessarily agree with these criticisms or model; we believe that the ε-Nash equilibrium achievable in *Snow White is sufficient for the design of a robust, decentralized coin. Nonetheless, we believe developing and proving protocols secure in this context is valuable: both as the most natural model for private blockchain deployments, and to illuminate common pitfalls in proof of stake protocol design that may lead to attacks in naive protocols. We look forward to a full specification of Ethereum’s Casper, and to comparing both its assumptions and attack surface with that of Snow White.

Notes

Back-of-the-envelope Bitcoin electricity consumption calculation

There are many estimates of the electricity consumption of the Bitcoin network, but we don’t find them convincing. For example, this widely cited one derives an upper bound of 10 GW (in 2014!). As we’ll see from a simple calculation below, that would imply that miners were losing huge amounts of money. So here’s our crack at a crude estimate.

Using the technique in this paper, to obtain a lower bound on electricity consumption, let’s take the Antminer S9 to represent the state of the art in mining rigs. It consumes 0.098 W/GH. The current mining rate of the Bitcoin network is about 3,330,000 TH/s. Thus, were all miners using Antminer S9s, the electricity consumption of the network would be about 326 MW. (Of course, many miners are probably using less efficient rigs, so this is a loose lower bound.)

To obtain an upper bound on electricity consumption, assume that miners are rational, i.e., won’t mine if it causes them to lose money. At the current price of about $1000 / BTC, given a 12.5 BTC mining reward and block production rate of about 6 blocks per hour, the global mining reward per hour is about $72,500. A common, extremely cheap form of electricity used by miners is Chinese hydroelectric power; the very low end of the levelized cost of such electricity is $0.02 / kWh. Thus rational miners will consume no more than 3.625 GW of electricity. (Of course, this estimate disregards the capital costs of mining, and is therefore probably a quite loose upper bound.)

Taking the log-average of these two bounds yields an estimate of 1.075 GW, about the output of a single unit in a nuclear power station. Ireland’s average electricity consumption is about 3.25 GW (as derived from this 2013 figure).

Again, this is a crude estimate, but we believe it’s probably within a factor of 2 of the real one.

Why use rin and rout in PieceWork?

It is possible to outsource mining with the standard cryptocurrency PoW H(X,n) ≤ Z, simply by declaring a puzzlet to be the problem of finding an n such that H(X,n) ≤ Z_{easy}, for some Z_{easy} > Z. In other words, a worker can be asked to find a solution to a PoW easier than the target. But with some probability, a solution to H(X,n) ≤ Z_{easy} will also be a solution to H(X,n) ≤ Z, i.e., will solve the outsourcing miner’s PoW.

The problem with this approach is that a malicious worker can mount a block withholding attack. If it happens to find a solution to H(X,n) ≤ Z, it can simply not submit it. Or it can demand a bribe from the outsourcer. Use of rin and rout conceals from a worker whether or not a puzzlet solution is also a solution to the global PoW, preventing such attacks.

Quelle: The Greening of Blockchains

Zug is a region of Switzerland that has come to be known as Crypto Valley, due to the jurisdiction’s pro-fintech enterprises, and its accommodating laws and regulations.

The canton of Zug is a region of Switzerland that’s become known as “Crypto Valley” –  a moniker allegedly coined (pun intended) by Ethereum co-founder Mihai Alisie. The Ethereum Foundation is headquartered in Zug, along with many other fintech enterprises. There are plenty of reasons that so many startups and tech companies are drawn to the city, and they’re quite deliberate.

Zug is continually working to live up to its name as the Crypto Valley. It’s not just startup companies looking to make things easier on themselves, but the entire Zug ecosystem promotes innovation and provides opportunities that other cities and countries lack.

Crypto Valley Zug As Silicon Valley 2.0

Zug has long attracted companies to its lakeside shores to enjoy one of the lowest tax rates in Switzerland. Zug’s allure is more than just the government’s minimal invasion of corporate coffers. There is a complex web of interconnected entities, all advocating innovation.

Zug’s startup enterprises, fintech incubation firms, and governmental authorities all seem to have open lines of communication; regularly collaborating with the mutual goal of fostering the economic expansion of Zug by supporting the growth of startup companies.

Zug Accepts Bitcoin Payments

In July 2016, the city of Zug (the capitol of the canton of Zug) started accepting bitcoin as payment for city fees. The city council allows bitcoin payments up to 200 Swiss francs (~$200 USD). As bitcoin is still relatively new, Zug immediately converts all bitcoin payments into Swiss fiat currency to minimize risk. The project was reevaluated at the end of last year, and the city council decided to extend its program of accepting bitcoin. Dolfi Müller, Zug’s mayor, released a statement, which, as translated by Google Translate, reads:

„It was an important experience for us to install and test the technology for bitcoin payments. We were able to [send a message to] Fin-Tech [companies] in Zug and express that they are welcome here.”

In the same release, the city council goes on to announce its plans to continue promoting digitization (regarding integrating emerging technologies into existing systems) and mentioned its interest in an “e-government.”

Regulatory Oversight

One of the most essential supporters of fintech startups in Zug is the Swiss Financial Market Supervisory Authority (FINMA). As a regulatory authority, FINMA could easily promote or obstruct the growth of businesses working with emerging financial technology, like blockchain-based distributed ledgers.

Switzerland’s Federal Council, the country’s head executive office, called for an easing of regulatory frameworks regarding financial technology at a November 2, 2016 meeting, in order to reduce barriers to market entry for fintech companies.

As part of the Swiss government’s pro-innovation push, FINMA defined its strategic goals for 2017-2020,  setting its priorities on proper business conduct, and approaching supervision and regulation in a way that should encourage emerging technologies. In laying out its goals, FINMA stated:

“The long-term success of Switzerland’s financial centre depends largely on its ability to innovate. FINMA is therefore adopting a more pro-innovation approach to regulation and supervision and will push for the removal of unnecessary regulatory obstacles for innovative business models.”

Funding Opportunities

Outside of government authorities, there are several fintech incubation firms helping to nurture startups, such as the non-profit organization Swiss Finance Startups (SFS). Founded in May 2014, SFS seeks to “create synergies, join forces and to drive innovation, inspiration and change in the world’s financial epicenter.” SFS is quite prolific, listing 192 member startups on its website. It aims to remain at the forefront of digitizing the finance industry, as suggested by its mission statement, which reads:

 “The future of Switzerland is to a large [extent] relying on a successful financial sector. Fintech is the future of the financial sector: Fintech is the future of Switzerland! And startups are the backbone of digitization and fintech innovation. Therefore, it is our mission to define a startup friendly environment in Switzerland that is based on collaboration and a strong network and gives young entrepreneurs the support and the freedom to be creative, courageous and [successful.]”

A similar non-profit entity, the Swiss Finance + Technology Association (Swiss FinteCH), works with fintech startups, providing support through its mentoring program. Swiss FinteCH regularly coordinates meetups and events, and organizes international outreach to fellow fintech hubs. Most interestingly, it has a regulatory advisory board, which provides strategic advice and suggestions to governmental authorities and other relevant stakeholders. The roles and responsibilities of the advisory board members are, in part, as follows:

•  Main source of contact for regulators and policy makers

•  Provide expertise and knowledge on urgent regulatory related matters

•  Provide unbiased insights (we represent the ecosystem) and ideas from a third point-of-view encourage and support the exploration of new ideas (sandbox)

•  Provide regular formal output to counsel governmental bodies

It even offers a map of “current [organizations], startups, corporations, associations and bodies involved in the Swiss FinTech ecosystem,” available on its website.

The Future Of Zug And Switzerland

Switzerland has long been a global financial center. It wouldn’t be surprising if it became the central hub of virtual currencies, as it is working to become the breeding ground for fintech innovation.

As long as regulations continue to be pro-innovation and as long as startups continue to work together, Zug should remain a hotbed for disruptive technologies. For blockchain technology to see widespread adoption, it will have to show the world all the benefits it brings. The best way to do that is to actually integrate blockchain-based solutions into existing industries and economies. Zug stands to be that proving ground.

Will virtual currency become “money 2.0?” In Zug, the answer may not yet be a resounding “yes,” but it’s a safe bet that Zug might answer, “We’re working on it.”

Quelle: Zug: Switzerland’s Crypto Valley

The world’s richest man is arguing for taxing and slowing automation.

Robots are taking human jobs. But Bill Gates believes that governments should tax companies’ use of them, as a way to at least temporarily slow the spread of automation and to fund other types of employment.

It’s a striking position from the world’s richest man and a self-described techno-optimist who co-founded Microsoft, one of the leading players in artificial-intelligence technology.

In a recent interview with Quartz, Gates said that a robot tax could finance jobs taking care of elderly people or working with kids in schools, for which needs are unmet and to which humans are particularly well suited. He argues that governments must oversee such programs rather than relying on businesses, in order to redirect the jobs to help people with lower incomes. The idea is not totally theoretical: EU lawmakers considered a proposal to tax robot owners to pay for training for workers who lose their jobs, though on Feb. 16 the legislators ultimately rejected it.

“You ought to be willing to raise the tax level and even slow down the speed” of automation, Gates argues. That’s because the technology and business cases for replacing humans in a wide range of jobs are arriving simultaneously, and it’s important to be able to manage that displacement. “You cross the threshold of job replacement of certain activities all sort of at once,” Gates says, citing warehouse work and driving as some of the job categories that in the next 20 years will have robots doing them.

You can watch Gates’ remarks in the video above. Below is a transcript, lightly edited for style and clarity.

Quartz: What do you think of a robot tax? This is the idea that in order to generate funds for training of workers, in areas such as manufacturing, who are displaced by automation, one concrete thing that governments could do is tax the installation of a robot in a factory, for example.

Bill Gates: Certainly there will be taxes that relate to automation. Right now, the human worker who does, say, $50,000 worth of work in a factory, that income is taxed and you get income tax, social security tax, all those things. If a robot comes in to do the same thing, you’d think that we’d tax the robot at a similar level.

And what the world wants is to take this opportunity to make all the goods and services we have today, and free up labor, let us do a better job of reaching out to the elderly, having smaller class sizes, helping kids with special needs. You know, all of those are things where human empathy and understanding are still very, very unique. And we still deal with an immense shortage of people to help out there.

So if you can take the labor that used to do the thing automation replaces, and financially and training-wise and fulfillment-wise have that person go off and do these other things, then you’re net ahead. But you can’t just give up that income tax, because that’s part of how you’ve been funding that level of human workers.

And so you could introduce a tax on robots…

There are many ways to take that extra productivity and generate more taxes. Exactly how you’d do it, measure it, you know, it’s interesting for people to start talking about now. Some of it can come on the profits that are generated by the labor-saving efficiency there. Some of it can come directly in some type of robot tax. I don’t think the robot companies are going to be outraged that there might be a tax. It’s OK.

Could you figure out a way to do it that didn’t dis-incentivize innovation?

Well, at a time when people are saying that the arrival of that robot is a net loss because of displacement, you ought to be willing to raise the tax level and even slow down the speed of that adoption somewhat to figure out, “OK, what about the communities where this has a particularly big impact? Which transition programs have worked and what type of funding do those require?”

You cross the threshold of job-replacement of certain activities all sort of at once. So, you know, warehouse work, driving, room cleanup, there’s quite a few things that are meaningful job categories that, certainly in the next 20 years, being thoughtful about that extra supply is a net benefit. It’s important to have the policies to go with that.

People should be figuring it out. It is really bad if people overall have more fear about what innovation is going to do than they have enthusiasm. That means they won’t shape it for the positive things it can do. And, you know, taxation is certainly a better way to handle it than just banning some elements of it. But [innovation] appears in many forms, like self-order at a restaurant—what do you call that? There’s a Silicon Valley machine that can make hamburgers without human hands—seriously! No human hands touch the thing. [Laughs]

And you’re more on the side that government should play an active role rather than rely on businesses to figure this out?

Well, business can’t. If you want to do [something about] inequity, a lot of the excess labor is going to need to go help the people who have lower incomes. And so it means that you can amp up social services for old people and handicapped people and you can take the education sector and put more labor in there. Yes, some of it will go to, “Hey, we’ll be richer and people will buy more things.” But the inequity-solving part, absolutely government’s got a big role to play there. The nice thing about taxation though, is that it really separates the issue: “OK, so that gives you the resources, now how do you want to deploy it?”

Quelle: Bill Gates: the robot that takes your job should pay taxes — Quartz