Breaking Down Smart Contracts

The following is an attempt at consolidating my understanding of smart contracts, and expressing it in a way that is beneficial not only for those familiar with the space, but also someone with little to no background in blockchain.

What is a contract?

A set of promises. Typically between two entities.

Usually it entails some sort of exchange of interaction, like if party 1 does X, then party 2 does Y.

What is a smart contract?

A smart contract, as defined by Nick Szabo in 1996 [1] is

"a set of promises, specified in digital form, including protocols within which the parties perform on these promises."

"a set of promises" covers the contract portion.

"specified in digital form" is somewhat contract/smart contract agnostic.

"including protocols within which the parties perform on these promises" entails what makes it smart. I see this phrase to mean that the contract itself is self-executing, i.e. it automates and/or ensures the execution of the promises. [2]

The classic vending machine example

A great example of a smart contract—also from Nick Szabo in 1996—is a vending machine.

How a vending machine is a contract: if a person (party 1) puts money in (does X), the vending machine (party 2) will give potato chips (does Y).

The contract of the vending machine is not specified digitally, but more implicitly by a person’s understanding of the concept of the vending machine.

The mechanical system behind the vending machine automates the execution of the promises.

You may take note a difference here between a typical legal contract and the vending machine contract—instead of an agreement of terms upfront before the execution of promises, the vending machine presents a system of self-executing promises that will activate upon fulfillment of a condition, the condition being the input of money. This model of thinking will be helpful when extrapolating to blockchain.

Mental models for contracts

Normal idea of contract in our heads: two people sign document, then go to work and don't break the contract (keep their promises).

New model for smart contract: system of self-executing promises is exposed to public use; anyone can trigger the execution by providing proper inputs.

What is a smart contract in the context of blockchain?

At a high level, smart contracts on a blockchain are not much more than our established definition. In the case of a blockchain, the system that automates/ensures the execution of promises is code, and the promises are expressed/specified by the same code.

Similar to a vending machine, when you fulfill given conditions, i.e. provide money, you can then trigger the execution of said promises, i.e. blocks of code.

We can extrapolate this metaphor even further.

When you insert money into a vending machine, you’re paying not only for the asset you might obtain as a result of execution, but for the service of execution as well. In other words, you pay for the chips themselves, as well as the machine itself for its convenience and its labor of swirling the little metal spiral to pop out your bag of chips. This is the same for smart contracts. You pay what's called a gas fee not only for 1) a possible asset you might obtain, but also to 2) trigger the execution of a smart contract, with the fee being roughly proportional to the computational resources expended to execute its code.

When you put your money into a vending machine, you choose which item you want it to spit out. If you abstract away the bag of chips or candy bar, you're really choosing which function to run, that being the F2 function with your Fritos, or the E6 function with your Snickers. Like a vending machine, a smart contract specifies different functions, aka blocks of code, it can run, and when you use a smart contract, you specify which function you want it to run. [3]

How is that possible on a blockchain?

Well, it's only possible on a blockchain that supports this capability.

Take away any relation to money. Let's first just think about how there can be code execution on a blockchain.

First, blockchain, if you don't have previous context, is just a software system that allows a network of computers to agree on arbitrary data without any central authority. You may hear this as a network being capable of "decentralized consensus." [4]

You can think about a blockchain network as a bunch of computers updating each other on some data, and all the computers cooperate together through clever protocols to ensure that they all have the same data and updates all in the same order. You can think of these updates as pushing new data or editing data.

We can think of this data as the "state" of the network. In computer science, a state machine is just a system with some sort of state, that takes inputs and transitions to a new state in a consistent manner. It’s reasonable to think of a blockchain network as one big state machine, where the data is the state, and the updates are transitions to the states.

Now imagine that one of these updates was pushing some new data, but that data was a block of code. Now everyone in the network has access to this code.

Imagine another update was pushing some new data, but this time the data was the output of that code. In this update, it would just include the instruction to get the output of the code, not the actual output itself. Given that everyone has the code, to make this update, they would be able to just run this code. Now you have code execution on the blockchain.

Imagine the code was unlimited in the kinds of things it could do. It could make updates, so it could push new data, edit data, push new code, and trigger the execution of other code. Imagine you could call this code from other software. Now you have a development ecosystem that can leverage code execution on this network of computers.

So is this how it works on real blockchains?

What we've established so far is not far off from how smart contracts work on Ethereum.

If we combine this concept of code execution on a network of computers plus our idea of vending machines as smart contracts, we get Ethereum smart contracts.

On Ethereum, a smart contract specifies a set of functions, i.e. arbitrary blocks of code, that a user can trigger by providing some money and specifying which function to run. Just like a vending machine.

How does code receive money? When a contract is deployed, an account is created that is connected to that contract. Accounts are what store balances of ether, Ethereum’s native currency, for entities on the blockchain, and so smart contracts hold accounts that users can send ether to.

Before any code execution can happen, someone needs to write a contract, and put it on the blockchain, i.e. push data to the network of computers.

Then when the code runs, it can change the state on the blockchain in a myriad of ways, such as updating data, adding new data, moving money from one account to another, allocating assets to accounts, etc. And instead of the state being totally arbitrary data, at its core it's a bunch of accounts with balances of ether.

This all happens through transactions. Transactions are not only their literal meaning of exchanging assets/services, but also they're arbitrary changes to the state. Sending money from my account to another account is a transaction. Inputting money to trigger a smart contract is another transaction.

Through this system of state, transactions, and code execution, you can see that this whole blockchain ecosystem really amounts to a bunch of glorified vending machines, that is, glorified vending machines that are powering the future of the web.

…

Notes

[1] Smart Contracts: Building Blocks for Digital Markets, Nick Szabo, 1996.

[2] Typically a contract would be legally binding, giving parties involved great confidence that the other would fulfill their promises, as otherwise the law would enforce the execution of some consequence. In a smart contract, a system is provided that automates this fulfillment of promises. It gives you 100% confidence the promises will be fulfilled.

[3] Another similarity between vending machines and smart contracts: you don’t have to inspect the insides of a vending machine to use it or to trust that it’ll actually give you potato chips and not just eat up your one dollar bill. A smart contract is the same way. In most cases the end user should not have to know exactly what’s going on inside a smart contract to use it.

[4] The actual word "blockchain" refers to a particular aspect of the original blockchain's (bitcoin) implementation. This can make things confusing when you try to connect the word to what it means without understanding the technical aspects behind it. That’s okay.

Subscribe to N/A
Receive the latest updates directly to your inbox.
Verification
This entry has been permanently stored onchain and signed by its creator.