Skip to content
Alessandro Solbiati

Building on the Blockchain with Solidity

blockchain, programming4 min read

I have been turning away from this Blockchain technology because of the major hype that has been happening in the last 5 years. Now that the hype is finally going down looks like is time to have a look at it...

Triggered by Yuval Noah Harari (YNH)

I was re-reading Sapiens from YNH where he speaks about how things like money or Facebook are just social contracts, i.e. imagined realities that everyone believes in, and as long as this communal belief persist, the imagined reality exerts force in the world. This somehow ringed the bell of smart contracts. I am not sure (yet) if the two things are related, but my brain works through random association so this totally justify me spending the afternoon on the Ethereum developer tutorial right?

Hello World in Solidity

Usually you check how complicated is to write a hello world to sample the complexity of a language, well the Solidity hello world is in the hard end of the spectrum. I am unfamiliar with dozens of concepts so I will try to go through one by one.

  • Solidity is the OOP language for implementing smart contract on the Etherum blockchain, and it looks like Java (weird syntax choice for 2020 IMHO). web3.js is the Javascript library to interact via HTTP with Ethereum nodes that run Solidity code (aka smart contract).
  • Smart Contract is a Solidity class with attributes (aka data) and methods (aka functions). The whole point here is that an instance of this Smart Contract class becomes a node in the BlockChain and anyone in the world can access it (as in a public distributed database).
  • Cryptocurrency is an example of a Solidity class (aka smart contract) that implements some methods like "create new coins" (aka mint), "send/receive money"; intuitively, this class is smart contract because it implements rules like "require(balance > X) => send X coins".
  • BlockChain is the database where you record transactions (aka blocks), i.e. calling methods of a Smart Contract. For example, when you call the "mint" method of a Cryptocurrency class, you are adding a new block (making a new insert transaction) into the database (aka blockchain). This blocks form a linear sequence in time and practically can't be reverted.

Building a Zombie mini-game on the BlockChain

Being a strong advocate for project based learning, I got lured by cryptozombies.io that offer an interactive Solidity tutorial around mini-games. It's a freemium 11 lessons interactive tutorial similar to codeacademy. These are more or less the topics they go through:

  • Building a Smart-Contract: at the end of the day building the smart-contract looks like implementing a Java backend of a web application. You can emit events that you will be listening from the Javascript front-end, and you have a distinction of pure/view private/public functions, but for the basic that's mainly it. You can look at the source code here.
  • Interact with other Smart-Contracts on the BlockChain: now stuff start to become fun. Turns out that you can instantiate a Smart-Contract that already exist on the BlockChain inside your own Smart-Contract implementation and interact with it through an interface class. Let's take the KittyCore contract for example; this is the core contract used by the fairly popular CryptoKitties.co, a marketplace where the digital assets you trade are virtual cats. The KittyCore contract is a Solidity class that lives at a uniquely defined hash on the Ethereum BlockChain, specifically 0x06012//. You can actually read the code of this class, and see that it implements functions like getKitty(uint _id) that you can call once you instantiate the KittyCore contract through a local interface in your smart contract! In this repo is an example Smart-Contract implementation that has read access to the CryptoKitties decentralised database. Something even more interesting is to have a look on EtherScan at the transactions that happens real time with the KittyCore contract and other contracts: 0x662de// is a transaction that has bid(1317377) as input data, this means someone is calling the bid of the KittyCore Smart-Contract: you can actually go on opensea.io and look for the CryptoKitty with ID 1317377, a.k.a "Fuku Bummuffin", and confirm the actual trade activity we just saw from etherscan! That was interesting.
  • Smart-Contracts implementation best practices: there are some non-trivial considerations around computational complexity when implementing a smart-contract. ethgasstation.info provides a real-time view of prices for computational power (referred as gas market) on the Ethereum Blockchain. As a distributed computation system, the computation need to be replicated in different nodes of the network, and you pay a fee to this nodes that execute your code i.e. the miners. Here is a nice explanation of gas prices and gas markets. You can see in the repo at lesson 3 some example of code optimisations to reduce the distributed computation complexity of the smart-contract in order to minimise the transaction cost (a.k.a gas fee).
  • Interacting in a Marketplace through Tokens and Payable. Is a good practice to use standard interfaces of Smart-Contracts, known as tokens. A standard interface allows any tokens on Ethereum to be re-used by other applications: from wallets to decentralized exchanges. You can view the OpenZeppelin implementation for the major tokens around. The two most famous are ERC-20, used to implement currencies where every token is identical to another (fungible), and ERC-271 used to implement unique assets (like CryptoKitties mentioned above). This interfaces has functions like transferFrom that should implement the transferral of the asset between owners. An interesting property of this functions is that they possess the payable modifier, that allows the caller to send an amount of Ether tokens when calling the function. This is an elegant approach to model financial transaction on the Ethereum Blockchain. You can read the tutorial code for implementation of ERC721 payable functions.
  • Deploying Smart-Contracts on the BlockChain: there is a vibrant ecosystem of services that help you put your Smart-Contracts to life on the BlockChain. The central one is Truffle a Javascript SDK to manage the deployment process. There is Infura and RinkeBy test network.