Hotmoka is a framework for programming a network of communicating nodes, in a subset of Java called Takamaka. Nodes can belong to a blockchain or can be Internet of Things devices.
The latest version of this document is available for free in PDF, ePub and MOBI format, at https://github.com/Hotmoka/hotmoka/releases.
This document is licensed under a Creative Commons Attribution 4.0 International License.
Copyright 2022 by Fausto Spoto ([email protected]).
This software benefits from the use of the YourKit profiler for Java:
YourKit supports open source projects with innovative and intelligent tools for monitoring and profiling Java and .NET applications. YourKit is the creator of YourKit Java Profiler, YourKit .NET Profiler, and YourKit YouMonitor.
- Introduction
- Getting Started with Hotmoka
- A First Takamaka Program
- The Notion of Smart Contract
- The Support Library
- Tokens
- Hotmoka Nodes
- Tendermint Hotmoka Nodes
- Code Verification
- References
More than a decade ago, Bitcoin [Nakamoto08] swept the computer industry as a revolution, providing, for the first time, a reliable technology for building trust over an inherently untrusted computing infrastructure, such as a distributed network of computers. Trust immediately translated into money and Bitcoin became an investment target, exactly at the moment of one of the worst economical turmoil of recent times. Central(-ized) banks, fighting against the crisis, looked like dinosaurs in comparison to the decentralized nature of Bitcoin.
Nevertheless, the novelty of Bitcoin was mainly related to its consensus mechanism based on a proof of work, while the programmability of Bitcoin transactions was limited due to the use of a non-Turing-equivalent scripting bytecode [Antonopoulos17].
The next step was hence the use of a Turing-equivalent programming language (up to gas limits) over an abstract store of key/value pairs, that can be efficiently kept in a Merkle-Patricia trie. That was Ethereum [AntonopoulosW19], whose Solidity programming language allows one to code any form of smart contract, that is, code that becomes an agreement between parties, thanks to the underlying consensus enforced by the blockchain.
Solidity looks familiar to most programmers. Conditionals, loops and structures are there since more than half a century. Programmers assumed that they knew Solidity. However, the intricacies of its semantics made learning Solidity harder than expected. Finding good Solidity programmers is still difficult and they are consequently expensive. It is, instead, way too easy to write buggy code in Solidity, that seems to work perfectly, up to that day when things go wrong, very wrong [AtzeiBC17].
It is ungenerous to blame Solidity for all recent attacks to smart contracts in blockchain. That mainly happened because of the same success of Solidity, that made it the natural target of the attacks. Moreover, once the Pandora's box of Turing equivalence has been opened, you cannot expect anymore to keep the devils at bay, that is, to be able to decide and understand, exactly, what your code will do at run time. And this holds for every programming language, past, present or future.
I must confess that my first encounter with Solidity
was a source of frustration. Why was I expected to learn another programming
language? and another development environment? and another testing framework?
Why was I expected to write code without a support library that provides
proved solutions to frequent problems?
What was so special with Solidity after all? Things became even more difficult when
I tried to understand the semantics of the language. After twenty-five years of studying
and teaching programming languages, compilation, semantics and code analysis
(or, possibly, just because of that) I still cannot explain exactly why there
are structures and contracts instead of a single composition mechanism in Solidity;
nor what is indeed the meaning of memory
and storage
and why
it is not the compiler that takes care of such gritty details; nor why
externally owned accounts are not just a special kind of contracts;
nor why Solidity needs such low-level (and uncontrollable)
call instructions, that make Java's (horrible) reflection, in comparison, look like
a monument to clarity;
nor why types are weak in Solidity, so that contracts are held in address
variables, whose actual type is unknown and cannot be easily
enforced at run time [CrafaPZ19], with all consequent
programming monsters, such as unchecked casts. It seems that the evolution
of programming languages has brought us back to C's void*
type.
Hence, when I first met people from Ailia SA in fall 2018, I was not surprised to realize that they were looking for a new way of programming smart contracts over the new blockchain that they were developing. I must thank them and our useful discussions, that pushed me to dive in blockchain technology and study many programming languages for smart contracts. The result is Takamaka, a Java framework for writing smart contracts. This means that it allows programmers to use a subset of Java for writing code that can be installed and run in blockchain. Programmers will not have to deal with the storage of objects in blockchain: this is completely transparent to them. This makes Takamaka completely different from other attempts at using Java for writing smart contracts, where programmers must use explicit method calls to persist data to blockchain.
Writing smart contracts in Java entails that programmers do not have to learn yet another programming language. Moreover, they can use a well-understood and stable development platform, together with all its modern tools. Programmers can use features from the latest versions of Java, such as streams and lambda expressions. There are, of course, limitations to the kind of code that can be run inside a blockchain. The most important limitation is that programmers can only call a portion of the huge Java library, whose behavior is deterministic and whose methods are guaranteed to terminate.
The runtime of the Takamaka programming language is included in the Hotmoka project, a framework for collaborating nodes, whose long-term goal is to unify the programming model of blockchain and internet of things. The more scientific aspects of Hotmoka and Takamaka have been published in the last years [BeniniGMS21][CrosaraOST21][OlivieriST21][Spoto19][Spoto20].
Intended Audience. This book is for software developers who want to use Hotmoka nodes and program smart contracts in Takamaka. It goes deep into the inner working of Hotmoka. For instance, it shows how transactions can be triggered in code, not just with the Moka client of Hotmoka. Less experienced readers, or developers not interested in writing code that interacts with Hotmoka nodes, can just skip these parts and concentrate on the use of the Moka command-line client only. Non-technical users might just be happy with the use of Mokito and Hotwallet, the mobile and web clients of Hotmoka, whose functionalities are of course limited.
Contribute to Hotmoka.
Hotmoka is a complex project, that requires many and different skills. After years of development,
it is ready for the general public. This does not mean that it is bug-free, nor perfect:
we expect our users to find all sort of bugs and to suggest improvements. Hence, feel
free to write to us at [email protected]
, with bugs and improvement requests.
If you are a developer, consider the possibility of helping us with the development
of the project. In particular, the whole ecosystem of applications running
over Hotmoka is missing at the moment (that is, applications, typically web-based, that
use Hotmoka as their backend storage). Hotmoka is open-source and non-proprietary,
licensed under the terms of the Apache 2.0 License. Therefore, feel free to clone and fork the code.
The Example Projects of This Book.
The experiments that we will perform in this book will
require one to create Java projects inside a directory that we will name
hotmoka_tutorial
. We suggest that you create and
experiment with these projects yourself.
However, if you have no time and want to jump immediately to the result,
or if you want to compare your work
with the expected result, we provide you with the completed examples of this book in
a repository that you can clone.
Each section of this book will report
the project of the repository where you can find the related code.
You can clone that completed tutorial examples repository as follows:
$ git clone --branch v1.7.0 https://github.com/Hotmoka/hotmoka_tutorial.git
This will create the hotmoka_tutorial
directory. Inside that directory, you will
find the Java projects of this book, in Maven format.
You can import all these projects into Eclipse (File → Import; then specify
Existing Maven Projects and finally select the hotmoka_tutorial
directory).
They can be imported similarly in IntelliJ and NetBeans.
Acknowledgments. I thank the people at Ailia SA, in particular Giovanni Antino, Mario Carlini, Iris Dimni and Francesco Pasetto, who decided to invest in the Takamaka project and who are building their own open-source blockchain that can be programmed in Takamaka. My thank goes also to all students and colleagues who have read and proof-checked this book and its examples, finding bugs and inconsistencies; in particular to Luca Olivieri and Fabio Tagliaferro. Chapter Tokens is a shared work with Marco Crosara, Filippo Fantinato, Luca Olivieri and Fabio Tagliaferro. Chapter Hotmoka Nodes is a shared work with Dinu Berinde. Section Shared Entities is a shared work with Andrea Benini, Mauro Gambini and Sara Migliorini.
Hotmoka enjoys being a Docker-sponsored open source program. DockerHub provides for free a repository for the distribution of the Docker images of Hotmoka.
GitHub is hosting the code of Hotmoka for free, running tests and packaging actions at each commit and hosting its releases for download.
Hotmoka benefits from the use of a free license of the YourKit profiler for Java. YourKit supports open source projects with innovative and intelligent tools for monitoring and profiling Java and .NET applications. YourKit is the creator of YourKit Java Profiler, YourKit .NET Profiler, and YourKit YouMonitor.
Verona, June 2024.
Hotmoka is the abstract definition of a device that can store objects (data structures) in its persistent memory (its state) and can execute, on those objects, code written in a subset of Java called Takamaka. Such a device is called a Hotmoka node and such programs are known as smart contracts, taking that terminology from programs that run inside a blockchain. It is well true that Hotmoka nodes can be different from the nodes of a blockchain (for instance, they can be an Internet of Things device); however, the most prominent application of Hotmoka nodes is, at the moment, the construction of blockchains whose nodes are Hotmoka nodes.
Every Hotmoka node has its own persistent state, that contains code and objects. Since Hotmoka nodes are made for running Java code, the code inside their state is kept in the standard jar format used by Java, while objects are just a collection of values for their fields, with a class tag that identifies whose class they belong to and a reference (the classpath) to the jar where that class is defined. While a device of an Internet of Thing network is the sole responsible for its own state, things are different if a Hotmoka node that is part of a blockchain. There, the state is synchronized and identical across all nodes of the blockchain.
In object-oriented programming, the units of code that can be run on an object are called methods. When a method must be run on an object, that object is identified as the receiver of the execution of the method. The same happens in Hotmoka. That is, when one wants to run a method on an object, that object must have been already allocated in the state of the node and must be marked as the receiver of the execution of the method. Assume for instance that one wants to run a method on the object in Figure 1, identified as receiver. The code of the method is contained in a jar, previously installed in the state of the node, and referred as classpath. This is the jar where the class of the receiver is defined.
Figure 1. Receiver, payer and classpath for a method call in a Hotmoka node.
The main difference with standard object-oriented programming is that Hotmoka requires one to specify a further object, called payer. This is because a Hotmoka node is a public service, that can be used by everyone has an internet connection that can reach the node. Therefore, that service must be paid with the internal cryptocurrency of the node, by providing a measure of execution effort known as gas. The payer is therefore a sort of bank account, whose balance gets decreased in order to pay for the gas needed for the execution of the method. The payer is accessible inside the method as its caller.
There are many similarities with what happens in Ethereum: the notion of receiver, payer and gas are taken from there. There are, however, also big differences. The first is that the code of the methods is inside a jar referenced by the objects, while Ethereum requires to reinstall the code of the contracts each time a contract is instantiated. More importantly, Hotmoka keeps an explicit class tag inside the objects, while contracts are untyped in Ethereum [CrafaPZ19] and are referenced through the untyped
address
type.
Receiver and payer have different roles but are treated identically in Hotmoka:
they are objects stored in state at their respective state locations, known as
their storage references. For instance the caller in
Figure 1 might be allocated at the storage
reference 5f705b7dc5869ae39db3bc80b7cd073c2bb55726706749138d16a4a9d0f01766#0
. A storage reference has two parts, separated
by a #
sign. The first part are 64 hexadecimal digits (ie, 32 bytes)
that identify the
transaction that created the object; the second part is a progressive number
that identifies an object created during that transaction: the first object
created during the transaction has progressive zero, the second has progressive
one, and so on. When a method is called on a Hotmoka node, what is actually specified
in the call request are the storage references of the receiver and of the payer
(plus the actual arguments to the method, if any).
In Hotmoka, a transaction is either
- the installation of a jar, that modifies the state of the node, and is paid by a payer account, or
- the execution of a method on a receiver, that yields a returned value and/or has side-effects that modify the state of the node, and is paid by a payer account.
A Hotmoka node can keep track of the transactions that it has executed, so that it is possible, for instance, to recreate its state by running all the transactions executed in the past, starting from the empty state.
It is very important to discuss at this moment a significant difference with what
happens in Bitcoin, Ethereum and most other blockchains. There, an account
is not an object, nor a contract,
but just a key in the key/value store of the blockchain, whose value is its balance.
The key used for an account is typically computed by hashing the public key derived from
the private key of the account. In some sense, accounts, in those blockchain, exist
independently from the state of the blockchain and can be computed offline: just
create a random private key, compute the associated public key and hence its hash.
Hotmoka is radically different: an account is an object that must be allocated in
state by an explicit transaction (that must be paid, as every transaction).
The public key is explicitly stored inside the object
(Base64-encoded in its publicKey
field, see Figure 1).
That public key was passed as a parameter for the creation of the payer object and
can be passed again for creating more accounts. That is, it is well possible, in Hotmoka,
to have more accounts in the state of a node, all distinct, but controlled by the same key.
This has a major consequence. In Bitcoin and Ethereum, an account is identified by twelve words and a password, by using the BIP39 encoding (see Figure 5-6 of [Antonopoulos17]). These twelve words are just a mnemonic representation of 132 bits: 128 bits for the random entropy used to derive the private key of the account and four bits of checksum. In Hotmoka, these 128 bits are not enough, since they identify the key of the account but not the 32 bytes of its storage reference (in this representation, the progressive is assumed to be zero). As a consequence, accounts in Hotmoka are identified by 128+256 bits, plus 12 bits of checksum (and a password), which give rise to 36 words with the BIP39 encoding. By specifying those 36 words across different clients, one can control the same account with all such clients. As usual, those 36 words must be stored in paper and kept in a secure place, since losing them amounts to losing access to the account.
As shown in Figure 1, the code of the objects (contracts) installed in the state of a Hotmoka node consists in jars (Java archives) written in a subset of Java known as Takamaka. This is done in a way completely different from other blockchains:
- In Hotmoka, programmers code the contracts that want to install in the node and nothing more; they do not program the encoding of data into the key/value store of the node (its keeper, as it is called in other blockchains); they do not program the gas metering; they do not program the authentication of the accounts and the verification of their credentials. Everything is automatic in Hotmoka, exactly as in Ethereum, and differently from other blockchains that use general purpose languages such as Java for their smart contracts: there, programmers must take care of all these details, which is difficult, boring and error-prone. If this is done incorrectly, those blockchains will hang.
- In Hotmoka, the code installed in the node passes a preliminary verification, that checks the correct use of some primitives, that we will introduce in the subsequent chapters, and guarantees that the code is deterministic. This excludes an array of errors in Hotmoka, while other blockchains will hang if, for instance, the code is non-deterministic.
In order to query a Hotmoka node, handle accounts and run transactions on the node, one needs a client application. Currently, there are a command-line client, called Moka, a mobile client for Android, called Mokito, and a web client that gets installed in the browser (Chrome or Firefox), called Hotwallet. Mokito and Hotwallet provide basic functionalities only (handling accounts, querying the state of the objects in the node, running simple transactions), while Moka is the most complete solution, but also the most difficult to use.
You can use the moka
tool to interact with a Hotmoka node,
install code in the node and run transactions in the node.
The latest version of the tool can be downloaded from
https://github.com/Hotmoka/hotmoka/releases.
Its source code is maintained inside the main distribution of the Hotmoka project, at
https://github.com/Hotmoka/hotmoka, in the submodule io-hotmoka-moka
.
We report below the installation instructions of moka
.
In order to run the tool, you need Java JDK version 11 (or higher) installed in your
computer and a recent version of Maven.
You should download and untar the latest release into the directory
where you want to install moka
. For instance, assuming that
the latest version is 1.7.0
and that
you want to install it under ~/Opt/moka
, you can run the following commands:
$ cd ~/Opt
$ mkdir moka
$ cd moka
$ wget https://github.com/Hotmoka/hotmoka/releases/
download/v1.7.0/moka_1.7.0.tar.gz
$ tar zxf moka_1.7.0.tar.gz
$ export PATH=$PATH:$(pwd)
The dollar sign is the prompt of the shell. In the shell scripts reported in this book, whenever a line is too long, as that starting with wget above, we go to the next line but you should enter the command in a single line, without newlines or spaces:
...releases/download/v...
The last export
command expands the command-path of the shell with
the ~/Opt/moka
directory, so that moka
can
be invoked from the command shell, regardless of the current directory.
You might want to add an export
at the end of your ~/.bashrc
configuration file, so that the command-path
will be expanded correctly the next time you open a shell. For instance, I added
the following command at the end of my ~/.bashrc
:
export PATH=/home/spoto/Opt/moka:$PATH
You should download and untar the latest release
(https://github.com/Hotmoka/hotmoka/releases)
into the directory
where you want to install moka
, by using a software tool such as
7zip
or Cygwin
. After that, you should be able to run the tool
from the command prompt:
$ cd directory-where-you-installed-moka
$ moka.bat help
In the following of this tutorial, remember to use moka.bat
to invoke the
tool, where our examples use moka
instead, which is the Linux name of
the invocation script.
You might want to add, to the command-path,
the directory where you installed moka
,
so that it will be expanded correctly the next time you open
a command prompt window.
For that, add that directory to the PATH
environment variable.
The moka
tool should be
in the command-path of your shell now. You can check that it works, by invoking
moka
as follows:
$ moka help
Usage: moka [COMMAND]
This is the command-line interface of Hotmoka.
Commands:
bind-key Binds a key to a reference, so that it becomes an account
buy-validation Accept a sale offer of validation power
call Calls a method of an object or class
create Creates an object in the store of a node
create-account Creates a new account
create-key Creates a new key
help Display help information about the specified command.
faucet Sets the thresholds for the faucet of the gamete of a node
import-account Imports an account
info Prints information about a node
init-disk Initializes a new node in disk memory
init-tendermint Initializes a new node based on Tendermint
install Installs a jar in a node
instrument Instruments a jar
resume-tendermint Resumes an existing node based on Tendermint
rotate-key Rotates the key of an account
sell-validation Place a sale offer of validation power
send Sends units of coin to a payable contract
show-account Shows an account
start-tendermint Starts a new node based on Tendermint
state Prints the state of an object
verify Verifies a jar
version Print version information.
As you can see above, the moka help
command prints a description
of the available subcommands and exits.
You can have a detailed help of a specific subcommand
by specifying the subcommand after help
.
For instance, to print the help of the
faucet
subcommand, you can type:
$ moka help faucet
Usage: moka faucet [--interactive] [--max-red=<maxRed>]
[--password-of-gamete=<passwordOfGamete>] [--uri=<uri>] <max>
Sets the thresholds for the faucet of the gamete of a node
<max> the maximal amount of coins sent at each call to the
faucet of the node
Default: 0
--interactive run in interactive mode
--max-red=<maxRed> the maximal amount of red coins sent at each call to
the faucet of the node
Default: 0
--password-of-gamete=<passwordOfGamete>
the password of the gamete account; if not
specified, it will be asked interactively
--uri=<uri> the URI of the node
Default: ws://localhost:8001
The moka
tool allows one to perform a large variety of operations
on a Hotmoka node. However, it is a technical tool, meant for developers.
Most users will only perform simple tasks with a Hotmoka node.
For them, it is simpler to use a mobile app, with a simpler user
interface. That app, called Mokito
, is currently available for Android only.
You can download it from Google Play and install it in your device, from
https://play.google.com/store/apps/details?id=io.hotmoka.android.mokito. Developers interested in its Kotlin source code
can find it at
https://github.com/Hotmoka/HotmokaAndroid,
together with a small Android service for connecting to a remote Hotmoka node.
The first time you will use Mokito on your mobile device, it will connect by default to our testnet Hotmoka node and show the screen in Figure 2. This can be changed in the preferences section of the app, accessible through the menu in the top left area of the app.
Figure 2. The starting screen of the Mokito app.
Hotwallet is a web client that can be installed as an extension to Chrome and Firefox. It performs basic account handling and includes a JavaScript/TypeScript interface that can be queried by web applications that need to access the user's accounts. This architecture has been inspired by MetaMask for Ethereum. You can install Hotwallet inside the Firefox browser as an add-on that can be downloaded from https://addons.mozilla.org/en-US/firefox/addon/hotwallet. Developers interested in its TypeScript source code can find it at https://github.com/Hotmoka/hotwallet-browser. There is also a Hotweb3 JavaScript/TypeScript library for connecting web applications to the Hotwallet browser extension and use its accounts programmatically. Its source code can be found at https://github.com/Hotmoka/hotweb3.
Figure 3. The starting screen of the Hotwallet extension to the browser.
The first time you run Hotwallet, it will ask you to create a key or import an account (see Figure 3). Hotwallet has a default node to contact, but this can be changed with the menu item Networks.
Hotwallet is available for Google Chrome as well, but currently not yet through its web store. Intead, it must be either compiled by hand or installed as an unpacked extension. The latter solution is the simplest. Namely, in order to install Hotwallet in Chrome as an unpacked extension, do the following:
- Download its latest release in zip format from https://github.com/Hotmoka/hotwallet-browser/releases
- Unzip the file (on Linux, run
unzip hotwallet_1.0.1.zip
) - Go to Chrome and select the menu item More tools and subitem Extensions
- Activate the Developer mode with the switch in the top-right corner of the screen
- Click on Load unpacked (left-top corner of the screen) and select the directory where you unzipped the Hotwallet file
- The extension should be installed now. If you want to add its small icon to the extensions bar of Chrome, for quick access, click on the icon of the extensions bar that looks like a puzzle piece and activate the pin mode for Hotwallet.
The examples in this book must be run by a Hotmoka node,
typically part of a Hotmoka blockchain. We will show you in a later chapter how you
can install your own local
node or blockchain. However, for now, it is much simpler to experiment with a node
that is part of a public
test blockchain that we provide for experimentation.
Namely, we have installed a Hotmoka node for testing at the address
ws://panarea.hotmoka.io
.
The peculiarity of this node is that it includes a faucet that gives
away small amounts of coins, when requested. This is good for experimentation
but, of course, a real node will not include a faucet.
In a real node, people must grasp some coins because they have been sent by
some other user or bought from some source online.
You can verify that you can contact the test node by typing
the command moka info
to print information
about the node at that address, as you can see below:
$ moka info --uri ws://panarea.hotmoka.io
Info about the node:
takamakaCode: ae8e94c789fb66784a6cc4208c797c80cbce2721292d636b963184fc266abe42
manifest: f12254cd1abcf6999881a73a45075196d47828baf630bec24efbeb50150a52be#0
chainId: marabunta
maxErrorLength: 300
signature: ed25519
...
gamete: 25b310a0ce87dcd6a019e5a081f38ddc9a8812dff7144273f02d06d3824752c8#0
balance: 99999999999999999999...
maxFaucet: 10000000000000
...
gasStation: f12254cd1abcf6999881a73a45075196d47828baf630bec24efbeb50150a52be#14
gasPrice: 1
...
validators: f12254cd1abcf6999881a73a45075196d47828baf630bec24efbeb50150a52be#1
totalSupply: 1000000000000000...
...
The details of this information are irrelevant for now, but something must be
clarified, to understand the following sections better.
Namely, the moka info
information is telling us that the node
already contains some code and Java objects, as shown in Figure 4.
Figure 4. The state of the test network nodes.
The takamakaCode
reference is the pointer to a jar, installed in blockchain, that contains
the classes of the Takamaka language runtime. All programs that we will write in Takamaka
will depend on that jar, since they will use classes such
as io.takamaka.code.lang.Contract
or annotations such as io.takamaka.code.lang.View
.
The manifest
reference, instead, points to a Java object that publishes
information about the node. Namely, it reports its chain identifier and
the signature algorithm that, by default, is used to sign the transactions for the node. The manifest points
to another object, called gamete
, that is an account holding all coins
in blockchain, initially. Consequently, the gamete has a rich balance
,
but also another interesting property, called maxFaucet
, that states how much coins
it is willing to give up for free. In a real node, and differently from here,
that value should be zero. In this test network, instead, it is a non-zero value
that we will exploit for creating our first account, in
a minute. The gasStation
refers to another Java object, that provides
information about the gas, such as its current gasPrice
. Finally, there is
another Java object, called validators
, that keeps information about the validator nodes of the network
and contains, for instance, the total supply of the cryptocurrency (how much cryptocurrency has
been minted up to now).
As we said in the previous section, Java objects in the Hotmoka node are identified by their
storage reference, such as f12254cd1abcf6999881a73a45075196d47828baf630bec24efbeb50150a52be#14
.
You can think at a storage reference as a machine-independent pointer inside the
memory, or state, of the node.
We have used the moka
tool to see the manifest of a node. You can also use the
Mokito app for that. Namely, tap on the app menu icon on the top-left corner of the screen
and select Manifest from the menu that will appear (see Figure 5).
Figure 5. The menu of the Mokito app.
After tapping on Manifest, a new screen will appear, containing the same information
that we found with moka info
(see Figure 6).
Figure 6. The manifest of the Hotmoka node, shown in the Mokito app.
We need an account in the test network, that we will use later to pay for
installing code in blockchain and for running transactions. An account in Hotmoka
is something completely different from an account in other blockchains.
For instance, in Bitcoin and Ethereum accounts do not really exist, in the sense
that they are just an address derived from a private key, that can be used to control
information in blockchain. Their creation does not trigger any operation in blockchain,
it is performed completely off-chain. Instead, in Hotmoka, an account
is a Java object, more precisely an instance of the io.takamaka.code.lang.ExternallyOwnedAccount
class. That object must be allocated (created) in the memory of the Hotmoka node,
before it can be used. Moreover, such an object is not special in any way:
for instance, as for all other objects in the storage of the node, we must pay for its creation.
Currently, we have no accounts and consequently
no coins for paying the creation of a new object. In a real blockchain, we could
earn coins by working for the network, or as payment for some activity,
or by buying coins at an exchange.
In this test network, we will use the faucet of the gamete instead, that is willing
to send us up to 10000000000000 coins, for free. Namely, you can run the
following command in order to ask the faucet to create your first externally owned account,
funded with 50000000000 coins, initially. We will execute the following command-line
inside the hotmoka_tutorial
directory, so that it will save the entropy of your account
there, which will simplify your subsequent work:
$ moka create-account 50000000000 --payer faucet --uri ws://panarea.hotmoka.io
Please specify the password of the new account: chocolate
Free account creation succeeds only if the gamete supports an open unsigned faucet.
Created account 5f705b7dc5869ae39db3bc80b7cd073c2bb55726706749138d16a4a9d0f01766#0.
Its entropy has been saved into the file
"5f705b7dc5869ae39db3bc80b7cd073c2bb55726706749138d16a4a9d0f01766#0.pem".
Please take note of the following passphrase of 36 words:
1: mail
2: better
3: supreme
4: quit
5: expire
6: forest
7: traffic
8: bus
9: attract
10: gas
11: glow
12: team
13: warfare
14: color
15: warfare
16: radio
17: online
18: brother
19: hollow
20: jungle
21: arena
22: track
23: brother
24: lyrics
25: relief
26: rice
27: orchard
28: soldier
29: muffin
30: shoot
31: fold
32: news
33: special
34: level
35: sunset
36: hover
A storage reference
5f705b7dc5869ae39db3bc80b7cd073c2bb55726706749138d16a4a9d0f01766#0
has been created.
Note that this reference will be different in your machine, as well as the 36 words passphrase. Change these accordingly in the subsequent examples.
This storage reference is a machine-independent pointer to your account Java object, inside
the node. Moreover, a random sequence of bits, called entropy, has been generated
and saved into a .pem
file. From that entropy, and the chosen password, it is possible
to derive private and (hence) public key of the account.
You should keep the .pem
file secret since, together with the
password of the account (in our case, we chose chocolate
),
it allows its owner to control your account and spend its coins.
Note that the password is not written anywhere: if you lose it, there is
no way to recover that password.
We will see in a moment what is the use of these 36 words passphrase generated by moka
. For now,
let us check that our account really exists at its address,
by querying the node with the moka state
command:
$ moka state 5f705b7dc5869ae39db3bc80b7cd073c2bb55726706749138d16a4a9d0f01766#0
--uri ws://panarea.hotmoka.io
This is the state of object
5f705b7dc5869ae39db3bc80b7cd073c2bb55726706749138d16a4a9d0f01766#0
@ws://panarea.hotmoka.io
class io.takamaka.code.lang.ExternallyOwnedAccount
(from jar installed at
ae8e94c789fb66784a6cc4208c797c80cbce2721292d636b963184fc266abe42)
nonce:java.math.BigInteger = 0
publicKey:java.lang.String = "TFqggZYjD4hvykf4rfc84J3cWgfnmFJRWd/8P4jH2Vs="
balance:java.math.BigInteger =
50000000000 (inherited from io.takamaka.code.lang.Contract)
balanceRed:java.math.BigInteger =
0 (inherited from io.takamaka.code.lang.Contract)
Note that the balance and the public key of the account are
fields of the account object. Moreover, note that Hotmoka knows
which is the class of the object at that address
(it is a io.takamaka.code.lang.ExternallyOwnedAccount
)
and where that class is defined (inside the jar
at address ae8e94c789fb66784a6cc4208c797c80cbce2721292d636b963184fc266abe42
,
that is, takamakaCode
).
This is completely different from what happens, for instance, in Ethereum, where externally owned accounts and contract references and untyped at run time, so that it is not possible to reconstruct their class in a reliable way. Moreover, note that we have been able to create an object in blockchain without sending the bytecode for its code: that bytecode was already installed, at
takamakaCode
, and we do not need to repeat it every time we instantiate an object. Instead, the new object will refer to the jar that contains its bytecode.
In the following, you can use the moka state
command on any object,
not just on your own account, whenever you want to inspect its state
(that includes the state inherited from its superclasses).
Figure 7. The state of the test network nodes after the creation of our new account.
Figure 7 shows the state of the network nodes after the creation of our new account. Since out test node is part of a blockchain, it is not only its state that has been modified, but also that of all nodes that are part of the blockchain.
Whenever your account will run out of coins, you can recharge it with the
moka send
command, using, again, the faucet as source of coins. Namely,
if you want to recharge your account with 200000 extra coins, you can type:
$ moka send 200000
5f705b7dc5869ae39db3bc80b7cd073c2bb55726706749138d16a4a9d0f01766#0
--payer faucet --uri ws://panarea.hotmoka.io
You can then use the moka state
command to verify that the balance of
your account has been actually increased with 200000 extra coins.
The creation of a new account from the faucet is possible from the Mokito app as well. Namely, use the menu of the app to tap on the Accounts item to see the list of available accounts (Figure 2). From there, tap on the menu icon on the right of the Faucet account and select Create a new account (see Figure 8).
Figure 8. The menu for creating a new account with Mokito.
A form will appear, where you can specify the name for the account, its password and the initial balance (that will be paid by the faucet). For instance, you can fill it as in Figure 9.
Figure 9. The form specifying a new account Elvis.
The name of the accounts is a feature of Mokito to simplify the identification of the accounts. However, keep in mind that accounts have no name in Hotmoka: they are just identified by their storage reference. For instance,
moka
currently does not allow one to associate names to accounts.
After tapping on the Create new account
button, the new account will be created and
its information will be shown, as in Figure 10. Again, note in this screen the storage reference of the new account
and the presence of a 36 words passphrase.
Figure 10. The new account Elvis.
If you go back to the accounts screen (by using the top-left menu of Mokito), you will see that Elvis has been added to your accounts (see Figure 11).
Figure 11. The new account Elvis has been imported.
We have created 5f705b7dc5869ae39db3bc80b7cd073c2bb55726706749138d16a4a9d0f01766#0
with moka
and
701e20be588db820744df467826d67b9fe451406d7f75da6ef8aeb6805a7365f#0
with Mokito. We might want to import the former in Mokito and the latter
in moka
, and we want to import both inside Hotwallet,
so that we can operate on both accounts with all three tools. In order to import
701e20be588db820744df467826d67b9fe451406d7f75da6ef8aeb6805a7365f#0
in moka
, we can use the moka import-account
command and insert its 36 words
passphrase:
$ moka import-account
Insert the 36 words of the passphrase of the account to import:
word #1: rail
word #2: double
word #3: bag
word #4: dove
word #5: fluid
...
word #34: bounce
word #35: deposit
word #36: hotel
The account 701e20be588db820744df467826d67b9fe451406d7f75da6ef8aeb6805a7365f#0
has been imported.
Its entropy has been saved into the file
"701e20be588db820744df467826d67b9fe451406d7f75da6ef8aeb6805a7365f#0.pem".
Figure 12. The menu of the accounts screen.
Figure 13. Inserting the 36 words passphrase in Mokito.
Figure 14. The new account The Boss has been imported.
From this moment, it is possible to control that account with moka
(if we remember
its password, that is, chocolate
).
Vice versa, with Mokito, go to the accounts page, show its top-right menu and select Import account (see Figure 12). In the screen that will appear, insert the name that you want to give to the account, its password and its 36 words passphrase (Figure 13). Tap on the Import Account button. The new account will show in the list of available accounts (Figure 14). From this moment, it will be possible to control the account from Mokito.
In Hotwallet, click on the top-right menu and select Import account. From there, you can insert the password and the 36 words passphrase of each account and see them imported in Hotwallet. You can see the list of all available accounts with the same menu, if you click on Account list. You can click on each account and switch from one to the other. Every time you change the account, Hotwallet requires to insert its password.
As you have seen, the 36 words and the password of an account are enough for moving accounts around different clients. Note that clients do not contain accounts but only the cryptographic information needed to access the accounts. If a client is uninstalled, the accounts that it used still exist in the remote Hotmoka node and can still be re-imported and used in some other client, if we have written down their 36 words and still remember their passwords.
The fact that accounts in Hotmoka are not just identified by their public key, but also by their storage reference inside the state of a node, makes it a bit more difficult, but not impossible, to execute anonymous transactions. We do not advocate the use of anonymity here, but it is true that, sometimes, one wants to remain anonymous and still receive a payment.
Anonymity is often used for illegal actions such as ransomware and blackmailing. We are against such actions. This section simply shows that anonymity can be achieved in Hotmoka as well, although it is a bit harder than with other blockchains.
Suppose for instance that somebody, whom we call Anonymous, wants to receive from us a payment of 10,000 coins, but still wants to remain unknown. He can receive the payment in many ways:
- He could send us an anonymous email asking us to pay to a specific account, already existing in the state of the node. But this is not anonymous, since, in Hotmoka, an account is an object and there must have been a transaction that created that object, whose payer is likely to be Anonymous or somebody in his clique. That is, the identity of Anonymous can be inferred from the creator of the account. Therefore, Anonymous discards this possibility.
- He could send us an anonymous email asking
us to create a new account with a given public key, whose associate
private key he controls, and to charge it with 10,000 coins. After that, we are expected
to send him an email where we notify him the storage reference where
moka create-account
has allocated the account. But this means that we must know his email address, which is definitely against the idea of anonymity. Therefore, Anonymous discards this possibility as well. - He could send us an anonymous email asking us to pay to a given public key, whose associated private key he controls. After we pay to that key, he autonomously and anonymously recovers the storage reference of the resulting account, without any interaction with us. This is definitely anonymous and that is the technique that Anonymous will choose.
Let us show how the third possibility works. Anonymous starts by creating a new private/public key, exactly as one would do in Ethereum and other blockchains. He runs the following command:
$ moka create-key
Please specify the password of the new key: kiwis
A new key 9ZWQamdq5g5b4WmGaDWDzyYTt7CYCQki9LYiVekvoe2n has been created.
Its entropy has been saved into the file
"./9ZWQamdq5g5b4WmGaDWDzyYTt7CYCQki9LYiVekvoe2n.pem".
Note that there is no --uri
part in the moka create-key
command, since this operation
runs completely off-line: no object gets created in the state of any Hotmoka node for now.
Anonymous pastes the new key into an anonymous email message to us:
Please pay 10000 coins to the key 9ZWQamdq5g5b4WmGaDWDzyYTt7CYCQki9LYiVekvoe2n.
Once we receive this email, we use (for instance) our previous account to send 10000 coins to that key:
$ moka send 10000 9ZWQamdq5g5b4WmGaDWDzyYTt7CYCQki9LYiVekvoe2n
--anonymous
--payer 5f705b7dc5869ae39db3bc80b7cd073c2bb55726706749138d16a4a9d0f01766#0
--uri ws://panarea.hotmoka.io
Please specify the password of the payer account: chocolate
Do you really want to spend up to 700000 gas units to send the coins [Y/N] Y
Total gas consumed: 63544
for CPU: 985
for RAM: 2141
for storage: 60418
for penalty: 0
The owner of the key can now see the new account associated to the key.
And that's all! No other interaction is needed with Anonymous. He will check
from time to time to see if we have paid, by running the command moka bind-key
until it succeeds:
$ moka bind-key 9ZWQamdq5g5b4WmGaDWDzyYTt7CYCQki9LYiVekvoe2n
--uri ws://panarea.hotmoka.io
Cannot bind: nobody has paid anonymously to the key
9ZWQamdq5g5b4WmGaDWDzyYTt7CYCQki9LYiVekvoe2n up to now.
$ moka bind-key 9ZWQamdq5g5b4WmGaDWDzyYTt7CYCQki9LYiVekvoe2n
--uri ws://panarea.hotmoka.io
Cannot bind: nobody has paid anonymously to the key
9ZWQamdq5g5b4WmGaDWDzyYTt7CYCQki9LYiVekvoe2n up to now.
$ moka bind-key 9ZWQamdq5g5b4WmGaDWDzyYTt7CYCQki9LYiVekvoe2n
--uri ws://panarea.hotmoka.io
A new account 309ed8d1058c7c7df0ebf85fb37d07e386467660dca2e568436eb9972c8e27b2#0
has been created.
Its entropy has been saved into the file
"./309ed8d1058c7c7df0ebf85fb37d07e386467660dca2e568436eb9972c8e27b2#0.pem".
Once moka bind-key
succeeds, Anonymous can enjoy his brand new account, that he
can control with the kiwis
password.
So how does that work? The answer is that the --anonymous
option to moka send
creates the account 309ed8d1058c7c7df0ebf85fb37d07e386467660dca2e568436eb9972c8e27b2#0
with the public key of
Anonymous inside it, so that Anonymous will be able to control that account.
But there is more: the moka send
command will also associate that account to the
key 9ZWQamdq5g5b4WmGaDWDzyYTt7CYCQki9LYiVekvoe2n
inside a hash map contained in the manifest of the node,
called accounts ledger. The moka bind-key
command will simply query that
hash map, to see if somebody has already bound an account to 9ZWQamdq5g5b4WmGaDWDzyYTt7CYCQki9LYiVekvoe2n
.
If, inside the accounts ledger, there is an account C already associated to the key
9ZWQamdq5g5b4WmGaDWDzyYTt7CYCQki9LYiVekvoe2n
, then themoka send
command will not create a new account but will increase the balance of C and themoka bind-key
command will consequently yield C. This is a security measure in order to avoid payment disruptions due to the association of dummy accounts to some keys or to repeated payments to the same key. In any case, the public key of C can only be9ZWQamdq5g5b4WmGaDWDzyYTt7CYCQki9LYiVekvoe2n
, since the accounts ledger enforces that constraint when it gets populated with accounts: if somebody associates a key K to an account C, then the public key contained inside C must be K.
Anonymous payments are possible with Mokito and Hotwallet as well. Both clients allow one to create a key and pay to a key.
Should one use anonymous payments, always? The answer is no, since anonymity incurs into an extra gas cost: that of modifying the accounts ledger. If there is no explicit need for anonymity, it is cheaper to receive payments as described in points 1 and 2 considered above, probably without the need of anonymous emails.
You will not need to download and install to source code of Hotmoka in this book. Nevertheless, an important aspect of blockchain technology is that trust is based also on the public availability of its code. Moreover, you will need to download the source code if you want to understand its inner working, or contribute to the development of the project or fork the project.
Hence, we show below how to download the source code of Hotmoka and of the runtime of the Takamaka language. You will need Java JDK version at least 11.
Clone the project with:
$ git clone --branch v1.7.0 https://github.com/Hotmoka/hotmoka.git
then cd
to the moka
directory and
compile, package, test and install the Hotmoka jars:
$ mvn clean install
All tests should pass and all projects should be successfully installed:
[INFO] Hotmoka parent ..................................... SUCCESS [ 3.234 s]
[INFO] io-hotmoka-whitelisting-api ........................ SUCCESS [ 1.154 s]
[INFO] io-hotmoka-whitelisting ............................ SUCCESS [ 1.459 s]
[INFO] io-hotmoka-verification-api ........................ SUCCESS [ 1.437 s]
[INFO] io-hotmoka-verification ............................ SUCCESS [ 2.214 s]
[INFO] io-hotmoka-instrumentation-api ..................... SUCCESS [ 1.158 s]
[INFO] io-hotmoka-instrumentation ......................... SUCCESS [ 1.665 s]
...
[INFO] io-hotmoka-examples ................................ SUCCESS [ 1.691 s]
[INFO] io-hotmoka-tests ................................... SUCCESS [04:02 min]
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 04:25 min
[INFO] Finished at: 2024-03-08T18:57:52+02:00
[INFO] ------------------------------------------------------------------------
If you are not interested in running the tests, append
-DskipTests
after the wordinstall
.
Figure 15. The Eclipse projects of Hotmoka.
If you want to edit the source code inside an IDE, you can import it in Eclipse, NetBeans or IntelliJ.
In Eclipse, use the File → Import → Existing Maven Projects menu item and import
the parent Maven project contained in the moka
directory that you cloned from
GitHub. This should create, inside Eclipse, also its submodule projects.
You should see, inside Eclipse's project explorer, something like Figure 15.
You will then be able to compile, package, test and install the Hotmoka jars inside
Eclipse itself, by right-clicking on the parent
project and selecting
Run As
and then the Mavel install
target. You will also be able to run the tests inside
the Eclipse JUnit runner, by right-clicking on the io-hotmoka-tests
subproject
and selecting Run As
and then the JUnit Test
target.
The Maven configuration of the project specifies that all modules and their dependencies
get copied into the modules
directory as result of compilation with Maven (also
from inside Eclipse),
classified as automatic, explicit and unnamed
modules (as from Java 9 onwards). You can see this by typing:
$ ls -R modules
modules/:
automatic explicit unnamed
modules/automatic:
bcel-6.7.0.jar
grpc-stub-1.54.2.jar
io-hotmoka-node-tendermint-abci-1.7.0.jar
...
modules/explicit:
bcprov-jdk15on-1.70.jar
io-hotmoka-node-local-1.7.0.jar
io-hotmoka-node-local-api-1.7.0.jar
io-hotmoka-verification-1.7.0.jar
io-hotmoka-verification-api-1.7.0.jar
gson-2.8.9.jar
io-hotmoka-node-disk-1.7.0.jar
io-hotmoka-node-disk-api-1.7.0.jar
io-takamaka-code-1.3.1.jar
it-univr-bcel-1.2.1.jar
picocli-4.7.2.jar
...
modules/unnamed:
animal-sniffer-annotations-1.21.jar
annotations-13.0.jar
...
It is not possible to discuss here the difference between
these kinds of modules (see [MakB17] for that).
Just remember that explicit and
automatic modules must be put in the module path, while
unnamed modules must stay in the class path. Eclipse should
do this automatically for us, as does the moka
script that we have
installed previously.
Takamaka is the language that can be used to write smart contracts for Hotmoka nodes. Hotmoka nodes and Takamaka code have exactly the same relation as Ethereum nodes and Solidity code.
Let us start from a simple example of Takamaka code. Since we are writing Java code, there is nothing special to learn or install before starting writing programs in Takamaka. Just use your preferred integrated development environment (IDE) for Java. Or even do everything from command-line, if you prefer. Our examples below will be shown for the Eclipse IDE, using Java 11 or later, but you can perfectly well use the IntelliJ IDE instead.
Our goal will be to create a Java class that we will instantiate
and use in blockchain. Namely, we will learn how to create an object
of that class, that will be persisted in blockchain, and how we can later
call the toString()
method on that instance in blockchain.
[See the family
project inside the hotmoka_tutorial
repository]
Let us create a Maven project family
inside Eclipse,
in the hotmoka_tutorial
directory.
For that, in the Eclipse's Maven wizard
(New → Maven project) specify the options
Create a simple project (skip archetype selection)
and deselect the Use default Workspace directory option,
specifying a subdirectory family
of the hotmaok_tutorial
directory as Location instead.
Hence, Location should be something that ends with .../tutorial/family
.
Do not add the project to any working set. Use io.hotmoka
as Group Id and family
as Artifact Id.
The Group Id can be changed as you prefer, but we will stick to
io.hotmoka
to show the exact files that you will see in Eclipse.
By clicking Finish in the Eclipse's Maven wizard, you should see
a new Maven project in the Eclipse's explorer.
Currently, Eclipse creates a default pom.xml
file that uses Java 5
and has no dependencies. Replace hence
the content of the pom.xml
file of the family
project with the code that follows:
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>io.hotmoka.tutorial</groupId>
<artifactId>family</artifactId>
<version>0.0.1</version>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.release>11</maven.compiler.release>
</properties>
<dependencies>
<dependency>
<groupId>io.hotmoka</groupId>
<artifactId>io-takamaka-code</artifactId>
<version>1.3.1</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.11.0</version>
</plugin>
</plugins>
</build>
</project>
that specifies to use Java 11 and provides the dependency
to io-takamaka-code
, that is, the run-time classes of the Takamaka smart contracts.
We are using
1.3.1
here, as version of the Takamaka runtime project. Replace that, if needed, with the latest version of the project.
Since the pom.xml
file has changed, Eclipse will normally show an error
in the family
project. To solve it,
you need to update the Maven dependencies of the project:
right-click on the family
project → Maven → Update Project...
As you can see, we are importing the dependency io-takamaka-code
,
that contains the Takamaka runtime. This will be downloaded from Maven
and everything should compile without errors.
The result in Eclipse should look similar to what is
shown in Figure 16.
Figure 16. The family Eclipse project.
Create a module-info.java
file inside src/main/java
(right-click on the family
project → Configure → Create module-info.java → Create),
to state that this project depends on the module containing the runtime of Takamaka:
module family {
requires io.takamaka.code;
}
Create a package io.takamaka.family
inside src/main/java
. Inside that package,
create a Java source Person.java
, by copying and pasting the following code:
package io.takamaka.family;
public class Person {
private final String name;
private final int day;
private final int month;
private final int year;
public final Person parent1;
public final Person parent2;
public Person(String name, int day, int month, int year,
Person parent1, Person parent2) {
this.name = name;
this.day = day;
this.month = month;
this.year = year;
this.parent1 = parent1;
this.parent2 = parent2;
}
public Person(String name, int day, int month, int year) {
this(name, day, month, year, null, null);
}
@Override
public String toString() {
return name + " (" + day + "/" + month + "/" + year + ")";
}
}
This is a plain old Java class and should not need any comment.
Package the project into a jar, by running the following shell command inside
the directory of the project (that is, the subdirectory family
of the
directory hotmoka_tutorial
):
$ mvn package
A family-0.0.1.jar
file should appear inside the target
directory.
Only the compiled
class files will be relevant: Hotmoka nodes will ignore source files, manifest
and any resources in the jar; the same compiled
module-info.class
is irrelevant for them.
All such files can be removed from the jar, to reduce the gas cost of their
installation in the store of a node, but we do not care about this optimization here.
The result should look as in Figure 17:
Figure 17. The family Eclipse project, exported in jar.
[See the runs
project inside the hotmoka_tutorial
repository]
We have generated the jar containing our code and we want to send it now to a Hotmoka node,
where it will be installed. This means that it will become available to programmers
who want to use its classes, directly or as dependencies of their programs.
In order to install a jar in the Hotmoka node that we have used in the previous chapter,
we can use the moka
command-line tool, specifying which account will pay for the
installation of the jar. The cost of the installation depends on the size of the
jar and on the number of its dependencies. The moka
tool uses a heuristics to
foresee the cost of installation. Move inside the hotmoka_tutorial
directory, if you are not
there already, so that
moka
will find your saved entropy there, and run the moka install
command:
$ cd hotmoka_tutorial
$ moka install family/target/family-0.0.1.jar
--payer 5f705b7dc5869ae39db3bc80b7cd073c2bb55726706749138d16a4a9d0f01766#0
--uri ws://panarea.hotmoka.io
Please specify the password of the payer account: chocolate
Do you really want to spend up to 494900 gas units to install the jar [Y/N] Y
family/target/family-0.0.1.jar has been installed
at 2dfdad98c8280fa5834be3fe94db06233146275641540aa179de81c1a9afaec7
Total gas consumed: 219355
for CPU: 261
for RAM: 1299
for storage: 217795
for penalty: 0
As you can see above, the jar has been installed at a reference, that can be used
later to refer to that jar. This has costed some gas, paid by our account.
You can verify that the balance of the account has been decreased, through the
moka state
command.
The state of the Hotmoka nodes of the testnet is now as in Figure 18.
As that figure shows, a dependency has been created, automatically, from family-0.0.1.jar
to
io-takamaka-code.jar
. This is because all Takamaka code will use the run-time classes of the Takamaka language,
hence the moka install
command adds them, by default. Note that a dependency must already be installed in the node
before it can be used as dependency of other jars.
Figure 18. The state of the test network nodes after the installation of our jar.
What we have done above is probably enough for most users, but sometimes you need
to perform the same operation in code, for instance in order to implement a software
application that connects to a Hotmoka node and runs some transactions.
Therefore, we describe below how you can write a Java program that installs the
same jar in the Hotmoka node, without using the moka install
command.
A similar translation in code can be performed for all examples in this tutorial,
but we will report it only for a few of them.
Let us hence create another Eclipse Maven project
runs
, inside hotmoka_tutorial
,
exactly as we did in the previous section for the family
project.
Specify Java 11 (or later) in its build configuration.
Use io.hotmoka
as Group Id and runs
as Artifact Id.
This is specified in the following pom.xml
, that you should copy inside
the runs
project, replacing that generated by Eclipse:
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>io.hotmoka.tutorial</groupId>
<artifactId>runs</artifactId>
<version>0.0.1</version>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.release>11</maven.compiler.release>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.11.0</version>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>io.hotmoka</groupId>
<artifactId>io-hotmoka-node-remote</artifactId>
<version>1.7.0</version>
</dependency>
<dependency>
<groupId>io.hotmoka</groupId>
<artifactId>io-hotmoka-helpers</artifactId>
<version>1.7.0</version>
</dependency>
<dependency>
<groupId>io.hotmoka</groupId>
<artifactId>io-hotmoka-node-tendermint</artifactId>
<version>1.7.0</version>
</dependency>
<dependency>
<groupId>io.hotmoka</groupId>
<artifactId>io-hotmoka-node-disk</artifactId>
<version>1.7.0</version>
</dependency>
<dependency>
<groupId>io.hotmoka</groupId>
<artifactId>io-hotmoka-node-service</artifactId>
<version>1.7.0</version>
</dependency>
<dependency>
<groupId>io.hotmoka</groupId>
<artifactId>io-takamaka-code-constants</artifactId>
<version>1.3.1</version>
</dependency>
</dependencies>
</project>
This pom.xml
specifies a few dependencies. We do not need all of them now,
but we will need them along the next sections, hence let us insert them all already.
These dependencies get automatically downloaded from the Maven repository.
Since we modified the file pom.xml
, Eclipse should show an error
for the runs
project. To fix it,
you need to update the Maven dependencies of the project:
right-click on the runs
project → Maven → Update Project...
Leave directory src/test/java
empty, by deleting its content, if not already empty.
The result should look as in Figure 19.
Figure 19. The `runs` Eclipse project.
Create a module-info.java
inside src/main/java
, containing:
module runs {
requires io.hotmoka.helpers;
requires io.hotmoka.node.remote;
requires io.hotmoka.node.disk;
requires io.hotmoka.node.tendermint;
requires io.hotmoka.node.service;
requires io.takamaka.code.constants;
}
Again, we do not need all these dependencies already, but we will need them later.
Create a package
runs
inside src/main/java
and add the following class Family.java
inside it:
package runs;
import static java.math.BigInteger.ONE;
import java.math.BigInteger;
import java.net.URI;
import java.nio.file.Files;
import java.nio.file.Paths;
import java.security.KeyPair;
import io.hotmoka.crypto.api.Signer;
import io.hotmoka.helpers.GasHelpers;
import io.hotmoka.helpers.SignatureHelpers;
import io.hotmoka.node.Accounts;
import io.hotmoka.node.MethodSignatures;
import io.hotmoka.node.StorageValues;
import io.hotmoka.node.TransactionRequests;
import io.hotmoka.node.api.Node;
import io.hotmoka.node.api.requests.SignedTransactionRequest;
import io.hotmoka.node.api.transactions.TransactionReference;
import io.hotmoka.node.api.values.StorageReference;
import io.hotmoka.node.remote.RemoteNodes;
public class Family {
// change this with your account's storage reference
private final static String
ADDRESS = "5f705b7dc5869ae39db3bc80b7cd073c2bb55726706749138d16a4a9d0f01766#0";
public static void main(String[] args) throws Exception {
// the path of the user jar to install
var familyPath = Paths.get("../family/target/family-0.0.1.jar");
try (var node = RemoteNodes.of(URI.create("ws://panarea.hotmoka.io"), 20000)) {
// we get a reference to where io-takamaka-code-1.3.1.jar has been stored
TransactionReference takamakaCode = node.getTakamakaCode();
StorageReference manifest = node.getManifest();
// we get the signing algorithm to use for requests
var signature = node.getConfig().getSignatureForRequests();
var account = StorageValues.reference(ADDRESS);
KeyPair keys = loadKeys(node, account);
// we create a signer that signs with the private key of our account
Signer<SignedTransactionRequest<?>> signer = signature.getSigner
(keys.getPrivate(), SignedTransactionRequest::toByteArrayWithoutSignature);
// we get the nonce of our account: we use the account itself as caller and
// an arbitrary nonce (ZERO in the code) since we are running
// a @View method of the account
BigInteger nonce = node
.runInstanceMethodCallTransaction(TransactionRequests.instanceViewMethodCall
(account, // payer
BigInteger.valueOf(50_000), // gas limit
takamakaCode, // class path for the execution of the transaction
MethodSignatures.NONCE, // method
account)).get() // receiver of the method call
.asBigInteger(__ -> new ClassCastException());
// we get the chain identifier of the network
String chainId = node
.runInstanceMethodCallTransaction(TransactionRequests.instanceViewMethodCall
(account, // payer
BigInteger.valueOf(50_000), // gas limit
takamakaCode, // class path for the execution of the transaction
MethodSignatures.GET_CHAIN_ID, // method
manifest)).get() // receiver of the method call
.asString(__ -> new ClassCastException());
var gasHelper = GasHelpers.of(node);
// we install family-0.0.1-SNAPSHOT.jar in the node: our account will pay
TransactionReference family = node
.addJarStoreTransaction(TransactionRequests.jarStore
(signer, // an object that signs with the payer's private key
account, // payer
nonce, // payer's nonce: relevant since this is not a call to a @View method!
chainId, // chain identifier: relevant since this is not a call to a @View method!
BigInteger.valueOf(300_000), // gas limit: enough for this very small jar
gasHelper.getSafeGasPrice(), // gas price: at least the current gas price of the network
takamakaCode, // class path for the execution of the transaction
Files.readAllBytes(familyPath), // bytes of the jar to install
takamakaCode)); // dependencies of the jar that is being installed
// we increase our copy of the nonce, ready for further
// transactions having the account as payer
nonce = nonce.add(ONE);
System.out.println("family-0.0.1.jar installed at: " + family);
}
}
private static KeyPair loadKeys(Node node, StorageReference account) throws Exception {
return Accounts.of(account, "..").keys
("chocolate", SignatureHelpers.of(node).signatureAlgorithmFor(account));
}
}
As you can see, this class creates an instance of a RemoteNode
, that represents a Hotmoka
node installed in a remote host. By specifying the URI of the host, the RemoteNode
object
exposes all methods of a Hotmoka node. It is an AutoCloseable
object, hence it is placed inside
a try-with-resource statement that guarantees its release at the end of the try
block.
By using that remote node, our code collects
some information about the node: the reference to the io-takamaka-code
jar already
installed inside it (takamakaCode
) and the signature algorithm used by the node (signature
),
that it uses to construct a signer
object that signs with the private key of our account,
loaded from disk.
The loadKeys
method accesses the .pem
file that we have previously created
with moka
. It does it by looking in the parent directory ..
, that is where that file should be.
Like every Hotmoka node, the observable state of the remote node can only evolve through transactions, that modify its state in an atomic way. Namely, the code above performs three transactions:
- A call to the
nonce()
method of our account: this is a progressive counter of the number of transactions already performed with our account. It starts from zero, but our account has been already used for other transactions (through themoka
tool). Hence we better ask the node about it. As we will see later, this transaction calls a@View
method. All calls to@View
methods have the nice feature of being for free: nobody will pay for them. Because of that, we do not need to sign this transaction, or to provide a correct nonce, or specify a gas price. The limitation of such calls is that their transactions are not checked by consensus, hence we have to trust the node we ask. Moreover, they can only read, never write the data in the store of the node. - A call to the
getChainId()
method of the manifest of the node. Also this is a call to a@View
method, hence it costs nothing. The code invokes the methodrunInstanceMethodCallTransaction()
of the node, with theaccount
object as receiver of the call. - The addition of our jar in the node. This time the transaction has a cost and our
account is specified as payer. The signer of our account signs the transaction.
Nonce of our account and chain identifier of the network are relevant, as well as the
gas price, that must at least match that of the network.
The code uses the
addJarStoreTransaction()
method, that executes a new transaction on the node, whose goal is to install a jar inside it. The jar is provided as a sequence of bytes (Files.readAllBytes("../family/target/family-0.0.1.jar")
, assuming that thefamily
project is a sibling of the projectruns
). The request passed toaddJarStoreTransaction()
specifies that the transaction can cost up to 300,000 units of gas, that can be bought at a price returned by thegasHelper
object. The request specifies that its class path isnode.getTakamakaCode()
: this is the reference to theio-takamaka-code
jar already installed in the node. Finally, the request specifies thatfamily-0.0.1.jar
has only a single dependency:io-takamaka-code
. This means that when, later, we will refer tofamily-0.0.1.jar
in a class path, this class path will indirectly include its dependencyio-takamaka-code
as well (see Figure 18).
As in Ethereum, transactions in Hotmoka are paid in terms of gas consumed for their execution. Calls to
@View
methods do not actually modify the state of the node and are executed locally, on the node that receives the request of the transaction. Hence, they can be considered as run for free. Instead, we have used an actual gas price for the last transaction that installs the jar in blockchain. This could be computed with a sequence of calls to@View
methods (get the manifest, then the gas station inside the manifest, then the gas price inside the gas station). In order to simplify the code, we have used theGasHelper
class, that does exactly that for us.
You can run the program by selecting class Family
in Eclipse and then
the run menu option or the run green arrow of Eclipse.
You should see the following on the screen:
family-0.0.1.jar installed at:
7b25f645b5213e0a855ce158cedc341a688c01aa77898486ff9f36ce772809a3
The exact address will change. In any case, note that this reference to the jar is functionally equivalent to that
obtained before with the moka install
command: they point to the same jar.
[See projects runs
and family_storage
inside the hotmoka_tutorial
repository]
The jar of our program is in the store of the node now: the moka install
command
has installed it at
2dfdad98c8280fa5834be3fe94db06233146275641540aa179de81c1a9afaec7
and our code at 7b25f645b5213e0a855ce158cedc341a688c01aa77898486ff9f36ce772809a3
.
We can use either of them, interchangeably, as class path for the execution of a transaction that
tries to run the constructor of Person
and add a brand
new Person
object into the store of the node. We can perform this through the moka
tool:
$ cd hotmoka_tutorial # if you are not already there
$ moka create
io.takamaka.family.Person
"Albert Einstein" 14 4 1879 null null
--payer 5f705b7dc5869ae39db3bc80b7cd073c2bb55726706749138d16a4a9d0f01766#0
--classpath 2dfdad98c8280fa5834be3fe94db06233146275641540aa179de81c1a9afaec7
--uri ws://panarea.hotmoka.io
Please specify the password of the payer account: chocolate
Do you really want to spend up to 500000 gas units to call
public Person(String,int,int,int,Person,Person) ? [Y/N] Y
Total gas consumed: 500000
for CPU: 290
for RAM: 1225
for storage: 11310
for penalty: 487175
io.hotmoka.node.api.TransactionException: java.lang.IllegalArgumentException:
an object of class io.takamaka.family.Person cannot be kept in store
since it does not implement io.takamaka.code.lang.Storage
The moka create
command requires to specify who pays for the object creation
(our account), then the fully-qualified name of the class that we want to instantiate
(io.takamaka.family.Person
) followed by the actual arguments passed to its constructor.
The classpath refers to the jar that we have installed previously. The moka create
command
asks for the password of the payer account and
checks if we really want to proceed (and pay). Then it ends up in failure
(TransactionException
). Note that
all offered gas has been spent.
This is a sort of penalty for running a transaction that fails. The rationale is that this penalty should discourage
potential denial-of-service attacks, when a huge number of failing transactions are thrown at a
node. At least, that attack will cost a lot. Moreover, note that the transaction, although
failed, does exist. Indeed, the nonce of the caller has been increased, as you can check with moka state
on your account.
But we still have not understood why the transaction failed. The reason is in the exception
message: an object of class io.takamaka.family.Person cannot be kept in store since it does not implement io.takamaka.code.lang.Storage
.
Takamaka requires
that all objects stored in a node extend the io.takamaka.code.lang.Storage
class. That superclass
provides all the machinery needed in order to keep track of updates to such objects and persist them
in the store of the node, automatically.
Do not get confused here. Takamaka does not require all objects to extend
io.takamaka.code.lang.Storage
. You can use objects that do not extend that superclass in your Takamaka code, both instances of your classes and instances of library classes from thejava.*
hierarchy, for instance. What Takamaka does require, instead, is that objects that must be kept in the store of a node do extendio.takamaka.code.lang.Storage
. This must be the case, for instance, for objects created by the constructor invoked through themoka create
command.
Let us modify the io.takamaka.family.Person.java
source code, inside the family
project then:
package io.takamaka.family;
import io.takamaka.code.lang.Storage;
public class Person extends Storage {
... unchanged code ...
}
Extending
io.takamaka.code.lang.Storage
is all a programmer needs to do in order to let instances of a class be stored in the store of a node. There is no explicit method to call to keep track of updates to such objects and persist them in the store of the node: Hotmoka nodes will automatically deal with them.
We can use the
io.takamaka.code.lang.Storage
class and we can run the resulting compiled code since that class is insideio-takamaka-code
, that has been included in the class path as a dependency offamily-0.0.1.jar
.
Regenerate family-0.0.1.jar
, by running mvn package
again,
inside the family
project, since class Person
has changed.
Then run again the moka create
command. This time, the execution should
complete without exception:
$ cd family
$ mvn clean package
$ cd ..
$ moka install family/target/family-0.0.1.jar
--payer 5f705b7dc5869ae39db3bc80b7cd073c2bb55726706749138d16a4a9d0f01766#0
--uri ws://panarea.hotmoka.io
...
has been installed at
c4e98a66ab3b4ae598d1ffaab5aa97c93a8fb8d78282abd359658794179788f6
...
$ moka create
io.takamaka.family.Person
"Albert Einstein" 14 4 1879 null null
--payer 5f705b7dc5869ae39db3bc80b7cd073c2bb55726706749138d16a4a9d0f01766#0
--classpath c4e98a66ab3b4ae598d1ffaab5aa97c93a8fb8d78282abd359658794179788f6
--uri ws://panarea.hotmoka.io
Please specify the password of the payer account: chocolate
Do you really want to spend up to 500000 gas units to call
public Person(String,int,int,int,Person,Person) ? [Y/N] Y
The new object has been allocated at
24a92fcb1536caf360906a4a8f7744c1d54b7ccd1396cd1db85896dcfe39f73e#0
Total gas consumed: 41721
for CPU: 291
for RAM: 1235
for storage: 40195
for penalty: 0
The new object has been allocated at a storage reference that can be used
to refer to it, also in the future:
24a92fcb1536caf360906a4a8f7744c1d54b7ccd1396cd1db85896dcfe39f73e#0
.
You can verify that it is actually there and that its fields are correctly initialized,
by using the moka state
command:
$ cd hotmoka_tutorial
$ moka state 24a92fcb1536caf360906a4a8f7744c1d54b7ccd1396cd1db85896dcfe39f73e#0
--uri ws://panarea.hotmoka.io
This is the state of object
24a92fcb1536caf360906a4a8f7744c1d54b7ccd1396cd1db85896dcfe39f73e#0
@ws://panarea.hotmoka.io
class io.takamaka.family.Person (from jar installed at
c4e98a66ab3b4ae598d1ffaab5aa97c93a8fb8d78282abd359658794179788f6)
day:int = 14
month:int = 4
name:java.lang.String = "Albert Einstein"
parent1:io.takamaka.family.Person = null
parent2:io.takamaka.family.Person = null
year:int = 1879
Compared with Solidity, where contracts and accounts are just untyped addresses, objects (and hence accounts) are strongly-typed in Takamaka. This means that they are tagged with their run-time type (see the output of
moka state
above), in a boxed representation, so that it is possible to check that they are used correctly, ie., in accordance with the declared type of variables, or to check their run-time type with checked casts and theinstanceof
operator. Moreover, Takamaka has information to check that such objects have been created by using the same jar that stays in the class path later, every time an object gets used (see the informationfrom jar installed at
in the output ofmoka state
above).
We can perform the same object creation in code, instead of using the moka create
command.
Namely, the following code builds on the previous example and installs a jar by adding
a further transaction that calls the constructor of Person
:
package runs;
import static io.hotmoka.helpers.Coin.panarea;
import static io.hotmoka.node.StorageTypes.INT;
import static java.math.BigInteger.ONE;
import java.math.BigInteger;
import java.net.URI;
import java.nio.file.Files;
import java.nio.file.Paths;
import java.security.KeyPair;
import io.hotmoka.crypto.api.Signer;
import io.hotmoka.helpers.GasHelpers;
import io.hotmoka.helpers.SignatureHelpers;
import io.hotmoka.node.Accounts;
import io.hotmoka.node.ConstructorSignatures;
import io.hotmoka.node.MethodSignatures;
import io.hotmoka.node.StorageTypes;
import io.hotmoka.node.StorageValues;
import io.hotmoka.node.TransactionRequests;
import io.hotmoka.node.api.Node;
import io.hotmoka.node.api.requests.SignedTransactionRequest;
import io.hotmoka.node.api.transactions.TransactionReference;
import io.hotmoka.node.api.types.ClassType;
import io.hotmoka.node.api.values.StorageReference;
import io.hotmoka.node.remote.RemoteNodes;
public class Family2 {
// change this with your account's storage reference
private final static String
ADDRESS = "5f705b7dc5869ae39db3bc80b7cd073c2bb55726706749138d16a4a9d0f01766#0";
private final static ClassType PERSON = StorageTypes.classNamed("io.takamaka.family.Person");
public static void main(String[] args) throws Exception {
// the path of the user jar to install
var familyPath = Paths.get("../family_storage/target/family_storage-0.0.1.jar");
try (var node = RemoteNodes.of(URI.create("ws://panarea.hotmoka.io"), 20000)) {
// we get a reference to where io-takamaka-code-1.3.1.jar has been stored
TransactionReference takamakaCode = node.getTakamakaCode();
StorageReference manifest = node.getManifest();
// we get the signing algorithm to use for requests
var signature = node.getConfig().getSignatureForRequests();
var account = StorageValues.reference(ADDRESS);
KeyPair keys = loadKeys(node, account);
// we create a signer that signs with the private key of our account
Signer<SignedTransactionRequest<?>> signer = signature.getSigner
(keys.getPrivate(), SignedTransactionRequest::toByteArrayWithoutSignature);
// we get the nonce of our account: we use the account itself as caller and
// an arbitrary nonce (ZERO in the code) since we are running
// a @View method of the account
BigInteger nonce = node
.runInstanceMethodCallTransaction(TransactionRequests.instanceViewMethodCall
(account, // payer
BigInteger.valueOf(50_000), // gas limit
takamakaCode, // class path for the execution of the transaction
MethodSignatures.NONCE, // method
account)).get() // receiver of the method call
.asBigInteger(__ -> new ClassCastException());
// we get the chain identifier of the network
String chainId = node
.runInstanceMethodCallTransaction(TransactionRequests.instanceViewMethodCall
(account, // payer
BigInteger.valueOf(50_000), // gas limit
takamakaCode, // class path for the execution of the transaction
MethodSignatures.GET_CHAIN_ID, // method
manifest)).get() // receiver of the method call
.asString(__ -> new ClassCastException());
var gasHelper = GasHelpers.of(node);
// we install family-0.0.1-SNAPSHOT.jar in the node: our account will pay
TransactionReference family = node
.addJarStoreTransaction(TransactionRequests.jarStore
(signer, // an object that signs with the payer's private key
account, // payer
nonce, // payer's nonce: relevant since this is not a call to a @View method!
chainId, // chain identifier: relevant since this is not a call to a @View method!
BigInteger.valueOf(300_000), // gas limit: enough for this very small jar
gasHelper.getSafeGasPrice(), // gas price: at least the current gas price of the network
takamakaCode, // class path for the execution of the transaction
Files.readAllBytes(familyPath), // bytes of the jar to install
takamakaCode)); // dependencies of the jar that is being installed
// we increase our copy of the nonce, ready for further
// transactions having the account as payer
nonce = nonce.add(ONE);
// call the constructor of Person and store in albert the new object in blockchain
StorageReference albert = node.addConstructorCallTransaction
(TransactionRequests.constructorCall
(signer, // an object that signs with the payer's private key
account, // payer
nonce, // payer's nonce: relevant since this is not a call to a @View method!
chainId, // chain identifier: relevant since this is not a call to a @View method!
BigInteger.valueOf(50_000), // gas limit: enough for a small object
panarea(gasHelper.getSafeGasPrice()), // gas price, in panareas
family, // class path for the execution of the transaction
// constructor Person(String,int,int,int)
ConstructorSignatures.of(PERSON, StorageTypes.STRING, INT, INT, INT),
// actual arguments
StorageValues.stringOf("Albert Einstein"), StorageValues.intOf(14),
StorageValues.intOf(4), StorageValues.intOf(1879)
));
System.out.println("New object allocated at " + albert);
// we increase our copy of the nonce, ready for further
// transactions having the account as payer
nonce = nonce.add(ONE);
}
}
private static KeyPair loadKeys(Node node, StorageReference account) throws Exception {
return Accounts.of(account, "..")
.keys("chocolate", SignatureHelpers.of(node).signatureAlgorithmFor(account));
}
}
The new transaction is due to the
addConstructorCallTransaction()
method, that expands the node with a new transaction that calls
a constructor. We use our account as payer for the transaction, hence we sign
the request with its private key.
The class path includes family-0.0.1.jar
and its dependency io-takamaka-code
.
The signature of the constructor specifies that we are referring to the second
constructor of Person
, the one that assumes null
as parents. The actual parameters
are provided; they must be instances of the io.hotmoka.node.api.values.StorageValue
interface.
We provide 50,000 units of gas, which should be enough for a constructor that just initializes a few fields.
We are ready to pay panarea(gasHelper.getSafeGasPrice())
units of coin for each unit of gas.
This price could have been specified simply as gasHelper.getSafeGasPrice()
but we used the static method io.hotmoka.helpers.Coin.panarea()
to generate a BigInteger
corresponding to the smallest coin unit of Hotmoka nodes, a panarea.
Namely, the following units of coin exist:
Value (in panas) | Exponent | Name | Short Name |
---|---|---|---|
1 | 1 | panarea | pana |
1,000 | 103 | alicudi | ali |
1,000,000 | 106 | filicudi | fili |
1,000,000,000 | 109 | stromboli | strom |
1,000,000,000,000 | 1012 | vulcano | vul |
1,000,000,000,000,000 | 1015 | salina | sali |
1,000,000,000,000,000,000 | 1018 | lipari | lipa |
1,000,000,000,000,000,000,000 | 1021 | moka | moka |
with corresponding static methods in io.hotmoka.helpers.Coin
.
Run Family2
from Eclipse.
You should see the following on the console:
New object allocated at
4e168218952bbfa96a85ca69c1a738d234d95174557f257601a2a3714a3a418f#0
The exact address will change at any run.
[See projects runs
and family_exported
inside the hotmoka_tutorial
repository]
In the previous section, we have created an object of class Person
in the store
of the node. Let us invoke the
toString()
method on that object now. For that, we can use the moka call
command,
specifying our Person
object as receiver.
In object-oriented languages, the receiver of a call to a non-
static
method is the object over which the method is executed, that is accessible asthis
inside the code of the method. In our case, we want to invokealbert.toString()
, wherealbert
is the object that we have created previously, hence the receiver of the call. The receiver can be seen as an implicit actual argument passed to a (non-static
) method.
$ moka call
24a92fcb1536caf360906a4a8f7744c1d54b7ccd1396cd1db85896dcfe39f73e#0
toString
--payer 5f705b7dc5869ae39db3bc80b7cd073c2bb55726706749138d16a4a9d0f01766#0
--uri ws://panarea.hotmoka.io
Please specify the password of the payer account: chocolate
Do you really want to spend up to 500000 gas units to call
public java.lang.String toString() ? [Y/N] Y
Total gas consumed: 0
for CPU: 0
for RAM: 0
for storage: 0
for penalty: 0
io.hotmoka.node.api.TransactionRejectedException:
cannot pass as argument a value of the non-exported type io.takamaka.family.Person
Command moka call
requires to specify, as its first arguments,
the receiver of the call (the Person
object created previously) and the name of the
method to call (toString
), followed by the actual arguments of the call, if any.
We use the switch --payer
to specify
the payer of the transaction (our account).
As you can see above, the result is deceiving.
This exception occurs when we try to pass the Person
object
as receiver of toString()
(the receiver is a particular case of an actual
argument). That object has been created in store, has escaped the node
and is available through its storage reference. However, it cannot be passed back
into the node as argument of a call since it is not exported. This is a security feature of
Hotmoka. Its reason is that the store of a node is public and can be read freely.
Everybody can see the objects created in the store of a Hotmoka node
and their storage references can be used to invoke their methods and modify their state.
This is true also for objects meant to be private state components of other objects and that
are not expected to be freely modifiable from outside the node. Because of this,
Hotmoka requires that classes, whose instances can be passed into the node as
arguments to methods or constructors,
must be annotated as @Exported
. This means that the programmer acknowledges the
use of these instances from outside the node.
Note that all objects can be passed, from inside the blockchain, as arguments to methods of code in the node. The above limitation applies to objects passed from outside the node only.
Let us modify the Person
class again:
...
import io.takamaka.code.lang.Exported;
...
@Exported
public class Person extends Storage {
...
}
Package the project family
and try again to call the toString
method:
$ cd family
$ mvn clean package
$ cd ..
$ moka install family/target/family-0.0.1.jar
--payer 5f705b7dc5869ae39db3bc80b7cd073c2bb55726706749138d16a4a9d0f01766#0
--uri ws://panarea.hotmoka.io
...
has been installed at
3d3a8e783941ac4c8ca03fc10e7967a37b9885c9ec4e006ea48eee21fa0a02c9
...
$ moka create
io.takamaka.family.Person
"Albert Einstein" 14 4 1879 null null
--payer 5f705b7dc5869ae39db3bc80b7cd073c2bb55726706749138d16a4a9d0f01766#0
--classpath 3d3a8e783941ac4c8ca03fc10e7967a37b9885c9ec4e006ea48eee21fa0a02c9
--uri ws://panarea.hotmoka.io
...
The new object has been allocated at
c9b88a105236b7400805731390bab5863f44b1d0b9f7d9ae7c057e3f0e832509#0
...
$ moka call
c9b88a105236b7400805731390bab5863f44b1d0b9f7d9ae7c057e3f0e832509#0
toString
--payer 5f705b7dc5869ae39db3bc80b7cd073c2bb55726706749138d16a4a9d0f01766#0
--uri ws://panarea.hotmoka.io
...
Albert Einstein (14/4/1879)
Total gas consumed: 19707
for CPU: 350
for RAM: 1360
for storage: 17997
for penalty: 0
This time, the correct answer Albert Einstein (14/4/1876)
appears on the screen.
In Ethereum, the only objects that can be passed, from outside the blockchain, as argument to method calls into blockchain are contracts. Namely, in Solidity it is possible to pass such objects as their untyped address that can only be cast to contract classes. Takamaka allows more, since any object can be passed as argument, not only contracts, as long as its class is annotated as
@Exported
. This includes all contracts since the classio.takamaka.code.lang.Contract
, that we will present later, is annotated as@Exported
and@Exported
is an inherited Java annotation.
We can do the same in code, instead of using the moka call
command. Namely, we can expand
the Family2
class seen before in order to run a further transaction, that calls toString
.
Copy then the following Family3
class inside the runs
package of the runs
project:
package runs;
import static io.hotmoka.helpers.Coin.panarea;
import static io.hotmoka.node.StorageTypes.INT;
import static java.math.BigInteger.ONE;
import java.math.BigInteger;
import java.net.URI;
import java.nio.file.Files;
import java.nio.file.Paths;
import java.security.KeyPair;
import io.hotmoka.crypto.api.SignatureAlgorithm;
import io.hotmoka.crypto.api.Signer;
import io.hotmoka.helpers.GasHelpers;
import io.hotmoka.helpers.SignatureHelpers;
import io.hotmoka.node.Accounts;
import io.hotmoka.node.ConstructorSignatures;
import io.hotmoka.node.MethodSignatures;
import io.hotmoka.node.StorageTypes;
import io.hotmoka.node.StorageValues;
import io.hotmoka.node.TransactionRequests;
import io.hotmoka.node.api.Node;
import io.hotmoka.node.api.requests.SignedTransactionRequest;
import io.hotmoka.node.api.transactions.TransactionReference;
import io.hotmoka.node.api.types.ClassType;
import io.hotmoka.node.api.values.StorageReference;
import io.hotmoka.node.api.values.StorageValue;
import io.hotmoka.node.remote.RemoteNodes;
public class Family3 {
// change this with your account's storage reference
private final static String
ADDRESS = "5f705b7dc5869ae39db3bc80b7cd073c2bb55726706749138d16a4a9d0f01766#0";
private final static ClassType PERSON = StorageTypes.classNamed("io.takamaka.family.Person");
public static void main(String[] args) throws Exception {
// the path of the user jar to install
var familyPath = Paths.get("../family_exported/target/family_exported-0.0.1.jar");
try (var node = RemoteNodes.of(URI.create("ws://panarea.hotmoka.io"), 20000)) {
// we get a reference to where io-takamaka-code-1.3.1.jar has been stored
TransactionReference takamakaCode = node.getTakamakaCode();
StorageReference manifest = node.getManifest();
// we get the signing algorithm to use for requests
SignatureAlgorithm signature = node.getConfig().getSignatureForRequests();
var account = StorageValues.reference(ADDRESS);
KeyPair keys = loadKeys(node, account);
// we create a signer that signs with the private key of our account
Signer<SignedTransactionRequest<?>> signer = signature.getSigner
(keys.getPrivate(), SignedTransactionRequest::toByteArrayWithoutSignature);
// we get the nonce of our account: we use the account itself as caller and
// an arbitrary nonce (ZERO in the code) since we are running
// a @View method of the account
BigInteger nonce = node
.runInstanceMethodCallTransaction(TransactionRequests.instanceViewMethodCall
(account, // payer
BigInteger.valueOf(50_000), // gas limit
takamakaCode, // class path for the execution of the transaction
MethodSignatures.NONCE, // method
account)).get() // receiver of the method call
.asBigInteger(__ -> new ClassCastException());
// we get the chain identifier of the network
String chainId = node
.runInstanceMethodCallTransaction(TransactionRequests.instanceViewMethodCall
(account, // payer
BigInteger.valueOf(50_000), // gas limit
takamakaCode, // class path for the execution of the transaction
MethodSignatures.GET_CHAIN_ID, // method
manifest)).get() // receiver of the method call
.asString(__ -> new ClassCastException());
var gasHelper = GasHelpers.of(node);
// we install family-0.0.1-SNAPSHOT.jar in the node: our account will pay
TransactionReference family = node
.addJarStoreTransaction(TransactionRequests.jarStore
(signer, // an object that signs with the payer's private key
account, // payer
nonce, // payer's nonce: relevant since this is not a call to a @View method!
chainId, // chain identifier: relevant since this is not a call to a @View method!
BigInteger.valueOf(300_000), // gas limit: enough for this very small jar
gasHelper.getSafeGasPrice(), // gas price: at least the current gas price of the network
takamakaCode, // class path for the execution of the transaction
Files.readAllBytes(familyPath), // bytes of the jar to install
takamakaCode)); // dependencies of the jar that is being installed
// we increase our copy of the nonce, ready for further
// transactions having the account as payer
nonce = nonce.add(ONE);
// call the constructor of Person and store in albert the new object in blockchain
StorageReference albert = node.addConstructorCallTransaction
(TransactionRequests.constructorCall
(signer, // an object that signs with the payer's private key
account, // payer
nonce, // payer's nonce: relevant since this is not a call to a @View method!
chainId, // chain identifier: relevant since this is not a call to a @View method!
BigInteger.valueOf(50_000), // gas limit: enough for a small object
panarea(gasHelper.getSafeGasPrice()), // gas price, in panareas
family, // class path for the execution of the transaction
// constructor Person(String,int,int,int)
ConstructorSignatures.of(PERSON, StorageTypes.STRING, INT, INT, INT),
// actual arguments
StorageValues.stringOf("Albert Einstein"), StorageValues.intOf(14),
StorageValues.intOf(4), StorageValues.intOf(1879)
));
// we increase our copy of the nonce, ready for further
// transactions having the account as payer
nonce = nonce.add(ONE);
StorageValue s = node.addInstanceMethodCallTransaction
(TransactionRequests.instanceMethodCall
(signer, // an object that signs with the payer's private key
account, // payer
nonce, // payer's nonce: relevant since this is not a call to a @View method!
chainId, // chain identifier: relevant since this is not a call to a @View method!
BigInteger.valueOf(50_000), // gas limit: enough for a small object
panarea(gasHelper.getSafeGasPrice()), // gas price, in panareas
family, // class path for the execution of the transaction
// method to call: String Person.toString()
MethodSignatures.ofNonVoid(PERSON, "toString", StorageTypes.STRING),
// receiver of the method to call
albert
)).get();
// we increase our copy of the nonce, ready for further
// transactions having the account as payer
nonce = nonce.add(ONE);
// print the result of the call
System.out.println(s);
}
}
private static KeyPair loadKeys(Node node, StorageReference account) throws Exception {
return Accounts.of(account, "..").keys
("chocolate", SignatureHelpers.of(node).signatureAlgorithmFor(account));
}
}
The interesting part is the call to addInstanceMethodCallTransaction()
at the end of the previous listing.
It requires to resolve method Person.toString()
using albert
as receiver
(the type StorageTypes.STRING
is the return type of the method) and
to run the resolved method. It stores the result in
s
, that subsequently prints on the standard output.
Run class Family3
from Eclipse. You will obtain the same result as with moka call
:
Albert Einstein (14/4/1879)
As we have shown, method addInstanceMethodCallTransaction()
can be used to
invoke an instance method on an object in the store of the node. This requires some
clarification. First of all, note that the signature of the method to
call is resolved and the resolved method is then invoked. If
such resolved method is not found (for instance, if we tried to call tostring
instead
of toString
), then addInstanceMethodCallTransaction()
would end up in
a failed transaction. Moreover, the usual resolution mechanism of Java methods applies.
If, for instance, we invoked
MethodSignatures.of(StorageTypes.OBJECT, "toString", StorageTypes.STRING)
instead of
MethodSignatures.of(PERSON, "toString", StorageTypes.STRING)
,
then method toString
would have be resolved from the run-time class of
albert
, looking for the most specific implementation of toString()
,
up to the java.lang.Object
class, which would anyway end up in
running Person.toString()
.
Method addInstanceMethodCallTransaction()
can be used to invoke instance
methods with parameters. If a toString(int)
method existed in Person
,
then we could call it and pass 2019 as its argument, by writing:
StorageValue s = node.addInstanceMethodCallTransaction
(TransactionRequests.instanceMethodCall(
...
// method to call: String Person.toString(int)
MethodSignatures.of(PERSON, "toString", StorageTypes.STRING, StorageTypes.INT),
// receiver of the method to call
albert,
// actual argument(s)
StorageValues.intOf(2019)
)).get();
where we have added the formal parameter StorageTypes.INT
and the actual argument StorageValues.intOf(2019)
. Note that method calls yields
an optional value in Hotmoka, since methods returning void
actually return non value.
Consequently, we need the final call to get()
above to get the actual
value returned by the method.
Method addInstanceMethodCallTransaction()
cannot be used to call a static
method. For that, use addStaticMethodCallTransaction()
instead, that accepts
a request similar to that for addInstanceMethodCallTransaction()
, but without a receiver.
We have seen how to invoke a constructor of a class to build an object in
the store of a node or to invoke a method on an object in the store of a node. Both constructors and
methods can receive arguments. Constructors yield a reference to a new
object, freshly allocated; methods might yield a returned value, if they are
not declared as void
. This means that there is a bidirectional
exchange of data from outside the node to inside it, and back. But not any
kind of data can be exchanged:
- The values that can be exchanged from inside the node to outside the node are called storage values.
- The values that can be exchanged from outside the node to
inside the node are the same storage values as above, with the extra constraint
that objects must belong to an
@Exported
class.
The set of storage values is the union of
- primitive values of Java (characters, bytes, shorts, integers, longs, floats, doubles and booleans);
- reference values whose class extends
io.takamaka.code.lang.Storage
(that is, storage objects); null
;- a few special reference values:
java.math.BigInteger
s andjava.lang.String
s.
Storage values cross the
node's boundary inside wrapper objects. For instance the integer 2019
is first wrapped into new IntValue(2019)
and then passed
as a parameter to a method or constructor. In our previous example,
when we called Person.toString()
, the result s
was actually a wrapper
of a java.lang.String
object. Boxing and unboxing into/from wrapper objects
is automatic: our class Person
does not show that machinery.
What should be retained of the above discussion is that constructors and
methods of Takamaka classes, if we want them to be called from outside the
node, must receive storage values as parameters and must return storage
values (if they are not void
methods). A method that expects a parameter of
type java.util.HashSet
, for instance, can be defined and called
from Takamaka code, inside the node, but cannot be called from outside the node,
such as, for instance, from the moka
tool or from our Family
class. The same
occurs if the method returns a java.util.HashSet
.
We conclude this section with a formal definition of storage objects.
We have already said that storage objects can be kept in the store of a node
and their class must extend
io.takamaka.code.lang.Storage
. But there are extra constraints. Namely,
fields of a storage objects are part of the representation of such
objects and must, themselves, be kept in store. Hence, a storage object:
- has a class that extends (directly or indirectly)
io.takamaka.code.lang.Storage
, and - is such that all its fields hold storage values (primitives, storage objects,
null
, ajava.math.BigInteger
or ajava.lang.String
).
Note that the above conditions hold for the class Person
defined above. Instead,
the following are examples of what is not allowed in a field of a storage object:
- arrays
- collections from
java.util.*
We will see later how to overcome these limitations.
Again, we stress that such limitations only apply to storage objects. Other objects, that needn't be kept in the store of a node but are useful for the implementation of Takamaka code, can be defined in a completely free way and used in code that runs in the node.
We have executed transactions on a Hotmoka node with methods
addJarStoreTransaction()
, addConstructorCallTransaction()
and addInstanceMethodCallTransaction()
. These methods, whose name
starts with add
,
are synchronous, meaning that they block until the transaction is
executed (or fails). If they are invoked on a node with a notion of
commit, such as a blockchain, they guarantee to block until
the transaction is actually committed.
In many cases, when we immediately need the result of a transaction
before continuing with the execution of the
subsequent statements,
these methods are the right choice. In many other cases, however,
it is unnecessary to wait until the transaction has completed
its execution and has been committed. In those cases, it can
be faster to execute a transaction through a method whose name
starts with post
, such as
postJarStoreTransaction()
, postConstructorCallTransaction()
or postInstanceMethodCallTransaction()
. These methods are called
asynchronous, since they terminate
immediately, without waiting for the outcome of the transaction
they trigger. Hence they cannot return their outcome immediately
and return a future
instead, whose get()
value, if and when invoked, will block
until the outcome of the transaction is finally available.
For instance, instead of the inefficient:
StorageValue s = node.addInstanceMethodCallTransaction
(TransactionRequests.instanceMethodCall(
signer,
account,
nonce,
chainId,
BigInteger.valueOf(50_000),
panarea(gasHelper.getSafeGasPrice()),
family,
MethodSignatures.of(PERSON, "toString", StorageTypes.STRING),
albert
)).get();
// code that does not use s
// .....
one can write the more efficient:
MethodFuture future = node.postInstanceMethodCallTransaction
(TransactionRequests.instanceMethodCall(
signer,
account,
nonce,
chainId,
BigInteger.valueOf(50_000),
panarea(gasHelper.getSafeGasPrice()),
family,
MethodSignatures.of(PERSON, "toString", StorageTypes.STRING),
albert
));
// code that does not use s
// .....
// the following will be needed only if s is used later
StorageValue s = future.get().get();
where the first get()
belongs to the future and is a blocking call
that suspends until the method has been executed, and the second
get()
extracts the value from the optional returned by Hotmoka's
API for calling methods.
There is a third way to execute a transaction. Namely, calls to methods
annotated as @View
can be performed through the
runInstanceMethodCallTransaction()
(for instance methods) and
runStaticMethodCallTransaction()
(for static methods).
As we have hinted before, these executions are performed
locally, on the node they are addressed to, and do not add a transaction
that must be replicated in each node of the network, for consensus, and
that costs gas for storage.
These executions are free and do not require a correct nonce, signature,
or chain identifier, which is a great simplification.
A contract is a legal agreement among two or more parties. A good contract should be unambiguous, since otherwise its interpretation could be questioned or misunderstood. A legal system normally enforces the validity of a contract. In the context of software development, a smart contract is a piece of software with deterministic behavior, whose semantics should be clear and enforced by a consensus system. Blockchains provide the perfect environment where smart contracts can be deployed and executed, since their (typically) non-centralized nature reduces the risk that a single party overthrows the rules of consensus, by providing for instance a non-standard semantics for the code of the smart contract.
Contracts are allowed to hold and transfer money to other contracts. Hence,
traditionally, smart contracts are divided into those that hold money
but have no code (externally owned accounts), and those that,
instead, contain code (smart contracts).
The formers are typically controlled by an external agent (a wallet,
a human or a software application, on his behalf)
while the latters are typically controlled by their code.
Takamaka implements both alternatives as instances of the abstract library class
io.takamaka.code.lang.Contract
(inside io-takamaka-code
). That class extends
io.takamaka.code.lang.Storage
, hence its instances can be kept in the store
of the node. Moreover, that class is annotated as @Exported
, hence nodes can receive
references to contract instances from the outside world.
The Takamaka library defines subclasses of io.takamaka.code.lang.Contract
, that
we will investigate later. Programmers can define their own subclasses as well.
This chapter presents a simple smart contract, whose goal is to enforce a Ponzi investment scheme: each investor pays back the previous investor, with at least a 10% reward; as long as new investors keep coming, each investor gets at least a 10% reward; the last investor, instead, will never see his/her investment back. The contract has been inspired by a similar Ethereum contract, shown at page 145 of [IyerD08].
We will develop the contract in successive versions, in order to highlight the meaning of different language features of Takamaka.
[See project ponzi_simple
inside the hotmoka_tutorial
repository]
Create a new Maven Java 11 (or later) project in Eclipse, named ponzi
.
You can do this by duplicating the project family
(make sure to store
the project inside the hotmoka_tutorial
directory, as a sibling of family
and
runs
). Use the following pom.xml
:
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>io.hotmoka.tutorial</groupId>
<artifactId>ponzi_annotations</artifactId>
<version>0.0.1</version>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.release>11</maven.compiler.release>
</properties>
<dependencies>
<dependency>
<groupId>io.hotmoka</groupId>
<artifactId>io-takamaka-code</artifactId>
<version>1.3.1</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.11.0</version>
</plugin>
</plugins>
</build>
</project>
and the following module-info.java
:
module ponzi {
requires io.takamaka.code;
}
Create package io.takamaka.ponzi
inside src/main/java
and add
the following SimplePonzi.java
source inside that package:
package io.takamaka.ponzi;
import static io.takamaka.code.lang.Takamaka.require;
import java.math.BigInteger;
import io.takamaka.code.lang.Contract;
public class SimplePonzi extends Contract {
private final BigInteger _10 = BigInteger.valueOf(10L);
private final BigInteger _11 = BigInteger.valueOf(11L);
private Contract currentInvestor;
private BigInteger currentInvestment = BigInteger.ZERO;
public void invest(Contract investor, BigInteger amount) {
// new investments must be at least 10% greater than current
BigInteger minimumInvestment = currentInvestment.multiply(_11).divide(_10);
require(amount.compareTo(minimumInvestment) >= 0,
() -> "you must invest at least " + minimumInvestment);
// document new investor
currentInvestor = investor;
currentInvestment = amount;
}
}
This code is only the starting point of our discussion and is not functional yet. The real final version of this contract will appear at the end of this section.
Look at the code of SimplePonzi.java
above. The contract has a single
method, named invest
. This method lets a new investor
invest
a given amount
of coins. This amount must be at least 10% higher than
the current investment. The expression amount.compareTo(minimumInvestment) >= 0
is a comparison between two Java BigInteger
s and should be read as the
more familiar amount >= minimumInvestment
: the latter cannot be
written in this form, since Java does not allow comparison operators
to work on reference types.
The static method io.takamaka.code.lang.Takamaka.require()
is used to require
some precondition to hold. The require(condition, message)
call throws an
exception if condition
does not hold, with the given message
.
If the new investment is at least 10% higher than the current one, it will be
saved in the state of the contract, together with the new investor.
You might wonder why we have written
require(..., () -> "you must invest at least " + minimumInvestment)
instead of the simplerrequire(..., "you must invest at least " + minimumInvestment)
. Both are possible and semantically almost identical. However, the former uses a lambda expression that computes the string concatenation lazily, only if the message is needed; the latter always computes the string concatenation, instead. Hence, the first version consumes less gas, in general, and is consequently preferrable. This technique simulates lazy evaluation in a language, like Java, that has only eager evaluation for actual arguments. This technique has been used since years, for instance in JUnit assertions.
[See project ponzi_annotations
inside the hotmoka_tutorial
repository]
The previous code of SimplePonzi.java
is unsatisfactory, for at least two
reasons, that we will overcome in this section:
- Any contract can call
invest()
and let anotherinvestor
contract invest in the game. This is against our intuition that each investor decides when and how much he (himself) decides to invest. - There is no money transfer. Anybody can call
invest()
, with an arbitraryamount
of coins. The previous investor does not get the investment back when a new investor arrives since, well, he never really invested anything.
Let us rewrite SimplePonzi.java
in the following way:
package io.takamaka.ponzi;
import static io.takamaka.code.lang.Takamaka.require;
import java.math.BigInteger;
import io.takamaka.code.lang.Contract;
import io.takamaka.code.lang.FromContract;
public class SimplePonzi extends Contract {
private final BigInteger _10 = BigInteger.valueOf(10L);
private final BigInteger _11 = BigInteger.valueOf(11L);
private Contract currentInvestor;
private BigInteger currentInvestment = BigInteger.ZERO;
public @FromContract void invest(BigInteger amount) {
// new investments must be at least 10% greater than current
BigInteger minimumInvestment = currentInvestment.multiply(_11).divide(_10);
require(amount.compareTo(minimumInvestment) >= 0,
() -> "you must invest at least " + minimumInvestment);
// document new investor
currentInvestor = caller();
currentInvestment = amount;
}
}
The difference with the previous version of SimplePonzi.java
is that the investor
argument of invest()
has disappeared.
At its place, invest()
has been annotated as @FromContract
. This annotation
restricts the possible uses of method invest()
. Namely, it can
only be called from a contract object c or from an external wallet,
with a paying contract c, that pays for a transaction that runs
invest()
. It cannot, instead, be called from
the code of a class that is not a contract.
The instance of contract c is available, inside
invest()
, as caller()
. This is, indeed, saved, in the above code,
into currentInvestor
.
The annotation @FromContract
can be applied to both methods and constructors.
If a @FromContract
method is redefined, the redefinitions must also be
annotated as @FromContract
.
Method
caller()
can only be used inside a@FromContract
method or constructor and refers to the contract that called that method or constructor or to the contract that pays for a call, from a wallet, to the method or constructor. Hence, it will never yieldnull
. If a@FromContract
method or constructor calls another method m, then thecaller()
of the former is not available inside m, unless the call occurs, syntactically, onthis
, in which case thecaller()
is preserved. By syntactically, we mean through expressions such asthis.m(...)
orsuper.m(...)
.
The use of @FromContract
solves the first problem: if a contract invests in the game,
then it is the caller of invest()
. However, there is still no money
transfer in this version of SimplePonzi.java
. What we still miss is to require
the caller of invest()
to actually pay for the amount
units of coin.
Since @FromContract
guarantees that the caller of invest()
is a contract and since
contracts hold money, this means that the caller contract of invest()
can be charged amount
coins at the moment of calling invest()
.
This can be achieved with the @Payable
annotation, that we apply to invest()
:
package io.takamaka.ponzi;
import static io.takamaka.code.lang.Takamaka.require;
import java.math.BigInteger;
import io.takamaka.code.lang.Contract;
import io.takamaka.code.lang.FromContract;
import io.takamaka.code.lang.Payable;
public class SimplePonzi extends Contract {
private final BigInteger _10 = BigInteger.valueOf(10L);
private final BigInteger _11 = BigInteger.valueOf(11L);
private Contract currentInvestor;
private BigInteger currentInvestment = BigInteger.ZERO;
public @Payable @FromContract void invest(BigInteger amount) {
// new investments must be at least 10% greater than current
BigInteger minimumInvestment = currentInvestment.multiply(_11).divide(_10);
require(amount.compareTo(minimumInvestment) >= 0,
() -> "you must invest at least " + minimumInvestment);
// document new investor
currentInvestor = caller();
currentInvestment = amount;
}
}
When a contract calls invest()
now, that contract will be charged amount
coins,
automatically. This means tha these coins will be automatically transferred to the
balance of the instance of SimplePonzi
that receives the call.
If the balance of the calling contract is too low for that, the call
will be automatically rejected with an insufficient funds exception. The caller
must be able to pay for both amount
and the gas needed to run invest()
. Hence,
he must hold a bit more than amount
coins at the moment of calling invest()
.
The
@Payable
annotation can only be applied to a method or constructor that is also annotated as@FromContract
. If a@Payable
method is redefined, the redefinitions must also be annotated as@Payable
. A@Payable
method or constructor must have a first argument of typeint
,long
orjava.math.BigInteger
, depending on the amount of coins that the programmer allows one to transfer at call time. The name of that argument is irrelevant, but we will keep usingamount
for it.
[See project ponzi_payable
inside the hotmoka_tutorial
repository]
The SimplePonzi.java
class is not ready yet. Namely, the code
of that class specifies that investors have to pay
an always increasing amount of money to replace the current investor.
However, in the current version of the code,
the replaced investor never gets his previous investment back, plus the 10% award
(at least): money keeps flowing inside the SimplePonzi
contract and remains
stuck there, forever. The code needs an apparently simple change: just add a single statement
before the update of the new current investor. That statement should send
amount
units of coin back to currentInvestor
, before it gets replaced:
// document new investor
if (currentInvestor != null)
currentInvestor.receive(amount);
currentInvestor = caller();
currentInvestment = amount;
In other words, a new investor calls invest()
and pays amount
coins to
the SimplePonzi
contract (since invest()
is @Payable
); then
this SimplePonzi
contract transfers the same amount
of coins to pay back the
previous investor. Money flows through the SimplePonzi
contract but
does not stay there for long.
The problem with this simple line of code is that it does not compile.
There is no receive()
method in io.takamaka.code.lang.Contract
:
a contract can receive money only through calls to its @Payable
constructors and methods. Since currentInvestor
is, very generically,
an instance of Contract
, that has no @Payable
methods,
there is no method
that we can call here for sending money back to currentInvestor
.
This limitation is a deliberate design choice of Takamaka.
Solidity programmers will find this very different from what happens in Solidity contracts. Namely, these always have a fallback function that can be called for sending money to a contract. A problem with Solidity's approach is that the balance of a contract is not fully controlled by its payable methods, since money can always flow in through the fallback function (and also in other, more surprising ways). This led to software bugs, when a contract found itself richer then expected, which violated some (wrong) invariants about its state. For more information, see page 181 of [AntonopoulosW19] (Unexpected Ether).
So how do we send money back to currentInvestor
? The solution is to
restrict the kind of contracts that can participate to the Ponzi scheme.
Namely, we limit the game to contracts that implement class
io.takamaka.code.lang.PayableContract
, a subclass of io.takamaka.code.lang.Contract
that, yes, does have a payable receive()
method. This is not really a restriction,
since the typical players of our Ponzi contract are externally
owned accounts, that are instances of PayableContract
.
Let us hence apply the following small changes to our SimplePonzi.java
class:
- The type of
currentInvestment
must be restricted toPayableContract
. - The
invest()
method must be callable byPayableContract
s only. - The return value of
caller()
must be cast toPayableContract
, which is safe because of point 2 above.
The result is the following:
package io.takamaka.ponzi;
import static io.takamaka.code.lang.Takamaka.require;
import java.math.BigInteger;
import io.takamaka.code.lang.Contract;
import io.takamaka.code.lang.FromContract;
import io.takamaka.code.lang.Payable;
import io.takamaka.code.lang.PayableContract;
public class SimplePonzi extends Contract {
private final BigInteger _10 = BigInteger.valueOf(10L);
private final BigInteger _11 = BigInteger.valueOf(11L);
private PayableContract currentInvestor;
private BigInteger currentInvestment = BigInteger.ZERO;
public @Payable @FromContract(PayableContract.class) void invest(BigInteger amount) {
// new investments must be at least 10% greater than current
BigInteger minimumInvestment = currentInvestment.multiply(_11).divide(_10);
require(amount.compareTo(minimumInvestment) >= 0,
() -> "you must invest at least " + minimumInvestment);
// document new investor
if (currentInvestor != null)
currentInvestor.receive(amount);
currentInvestor = (PayableContract) caller();
currentInvestment = amount;
}
}
Note the use of @FromContract(PayableContract.class)
in the code above:
a method or constructor
annotated as @FromContract(C.class)
can only be called by a contract whose class
is C
or a subclass of C
. Otherwise, a run-time exception will occur.
[See project ponzi_view
inside the hotmoka_tutorial
repository]
Our SimplePonzi.java
code can still be improved. As it is now,
an investor must call invest()
and be ready to pay a sufficiently
large amount
of coins to pay back and replace the previous investor.
How much is large actually large enough? Well, it depends on the
current investment. But that information is kept inside the contract
and there is no easy way to access it from outside.
An investor can only try with something that looks large enough,
running a transaction that might end up in two scenarios,
both undesirable:
- The amount invested was actually large enough, but larger than needed: the investor invested more than required in the Ponzi scheme, taking the risk that no one will ever invest more and pay him back.
- The amount invested might not be enough: the
require()
function will throw an exception that makes the transaction runninginvest()
fail. The investment will not be transferred to theSimplePonzi
contract, but the investor will be penalized by charging him all the gas provided for the transaction. This is unfair since, after all, the investor had no way to know that the proposed investment was not large enough.
Hence, it would be nice and fair to provide investors with a way to access
the value in the currentInvestment
field.
This is actually a piece of cake: just add
this method to SimplePonzi.java
:
public BigInteger getCurrentInvestment() {
return currentInvestment;
}
This solution is perfectly fine but can be improved. Written this way,
an investor that wants to call getCurrentInvestment()
must run a
Hotmoka transaction through the addInstanceMethodCallTransaction()
method of the node, creating a new transaction that ends up in
the store of the node. That transaction will cost gas, hence its side-effect will
be to reduce the balance of the calling investor. But the goal of the caller
was just to access information in the store of the node, not to modify the store through
side-effects. The balance reduction for the caller is, indeed, the only
side-effect of that call! In cases like this, Takamaka allows one to
specify that a method is expected to have no side-effects on the visible
state of the node, but for the change of the balance of the caller.
This is possible through the @View
annotation. Import that
class in the Java source and edit the declaration of getCurrentInvestment()
,
as follows:
import io.takamaka.code.lang.View;
...
public @View BigInteger getCurrentInvestment() {
return currentInvestment;
}
An investor can now call that method through another API method of the Hotmoka
nodes, called runInstanceMethodCallTransaction()
, that does not expand the
store of the node, but yields the response of the transaction, including the
returned value of the call. If method
getCurrentInvestment()
had side-effects beyond that on the balance of
the caller, then the execution will fail with a run-time exception.
Note that the execution of a @View
method still requires gas,
but that gas is given back at the end of the call.
The advantage of @View
is hence that of allowing the execution
of getCurrentInvestment()
for free and without expanding the store of the node
with useless transactions, that do not modify its state. Moreover,
transactions run through runInstanceMethodCallTransaction()
do not need
a correct nonce, chain identifier or signature,
hence any constant value can be used for them.
This simplifies the call. For the same reason, transactions run
through runInstanceMethodCallTransaction()
do not count for the computation of
the nonce of the caller.
The annotation
@View
is checked at run time if a transaction calls the@View
method from outside the blockchain, directly. It is not checked if, instead, the method is called indirectly, from other Takamaka code. The check occurs at run time, since the presence of side-effects in computer code is undecidable. Future versions of Takamaka might check@View
at the time of installing a jar in a node, as part of bytecode verification. That check can only be an approximation of the run-time check.
If a
@View
method is called through themoka call
command, themoka
tool will automatically perform arunInstanceMethodCallTransaction()
internally, to spare gas.
Figure 23 shows the hierarchy of Takamaka contract classes.
The topmost abstract class io.takamaka.code.lang.Contract
extends io.takamaka.code.lang.Storage
, since contracts are meant to be
stored in a node (as are other classes that are not contracts,
such as our first Person
example).
Programmers typically extend Contract
to define their own contracts.
This is the case, for instance, of our SimplePonzi
class.
Class Storage
provides a caller()
final protected method that can be called inside
@FromContract
methods and constructors, to access the calling contract.
Class Contract
provides a final @View
method balance()
that
can be used to access the private balance
field of the contract.
Note that class Contract
is annotated with the inherited annotation @Exported
,
hence contracts, such as instances of SimplePonzi
, can be receivers of calls
from outside the node and can be passed as arguments to calls from outside the node.
Instances of Storage
are not normally @Exported
, unless their class
is explicitly annotated as @Exported
, as we did for Person
.
Figure 23. The hierarchy of contract classes.
The abstract subclass PayableContract
is meant for contracts that
can receive coins from other contracts, through their final
receive()
methods. Its concrete subclass named ExternallyOwnedAccount
is
a payable contract that can be used to pay for a transaction.
Such accounts are typically controlled by humans, through a wallet, but can be
subclassed and instantiated freely in Takamaka code. Their constructors
allow one to build an externally owned account and fund it with an initial
amount of coins. As we have seen in sections
Installation of the Jar in a Hotmoka Node,
Creation of an Object of our Program and
Calling a Method on an Object in a Hotmoka Node,
the methods of Hotmoka nodes that start a transaction require to specify a payer
for that transaction. Such a payer is required to be an instance of
ExternallyOwnedAccount
, or an exception will be thrown. In our previous examples,
we have used, as payer, an account created by the moka create-account
command,
that is an instance of io.takamaka.code.lang.ExternallyOwnedAccount
.
ExternallyOwnedAccount
s have a private field nonce
that can be accessed through
the public @View
method nonce()
: it yields a BigInteger
that specifies the next nonce to use for the next transaction having that
account as caller. This nonce gets automatically increased after each such transaction.
Instances of ExternallyOwnedAccount
s hold their public key in their
private publicKey
field, as a Base64-encoded string,
that can be accessed through the publicKey()
method.
That key is used to verify the signature of the transactions
having that account as caller. As we will see later, there is a default signature
algorithms for transactions and that is what ExternallyOwnedAccount
s use.
However, it is possible to require a specific signature algorithm, that overrides the default
for the node. For that, it is enough to instantiate classes ExternallyOwnedAccountSHA256DSA
,
ExternallyOwnedAccountED25519
, ExternallyOwnedAccountQTESLA1
or ExternallyOwnedAccountQTESLA3
. The latter two use a
quantum-resistant signature algorithm
(see Signatures and Quantum-Resistance
for more details). This means that it is possible
to mix many signature algorithms for signing transactions inside the same Hotmoka node,
as we will show later.
[See project redgreen
inside the hotmoka_tutorial
repository]
The Contract
class of Takamaka has a double balance. Namely, it has
a normal (green) balance and an extra, stable red balance.
That is, contracts have the ability to keep an extra red balance,
that should be a stable coin, if the underlying blockchain supports
that feature.
For instance, the following contract allows payees to
register by calling the addAsPayee()
method.
Moreover, the contract distributes green coins sent to
the distributeGreen()
method and red coins sent to the
distributeRed()
method, sending the rest to the owner of the
contract (in general, there is a rest because of arithmetic
approximation). Hence, the contract holds coins only temporarily.
The @RedPayable
annotation states that the
distributeRed()
method can receive red coins when called.
Class StorageLinkedList
holds a list of contracts and will be discussed in the
next chapter.
package io.takamaka.redgreen;
import java.math.BigInteger;
import io.takamaka.code.lang.Contract;
import io.takamaka.code.lang.FromContract;
import io.takamaka.code.lang.Payable;
import io.takamaka.code.lang.PayableContract;
import io.takamaka.code.lang.RedPayable;
import io.takamaka.code.util.StorageLinkedList;
import io.takamaka.code.util.StorageList;
public class Distributor extends Contract {
private final StorageList<PayableContract> payees = new StorageLinkedList<>();
private final PayableContract owner;
public @FromContract(PayableContract.class) Distributor() {
owner = (PayableContract) caller();
}
public @FromContract(PayableContract.class) void addAsPayee() {
payees.add((PayableContract) caller());
}
public @Payable @FromContract void distributeGreen(BigInteger amount) {
int size = payees.size();
if (size > 0) {
BigInteger eachGets = amount.divide(BigInteger.valueOf(size));
payees.forEach(payee -> payee.receive(eachGets));
owner.receive(balance());
}
}
public @RedPayable @FromContract void distributeRed(BigInteger amount) {
int size = payees.size();
if (size > 0) {
BigInteger eachGets = amount.divide(BigInteger.valueOf(size));
payees.forEach(payee -> payee.receiveRed(eachGets));
owner.receiveRed(balanceRed());
}
}
}
This chapter presents the support library of the Takamaka language, that contains classes for simplifying the definition of smart contracts.
In Storage Types and Constraints on Storage Classes, we said that storage objects must obey to some constraints. The strongest of them is that their fields of reference type, in turn, can only hold storage objects. In particular, arrays are not allowed there. This can be problematic, in particular for contracts that deal with a dynamic, variable, potentially unbound number of other contracts.
Therefore, most classes of the support library deal with such constraints, by providing fixed or variable-sized collections that can be used in storage objects, since they are storage objects themselves. Such utility classes implement lists, arrays and maps and are consequently generally described as collections. They have the property of being storage classes, hence their instances can be kept in the store of a Hotmoka node, as long as only storage objects are added as elements of the collection. As usual with collections, these utility classes have generic type, to implement collections of arbitrary, but fixed types. This is not problematic, since Java (and hence Takamaka) allows generic types.
Lists are an ordered sequence of elements. In a list, it is typically possible to access the first element in constant time, while accesses to the nth element require to scan the list from its head and consequently have a cost proportional to n. Because of this, lists are not, in general, random-access data structures, whose nth element should be accessible in constant time. It is also possible to add an element at the beginning of a list, in constant time. The size of a list is not fixed: lists grow in size as more elements are added.
Java has many classes for implementing lists, all subclasses
of java.util.List<E>
. They can be used in Takamaka, but not as
fields of a storage class. For that,
Takamaka provides an implementation of lists with the storage class
io.takamaka.code.util.StorageLinkedList<E>
. Its instances are storage objects and
can consequently be held in fields of storage classes and
can be stored in a Hotmoka node, as long as only
storage objects are added to the list. Takamaka lists provide
constant-time access and addition to both ends of a list.
We refer to the JavaDoc of StorageLinkedList<E>
for a full description of its methods.
They include methods for adding elements to either ends of the list, for accessing and
removing elements, for iterating on a list and for building a Java array
E[]
holding the elements of a list.
Figure 24. The hierarchy of storage lists.
Figure 24 shows the hierarchy of the StorageLinkedList<E>
class.
It implements the interface StorageList<E>
, that defines the methods that modify a list.
That interface extends the interface StorageListView<E>
that, instead, defines the methods
that read data from a list, but do not modify it. This distinction between the read-only
interface and the modification interface is typical of all collection classes in the
Takamaka library, as we will see. For the moment, note that this distinction is useful
for defining methods snapshot()
and view()
. Both return a StorageListView<E>
but there
is an important difference between them. Namely, snapshot()
yields a frozen view of the list,
that cannot and will never be modified, also if the original list gets subsequently updated. Instead,
view()
yields a view of a list, that is, a read-only list that changes whenever
the original list changes and exactly in the same way: if an element is added to the original
list, the same automatically occurs to the view.
In this sense, a view is just a read-only alias of the original list.
Both methods can be useful to export data, safely,
from a node to the outside world, since both methods
return an @Exported
object without modification methods.
Method snapshot()
runs in linear time (in the length of the list)
while method view()
runs in constant time.
It might seem that
view()
is just an upwards cast to the interfaceStorageListView<E>
. This is wrong, since that method does much more. Namely, it applies the façade design pattern to provide a distinct list that lacks any modification method and implements a façade of the original list. To appreciate the difference to a cast, assume to have aStorageList<E> list
and to writeStorageListView<E> view = (StorageListView<E>) list
. This upwards cast will always succeed. Variableview
does not allow to call any modification method, since they are not in its typeStorageListView<E>
. But a downwards cast back toStorageList<E>
is enough to circumvent that constraint:StorageList<E> list2 = (StorageList<E>) view
. This way, the originallist
can be modified by modifyinglist2
and it would not be safe to exportview
, since it is a Trojan horse for the modification oflist
. With methodview()
, the problem does not arise, since the castStorageList<E> list2 = (StorageList<E>) list.view()
fails: methodview()
actually returns another list object without modification methods. The same is true for methodsnapshot()
that, moreover, yields a frozen view of the original list. These same considerations hold for the other Takamaka collections that we will see in this chapter.
Next section shows an example of use for StorageLinkedList
.
[See project ponzi_gradual
inside the hotmoka_tutorial
repository]
Consider our previous Ponzi contract again. It is somehow irrealistic, since
an investor gets its investment back in full. In a more realistic scenario,
the investor will receive the investment back gradually, as soon as new
investors arrive. This is more complex to program, since
the Ponzi contract must take note of all investors that invested up to now,
not just of the current one as in SimplePonzi.java
. This requires a
list of investors, of unbounded size. An implementation of this gradual
Ponzi contract is reported below and has been
inspired by a similar Ethereum contract from Iyer and Dannen,
shown at page 150 of [IyerD08].
Write its code inside package it.takamaka.ponzi
of
the ponzi
project, as a new class GradualPonzi.java
:
package io.takamaka.ponzi;
import static io.takamaka.code.lang.Takamaka.require;
import java.math.BigInteger;
import io.takamaka.code.lang.Contract;
import io.takamaka.code.lang.FromContract;
import io.takamaka.code.lang.Payable;
import io.takamaka.code.lang.PayableContract;
import io.takamaka.code.util.StorageLinkedList;
import io.takamaka.code.util.StorageList;
public class GradualPonzi extends Contract {
public final BigInteger MINIMUM_INVESTMENT = BigInteger.valueOf(1_000L);
/**
* All investors up to now. This list might contain the same investor many times,
* which is important to pay him back more than investors who only invested once.
*/
private final StorageList<PayableContract> investors = new StorageLinkedList<>();
public @FromContract(PayableContract.class) GradualPonzi() {
investors.add((PayableContract) caller());
}
public @Payable @FromContract(PayableContract.class) void invest(BigInteger amount) {
require(amount.compareTo(MINIMUM_INVESTMENT) >= 0,
() -> "you must invest at least " + MINIMUM_INVESTMENT);
BigInteger eachInvestorGets = amount.divide(BigInteger.valueOf(investors.size()));
investors.stream().forEachOrdered(investor -> investor.receive(eachInvestorGets));
investors.add((PayableContract) caller());
}
}
The constructor of GradualPonzi
is annotated as @FromContract
, hence
it can only be
called by a contract, that gets added, as first investor,
in the io.takamaka.code.util.StorageLinkedList
held in field investors
.
This list, that implements an unbounded list of objects,
is a storage object, as long as only storage objects are
added inside it. PayableContract
s are storage objects, hence
its use is correct here.
Subsequently, other contracts can invest by calling method invest()
.
A minimum investment is required, but this remains constant over time.
The amount
invested gets split by the number of the previous investors
and sent back to each of them. Note that Takamaka allows programmers to use
Java 8 lambdas and streams.
Old fashioned Java programmers, who don't feel at home with such treats,
can exploit the fact that
storage lists are iterable and replace the single-line forEachOrdered()
call
with a more traditional (but gas-hungrier):
for (PayableContract investor: investors)
investor.receive(eachInvestorGets);
It is instead highly discouraged to iterate the list as if it were an array. Namely, do not write
for (int pos = 0; pos < investors.size(); pos++)
investors.get(i).receive(eachInvestorGets);
since linked lists are not random-access data structures and the complexity of the
last loop is quadratic in the size of the list. This is not a novelty: the
same occurs with many traditional Java lists, that do not implement
java.util.RandomAccess
(a notable example is java.util.LinkedList
).
In Takamaka, code execution costs gas and
computational complexity does matter, more than in other programming contexts.
The GradualPonzi.java
class pays back previous investors immediately:
as soon as a new investor invests something, his investment gets
split and forwarded to all previous investors. This should
make Solidity programmers uncomfortable, since the same approach,
in Solidity, might lead to the infamous re-entrancy attack, when the
contract that receives his investment back has a
fallback function redefined in such a way to re-enter the paying contract and
re-execute the distribution of the investment.
As it is well known, such an attack has made some people rich and other
desperate. You can find more detail
at page 173 of [AntonopoulosW19].
Even if such a frightening scenario does not occur,
paying back previous investors immediately is discouraged in Solidity
also for other reasons. Namely, the contract that receives his
investment back might have a redefined fallback function that
consumes too much gas or does not terminate. This would hang the
loop that pays back previous investors, actually locking the
money inside the GradualPonzi
contract. Moreover, paying back
a contract is a relatively expensive operation in Solidity, even if the
fallback function is not redefined, and this cost is paid by the
new investor that called invest()
, in terms of gas. The cost is linear
in the number of investors that must be paid back.
As a solution to these problems, Solidity programmers do not pay previous
investors back immediately, but let the GradualPonzi
contract take
note of the balance of each investor, through a map.
This map is updated as soon as a new investor arrives, by increasing the
balance of every previous investor. The cost of updating the balances
is still linear in the number of previous investors, but it is cheaper
(in Solidity) than sending money back to each of them, which
requires expensive inter-contract calls that trigger new subtransactions.
With this technique, previous investors are
now required to withdraw their balance explicitly and voluntarily,
through a call to some function, typically called widthdraw()
.
This leads to the withdrawal pattern, widely used for writing Solidity contracts.
We have not used the withdrawal pattern in GradualPonzi.java
. In general,
there is no need for such pattern in Takamaka, at least not for simple
contracts like GradualPonzi.java
. The reason is that the
receive()
methods of a payable contract (corresponding to the
fallback function of Solidity) are final
in Takamaka and very cheap
in terms of gas. In particular, inter-contract calls are not
especially expensive in Takamaka, since they are just a method
invocation in Java bytecode (one bytecode instruction). They are not inner transactions.
They are actually cheaper than
updating a map of balances. Moreover, avoiding the widthdraw()
transactions
means reducing the overall number of transactions;
without using the map supporting the withdrawal pattern, Takamaka contracts
consume less gas and less storage.
Hence, the withdrawal pattern is both
useless in Takamaka and more expensive than paying back previous contracts immediately.
Let us play with the GradualPonzi
contract now.
Run, inside that ponzi
project, the command mvn package
.
A file ponzi-0.0.1.jar
should appear inside target
.
We can now start by installing that jar in the node:
$ cd hotmoka_tutorial # if not already there
$ moka install ponzi/target/ponzi-0.0.1.jar
--payer 5f705b7dc5869ae39db3bc80b7cd073c2bb55726706749138d16a4a9d0f01766#0
--uri ws://panarea.hotmoka.io
Please specify the password of the payer account: chocolate
Do you really want to spend up to 697300 gas units to install the jar [Y/N] Y
ponzi/target/ponzi-0.0.1.jar has been installed at
b8b37e6a848dd59ecd091194f234ff6409705a78bc0df774d5716d5d9c611b2e
We create two more accounts now, letting our first account pay:
$ moka create-account
10000000
--payer 5f705b7dc5869ae39db3bc80b7cd073c2bb55726706749138d16a4a9d0f01766#0
--uri ws://panarea.hotmoka.io
Please specify the password of the payer account: chocolate
Please specify the password of the new account: orange
Do you really want to spend up to 200000 gas units to create a new account [Y/N] Y
Total gas consumed: 44574
for CPU: 401
for RAM: 1352
for storage: 42821
for penalty: 0
A new account 12441d4a2f52e80f93e726040fbc364b75e7fedbef96887110df678794d791ea#0
has been created.
Its entropy has been saved into the file
"12441d4a2f52e80f93e726040fbc364b75e7fedbef96887110df678794d791ea#0.pem".
Please take note of the following passphrase of 36 words...
$ moka create-account
10000000
--payer 5f705b7dc5869ae39db3bc80b7cd073c2bb55726706749138d16a4a9d0f01766#0
--uri ws://panarea.hotmoka.io
Please specify the password of the payer account: chocolate
Please specify the password of the new account: apple
Do you really want to spend up to 200000 gas units to create a new account [Y/N] Y
Total gas consumed: 44574
for CPU: 401
for RAM: 1352
for storage: 42821
for penalty: 0
A new account eec01b6f22911f76dbd25bda6f850e9af9e8640a4530a46c1909f48b9c7976a3#0
has been created.
Its entropy has been saved into the file
"eec01b6f22911f76dbd25bda6f850e9af9e8640a4530a46c1909f48b9c7976a3#0.pem".
Please take note of the following passphrase of 36 words...
We let our first account create an instance of GradualPonzi
in the node now
and become the first investor of the contract:
$ moka create
io.takamaka.ponzi.GradualPonzi
--payer 5f705b7dc5869ae39db3bc80b7cd073c2bb55726706749138d16a4a9d0f01766#0
--classpath b8b37e6a848dd59ecd091194f234ff6409705a78bc0df774d5716d5d9c611b2e
--uri ws://panarea.hotmoka.io
Please specify the password of the payer account: chocolate
Do you really want to spend up to 500000 gas units to call
@FromContract(PayableContract.class) public GradualPonzi() ? [Y/N] Y
The new object has been allocated at
432d5d75ebb8bcc4f52fa2c6c5b988601b79bb6e1db72e7b591c902a638237d8#0
We let the other two players invest, in sequence, in the GradualPonzi
contract:
$ moka call
432d5d75ebb8bcc4f52fa2c6c5b988601b79bb6e1db72e7b591c902a638237d8#0
invest 5000
--payer 12441d4a2f52e80f93e726040fbc364b75e7fedbef96887110df678794d791ea#0
--uri ws://panarea.hotmoka.io
Please specify the password of the payer account: orange
Do you really want to spend up to 500000 gas units to call
public void invest(java.math.BigInteger) ? [Y/N] Y
$ moka call
432d5d75ebb8bcc4f52fa2c6c5b988601b79bb6e1db72e7b591c902a638237d8#0
invest 15000
--payer eec01b6f22911f76dbd25bda6f850e9af9e8640a4530a46c1909f48b9c7976a3#0
--uri ws://panarea.hotmoka.io
Please specify the password of the payer account: apple
Do you really want to spend up to 500000 gas units to call
public void invest(java.math.BigInteger) ? [Y/N] Y
We let the first player try to invest again in the contract, this time with a too small investment, which leads to an exception, since the code of the contract requires a minimum investment:
$ moka call
432d5d75ebb8bcc4f52fa2c6c5b988601b79bb6e1db72e7b591c902a638237d8#0
invest 500
--payer 5f705b7dc5869ae39db3bc80b7cd073c2bb55726706749138d16a4a9d0f01766#0
--uri ws://panarea.hotmoka.io
Please specify the password of the payer account: chocolate
Do you really want to spend up to 500000 gas units to call
public void invest(java.math.BigInteger) ? [Y/N] Y
io.hotmoka.node.api.TransactionException:
io.takamaka.code.lang.RequirementViolationException:
you must invest at least [email protected]:46
This exception states that a transaction failed because the last
investor invested less than 1000 units of coin. Note that the
exception message reports the cause (a require
failed)
and includes the source program line
of the contract where the exception occurred:
line 46 of GradualPonzi.java
, that is
require(amount.compareTo(MINIMUM_INVESTMENT) >= 0,
() -> "you must invest at least " + MINIMUM_INVESTMENT);
Finally, we can check the state of the contract:
$ moka state 432d5d75ebb8bcc4f52fa2c6c5b988601b79bb6e1db72e7b591c902a638237d8#0
--uri ws://panarea.hotmoka.io
This is the state of object
432d5d75ebb8bcc4f52fa2c6c5b988601b79bb6e1db72e7b591c902a638237d8#0
@ws://panarea.hotmoka.io
class io.takamaka.ponzi.GradualPonzi (from jar installed at
b8b37e6a848dd59ecd091194f234ff6409705a78bc0df774d5716d5d9c611b2e)
MINIMUM_INVESTMENT:java.math.BigInteger = 1000
investors:io.takamaka.code.util.StorageList
= 432d5d75ebb8bcc4f52fa2c6c5b988601b79bb6e1db72e7b591c902a638237d8#1
balance:java.math.BigInteger = 0 (inherited from io.takamaka.code.lang.Contract)
balanceRed:java.math.BigInteger = 0 (inherited from io.takamaka.code.lang.Contract)
You can see that the contract keeps no balance. Moreover, its investors
field is bound to an
object, whose state can be further investigated:
$ moka state 432d5d75ebb8bcc4f52fa2c6c5b988601b79bb6e1db72e7b591c902a638237d8#1
--uri ws://panarea.hotmoka.io
This is the state of object
432d5d75ebb8bcc4f52fa2c6c5b988601b79bb6e1db72e7b591c902a638237d8#1
@ws://panarea.hotmoka.io
class io.takamaka.code.util.StorageLinkedList (from jar installed at
ae8e94c789fb66784a6cc4208c797c80cbce2721292d636b963184fc266abe42)
first:io.takamaka.code.util.StorageLinkedList$Node
= 432d5d75ebb8bcc4f52fa2c6c5b988601b79bb6e1db72e7b591c902a638237d8#2
last:io.takamaka.code.util.StorageLinkedList$Node
= 5bdff31c6151ec5b381e8fc43e76efd382ab20d90b004597cc133b9a1619ea49#0
size:int = 3
As you can see, it is a StorageLinkedList
of size three, since it contains our three accounts that interacted with the
GradualPonzi
contract instance.
Arrays are an ordered sequence of elements, with constant-time access to such elements, both for reading and for writing. The size of the arrays is typically fixed, although there are programming languages with limited forms of dynamic arrays.
Java has native arrays, of type E[]
, where E
is the
type of the elements of the array. They can be used in Takamaka, but not
as fields of storage classes. For that, Takamaka provides class
io.takamaka.code.util.StorageTreeArray<E>
. Its instances are storage objects and
can consequently be held in fields of storage classes and
can be stored in the store of a Hotmoka node, as long as only
storage objects are added to the array. Their size is fixed and decided
at time of construction. Although we consider StorageTreeArray<E>
as the storage
replacement for Java arrays, it must be stated that the complexity of
accessing their elements is logarithmic in the size of the array, which is
a significant deviation from the standard definition of arrays. Nevertheless,
logarithmic complexity is much better than the linear complexity for
accessing elements of a StorageLinkedList<E>
that, instead, has the advantage
of being dynamic in size.
Figure 25. The hierarchy of storage arrays.
We refer to the JavaDoc of StorageTreeArray<E>
for a full list of its methods.
They include methods for adding elements, for accessing and
removing elements, for iterating on an array and for building a Java array
E[]
with the elements of a StorageTreeArray<E>
.
Figure 25 shows the hierarchy of the StorageTreeArray<E>
class.
It implements the interface StorageArray<E>
, that defines the methods that modify an array.
That interface extends the interface StorageArrayView<E>
that, instead, defines the methods
that read data from an array, but do not modify it. This distinction between the read-only
interface and the modification interface is identical to what we have seen for lists in the previous
sections. Arrays have methods snapshot()
and view()
as well, like lists. They yield @Exported
storage arrays, both in constant time. All constructors of the StorageTreeArray<E>
class require to specify the immutable
size of the array. Moreover, it is possible to specify a default value for the elements of the
array, that can be explicit or given as a supplier, possibly indexed.
Next section shows an example of use for StorageTreeArray<E>
.
[See project tictactoe
inside the hotmoka_tutorial
repository]
Tic-tac-toe is a game where two players place, alternately, a cross and a circle on a 3x3 board, initially empty. The winner is the player who places three crosses or three circles on the same row, column or diagonal. For instance, in Figure 26 the player of the cross wins.
Figure 26. Cross wins.
There are games that end up in a draw, when the board is full but nobody wins, as in Figure 27.
Figure 27. A draw.
A natural representation of the tic-tac-toe board is a two-dimensional array where indexes are distributed as shown in Figure 28.
Figure 28. A two-dimensional representation of the game.
This can be implemented as a StorageTreeArray<StorageTreeArray<Tile>>
, where Tile
is
a class that enumerates the three possible tiles (empty, cross, circle). This is
possible but overkill. It is simpler and cheaper (also in terms of gas)
to use the previous diagram as a conceptual representation of the board
shown to the users, but use, internally,
a one-dimensional array of nine tiles, distributed as in Figure 29.
This one-dimensional array can be implemented as a StorageTreeArray<Tile>
. There will be functions
for translating the conceptual representation into the internal one.
Figure 29. A linear representation of the game.
Create hence in Eclipse a new Maven Java 11 (or later) project named tictactoe
.
You can do this by duplicating the project family
(make sure to store
the project inside the hotmoka_tutorial
directory, as a sibling of family
, ponzi
and
runs
). Use the following pom.xml
:
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>io.hotmoka.tutorial</groupId>
<artifactId>family</artifactId>
<version>0.0.1</version>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.release>11</maven.compiler.release>
</properties>
<dependencies>
<dependency>
<groupId>io.hotmoka</groupId>
<artifactId>io-takamaka-code</artifactId>
<version>1.3.1</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.11.0</version>
</plugin>
</plugins>
</build>
</project>
and the following module-info.java
:
module tictactoe {
requires io.takamaka.code;
}
Create package io.takamaka.tictactoe
inside src/main/java
and add
the following TicTacToe.java
source inside that package:
package io.takamaka.tictactoe;
import static io.takamaka.code.lang.Takamaka.require;
import static java.util.stream.Collectors.joining;
import static java.util.stream.IntStream.rangeClosed;
import java.math.BigInteger;
import io.takamaka.code.lang.Contract;
import io.takamaka.code.lang.FromContract;
import io.takamaka.code.lang.Payable;
import io.takamaka.code.lang.PayableContract;
import io.takamaka.code.lang.Storage;
import io.takamaka.code.lang.View;
import io.takamaka.code.util.StorageArray;
import io.takamaka.code.util.StorageTreeArray;
public class TicTacToe extends Contract {
public class Tile extends Storage {
private final char c;
private Tile(char c) {
this.c = c;
}
@Override
public String toString() {
return String.valueOf(c);
}
private Tile nextTurn() {
return this == CROSS ? CIRCLE : CROSS;
}
}
private final Tile EMPTY = new Tile(' ');
private final Tile CROSS = new Tile('X');
private final Tile CIRCLE = new Tile('O');
private final StorageArray<Tile> board = new StorageTreeArray<>(9, EMPTY);
private PayableContract crossPlayer, circlePlayer;
private Tile turn = CROSS; // cross plays first
private boolean gameOver;
public @View Tile at(int x, int y) {
require(1 <= x && x <= 3 && 1 <= y && y <= 3,
"coordinates must be between 1 and 3");
return board.get((y - 1) * 3 + x - 1);
}
private void set(int x, int y, Tile tile) {
board.set((y - 1) * 3 + x - 1, tile);
}
public @Payable @FromContract(PayableContract.class)
void play(long amount, int x, int y) {
require(!gameOver, "the game is over");
require(1 <= x && x <= 3 && 1 <= y && y <= 3,
"coordinates must be between 1 and 3");
require(at(x, y) == EMPTY, "the selected tile is not empty");
var player = (PayableContract) caller();
if (turn == CROSS)
if (crossPlayer == null)
crossPlayer = player;
else
require(player == crossPlayer, "it's not your turn");
else
if (circlePlayer == null) {
require(crossPlayer != player, "you cannot play against yourself");
long previousBet = balance().subtract(BigInteger.valueOf(amount)).longValue();
require(amount >= previousBet,
() -> "you must bet at least " + previousBet + " coins");
circlePlayer = player;
}
else
require(player == circlePlayer, "it's not your turn");
set(x, y, turn);
if (isGameOver(x, y))
player.receive(balance());
else
turn = turn.nextTurn();
}
private boolean isGameOver(int x, int y) {
return gameOver =
rangeClosed(1, 3).allMatch(_y -> at(x, _y) == turn) || // column x
rangeClosed(1, 3).allMatch(_x -> at(_x, y) == turn) || // row y
(x == y && rangeClosed(1, 3).allMatch(_x -> at(_x, _x) == turn)) || // 1st diagonal
(x + y == 4 && rangeClosed(1, 3).allMatch(_x -> at(_x, 4 - _x) == turn)); // 2nd
}
@Override
public @View String toString() {
return rangeClosed(1, 3)
.mapToObj(y -> rangeClosed(1, 3)
.mapToObj(x -> at(x, y).toString())
.collect(joining("|")))
.collect(joining("\n-----\n"));
}
}
The internal class Tile
represents the three alternatives that can be
put in the tic-tac-toe board. It overrides the default
toString()
implementation, to yield the
usual representation for such alternatives; its nextTurn()
method
alternates between cross and circle.
The board of the game is represented as a new StorageTreeArray<>(9, EMPTY)
, whose
elements are indexed from 0 to 8 (inclusive) and are initialized to EMPTY
.
It is also possible to construct the array as new StorageTreeArray<>(9)
, but then
its elements would hold the default value null
and the array would need to be initialized
inside a constructor for TicTacToe
:
public TicTacToe() {
rangeClosed(0, 8).forEachOrdered(index -> board.set(index, EMPTY));
}
Methods at()
and set()
read and set the board element
at indexes (x,y), respectively. They transform the two-dimensional conceptual representation
of the board into its internal one-dimensional representation. Since at()
is public
,
we defensively check the validity of the indexes there.
Method play()
is the heart of the contract. It is called by the accounts
that play the game, hence it is annotated as @FromContract
. It is also annotated as
@Payable(PayableContract.class)
since players must bet money for
taking part in the game, at least for the first two moves, and receive
money if they win. The first
contract that plays is registered as crossPlayer
. The second contract
that plays is registered as circlePlayer
. Subsequent moves must
come, alternately, from crossPlayer
and circlePlayer
. The contract
uses a turn
variable to keep track of the current turn.
Note the extensive use of require()
to check all error situations:
- It is possible to play only if the game is not over yet.
- A move must be inside the board and identify an empty tile.
- Players must alternate correctly.
- The second player must bet at least as much as the first player.
- It is not allowed to play against oneself.
The play()
method ends with a call to gameOver()
that checks
if the game is over. In that case, the winner receives the full
jackpot. Note that the gameOver()
method receives the coordinates
where the current player has moved. This allows it to restrict the
check for game over: the game is over only if the row or column
where the player moved contain the same tile; if the current player
played on a diagonal, the method checks the diagonals as well.
It is of course possible to check all rows, columns and diagonals, always,
but our solution is gas-thriftier.
The toString()
method yields a string representation of the current board, such as
X|O|
-----
|X|O
-----
|X|
For those who do not appreciate Java 8 streams, the same result can be obtained with a more traditional (and gas-hungrier) code:
@Override
public @View String toString() {
String result = "";
for (int y = 0; y < 3; y++) {
for (int x = 0; x < 3; x++) {
result += at(x, y);
if (x < 2)
result += "|";
}
if (y < 2)
result += "\n-----\n"
}
return result;
}
[See project tictactoe_improved
inside the hotmoka_tutorial
repository]
The TicTacToe.java
code implements the rules of a tic-tac-toe game, but has
a couple of drawbacks that make it still incomplete. Namely:
- The creator of the game must spend gas to call its constructor, but has no direct incentive in doing so. He must be a benefactor, or hope to take part in the game after creation, if he is faster than any other potential player.
- If the game ends in a draw, money gets stuck in the
TicTacToe
contract instance, for ever and ever.
Replace hence the previous version of TicTacToe.java
with the following
improved version. This new version solves
both problems at once. The policy is very simple: it imposes a minimum
bet, in order to avoid free games; if a winner emerges,
then the game forwards him only 90% of the jackpot; the remaining 10% goes to the
creator of the TicTacToe
contract. If, instead, the game ends in a draw,
it forwards the whole jackpot to the creator.
Note that we added a @FromContract
constructor, that takes
note of the creator
of the game:
package io.takamaka.tictactoe;
import static io.takamaka.code.lang.Takamaka.require;
import static java.util.stream.Collectors.joining;
import static java.util.stream.IntStream.rangeClosed;
import java.math.BigInteger;
import io.takamaka.code.lang.Contract;
import io.takamaka.code.lang.FromContract;
import io.takamaka.code.lang.Payable;
import io.takamaka.code.lang.PayableContract;
import io.takamaka.code.lang.Storage;
import io.takamaka.code.lang.View;
import io.takamaka.code.util.StorageArray;
import io.takamaka.code.util.StorageTreeArray;
public class TicTacToe extends Contract {
public class Tile extends Storage {
private final char c;
private Tile(char c) {
this.c = c;
}
@Override
public String toString() {
return String.valueOf(c);
}
private Tile nextTurn() {
return this == CROSS ? CIRCLE : CROSS;
}
}
private final Tile EMPTY = new Tile(' ');
private final Tile CROSS = new Tile('X');
private final Tile CIRCLE = new Tile('O');
private final static long MINIMUM_BET = 100L;
private final StorageArray<Tile> board = new StorageTreeArray<>(9, EMPTY);
private final PayableContract creator;
private PayableContract crossPlayer, circlePlayer;
private Tile turn = CROSS; // cross plays first
private boolean gameOver;
public @FromContract(PayableContract.class) TicTacToe() {
creator = (PayableContract) caller();
}
public @View Tile at(int x, int y) {
require(1 <= x && x <= 3 && 1 <= y && y <= 3,
"coordinates must be between 1 and 3");
return board.get((y - 1) * 3 + x - 1);
}
private void set(int x, int y, Tile tile) {
board.set((y - 1) * 3 + x - 1, tile);
}
public @Payable @FromContract(PayableContract.class)
void play(long amount, int x, int y) {
require(!gameOver, "the game is over");
require(1 <= x && x <= 3 && 1 <= y && y <= 3,
"coordinates must be between 1 and 3");
require(at(x, y) == EMPTY, "the selected tile is not empty");
var player = (PayableContract) caller();
if (turn == CROSS)
if (crossPlayer == null) {
require(amount >= MINIMUM_BET,
() -> "you must bet at least " + MINIMUM_BET + " coins");
crossPlayer = player;
}
else
require(player == crossPlayer, "it's not your turn");
else
if (circlePlayer == null) {
require(crossPlayer != player, "you cannot play against yourself");
long previousBet = balance().subtract(BigInteger.valueOf(amount)).longValue();
require(amount >= previousBet,
() -> "you must bet at least " + previousBet + " coins");
circlePlayer = player;
}
else
require(player == circlePlayer, "it's not your turn");
set(x, y, turn);
if (isGameOver(x, y)) {
// 90% goes to the winner
player.receive(balance().multiply(BigInteger.valueOf(9L))
.divide(BigInteger.valueOf(10L)));
// the rest goes to the creator of the game
creator.receive(balance());
}
else if (isDraw())
// everything goes to the creator of the game
creator.receive(balance());
else
turn = turn.nextTurn();
}
private boolean isGameOver(int x, int y) {
return gameOver =
rangeClosed(1, 3).allMatch(_y -> at(x, _y) == turn) || // column x
rangeClosed(1, 3).allMatch(_x -> at(_x, y) == turn) || // row y
(x == y && rangeClosed(1, 3).allMatch(_x -> at(_x, _x) == turn)) || // 1st diagonal
(x + y == 4 && rangeClosed(1, 3).allMatch(_x -> at(_x, 4 - _x) == turn)); // 2nd
}
private boolean isDraw() {
return rangeClosed(0, 8).mapToObj(board::get).noneMatch(EMPTY::equals);
}
@Override
public @View String toString() {
return rangeClosed(1, 3)
.mapToObj(y -> rangeClosed(1, 3)
.mapToObj(x -> at(x, y).toString())
.collect(joining("|")))
.collect(joining("\n-----\n"));
}
}
We have chosen to allow a
long amount
in the@Payable
methodplay()
since it is unlikely that users will want to invest huge quantities of money in this game. This gives us the opportunity to discuss why the computation of the previous bet has been written aslong previousBet = balance().subtract(BigInteger.valueOf(amount)).longValue()
instead of the simplerlong previousBet = balance().longValue() - amount
. The reason is that, when that line is executed, both players have aleady paid their bet, that accumulates in the balance of theTicTacToe
contract. Each single bet is along
, but their sum could overflow the size of along
. Hence, we have to deal with a computation onBigInteger
. The same situation occurs later, when we have to compute the 90% that goes to the winner: the jackpot might be larger than along
and we have to compute overBigInteger
. As a final remark, note that in the line:balance().multiply(BigInteger.valueOf(9L)).divide(BigInteger.valueOf(10L))
we first multiply by 9 and then divide by 10. This reduces the approximation inherent to integer division. For instance, if the jackpot (balance()
) were 209, we have (with Java's left-to-right evaluation)209*9/10=1881/10=188
while209/10*9=20*9=180
.
Let us play with the TicTacToe
contract. Go inside the tictactoe
project
and run the mvn package
command. A file
tictactoe-0.0.1.jar
should appear inside target
.
Let us start by installing that jar in the node:
$ moka install tictactoe/target/tictactoe-0.0.1.jar
--payer 5f705b7dc5869ae39db3bc80b7cd073c2bb55726706749138d16a4a9d0f01766#0
--uri ws://panarea.hotmoka.io
Please specify the password of the payer account: chocolate
Do you really want to spend up to 870600 gas units to install the jar [Y/N] Y
tictactoe/target/tictactoe-0.0.1.jar has been installed
at 85a234ecc737d83f33659bc94e916e8248274f19dfc6b5f0a29dbce7f1f947ed
Then we create an instance of the contract in the node:
$ moka create
io.takamaka.tictactoe.TicTacToe
--payer 5f705b7dc5869ae39db3bc80b7cd073c2bb55726706749138d16a4a9d0f01766#0
--classpath 85a234ecc737d83f33659bc94e916e8248274f19dfc6b5f0a29dbce7f1f947ed
--uri ws://panarea.hotmoka.io
Please specify the password of the payer account: chocolate
Do you really want to spend up to 500000 gas units to call
@FromContract(PayableContract.class) public TicTacToe() ? [Y/N] Y
The new object has been allocated at
a2bf8656d4979b0f18197f28c2aab4e7dbf58a01cf9d3ed8acf3af496e4bf99b#0
We use two of our accounts now, that we have already created in the previous section,
to interact with the contract: they will play, alternately, until the first player wins.
We will print the toString
of the contract after each move.
The first player starts, by playing at (1,1), and bets 100:
$ moka call
a2bf8656d4979b0f18197f28c2aab4e7dbf58a01cf9d3ed8acf3af496e4bf99b#0
play 100 1 1
--payer 5f705b7dc5869ae39db3bc80b7cd073c2bb55726706749138d16a4a9d0f01766#0
--uri ws://panarea.hotmoka.io
$ moka call
a2bf8656d4979b0f18197f28c2aab4e7dbf58a01cf9d3ed8acf3af496e4bf99b#0
toString
--payer 5f705b7dc5869ae39db3bc80b7cd073c2bb55726706749138d16a4a9d0f01766#0
--uri ws://panarea.hotmoka.io
X| |
-----
| |
-----
| |
The second player plays after, at (2,1), betting 100:
$ moka call
a2bf8656d4979b0f18197f28c2aab4e7dbf58a01cf9d3ed8acf3af496e4bf99b#0
play 100 2 1
--payer 12441d4a2f52e80f93e726040fbc364b75e7fedbef96887110df678794d791ea#0
--uri ws://panarea.hotmoka.io
$ moka call
a2bf8656d4979b0f18197f28c2aab4e7dbf58a01cf9d3ed8acf3af496e4bf99b#0
toString
--payer 12441d4a2f52e80f93e726040fbc364b75e7fedbef96887110df678794d791ea#0
--uri ws://panarea.hotmoka.io
X|O|
-----
| |
-----
| |
The first player replies, playing at (1,2):
$ moka call
a2bf8656d4979b0f18197f28c2aab4e7dbf58a01cf9d3ed8acf3af496e4bf99b#0
play 0 1 2
--payer 5f705b7dc5869ae39db3bc80b7cd073c2bb55726706749138d16a4a9d0f01766#0
--uri ws://panarea.hotmoka.io
$ moka call
a2bf8656d4979b0f18197f28c2aab4e7dbf58a01cf9d3ed8acf3af496e4bf99b#0
toString
--payer 5f705b7dc5869ae39db3bc80b7cd073c2bb55726706749138d16a4a9d0f01766#0
--uri ws://panarea.hotmoka.io
X|O|
-----
X| |
-----
| |
Then the second player plays at (2,2):
$ moka call
a2bf8656d4979b0f18197f28c2aab4e7dbf58a01cf9d3ed8acf3af496e4bf99b#0
play 0 2 2
--payer 12441d4a2f52e80f93e726040fbc364b75e7fedbef96887110df678794d791ea#0
--uri ws://panarea.hotmoka.io
$ moka call
a2bf8656d4979b0f18197f28c2aab4e7dbf58a01cf9d3ed8acf3af496e4bf99b#0
toString
--payer 12441d4a2f52e80f93e726040fbc364b75e7fedbef96887110df678794d791ea#0
--uri ws://panarea.hotmoka.io
X|O|
-----
X|O|
-----
| |
The first player wins by playing at (1,3):
$ moka call
a2bf8656d4979b0f18197f28c2aab4e7dbf58a01cf9d3ed8acf3af496e4bf99b#0
play 0 1 3
--payer 5f705b7dc5869ae39db3bc80b7cd073c2bb55726706749138d16a4a9d0f01766#0
--uri ws://panarea.hotmoka.io
$ moka call
a2bf8656d4979b0f18197f28c2aab4e7dbf58a01cf9d3ed8acf3af496e4bf99b#0
toString
--payer 5f705b7dc5869ae39db3bc80b7cd073c2bb55726706749138d16a4a9d0f01766#0
--uri ws://panarea.hotmoka.io
X|O|
-----
X|O|
-----
X| |
We can verify that the game is over now:
$ moka state a2bf8656d4979b0f18197f28c2aab4e7dbf58a01cf9d3ed8acf3af496e4bf99b#0
--uri ws://panarea.hotmoka.io
This is the state of object
a2bf8656d4979b0f18197f28c2aab4e7dbf58a01cf9d3ed8acf3af496e4bf99b#0
@ws://panarea.hotmoka.io
class io.takamaka.tictactoe.TicTacToe (from jar installed at
85a234ecc737d83f33659bc94e916e8248274f19dfc6b5f0a29dbce7f1f947ed)
...
gameOver:boolean = true
balance:java.math.BigInteger = 0 (inherited from io.takamaka.code.lang.Contract)
...
As you can see, the balance of the contract is zero since it has been distributed to the winner and to the creator of the game (that actually coincide, in this specific run).
If the second player attempts to play now, the transaction will be rejected, since the game is over:
$ moka call
a2bf8656d4979b0f18197f28c2aab4e7dbf58a01cf9d3ed8acf3af496e4bf99b#0
play 0 2 3
--payer 12441d4a2f52e80f93e726040fbc364b75e7fedbef96887110df678794d791ea#0
--uri ws://panarea.hotmoka.io
io.hotmoka.node.api.TransactionException:
io.takamaka.code.lang.RequirementViolationException:
the game is [email protected]:79
The StorageTreeArray<E>
class is very general, since it can be used to hold
any type E
of storage values. Since it uses generics,
primitive values cannot be held in a StorageTreeArray<E>
, directly.
For instance, StorageTreeArray<byte>
is not legal syntax in Java.
Instead, one could think to use StorageTreeArray<Byte>
, where Byte
is the Java wrapper class java.lang.Byte
. However, that class is not
currently allowed in storage, hence StorageTreeArray<Byte>
will not work either.
One should hence define a new wrapper class for byte
, that extends Storage
.
That is possible, but highly discouraged:
the use of wrapper classes introduces a level of indirection
and requires the instantiation of many small objects, which costs gas. Instead,
Takamaka provides specialized storage classes implementing arrays of bytes,
without wrappers. The rationale is that such arrays arise
naturally when dealing, for instance, with hashes or encrypted data
(see next section for an example) and consequently deserve
a specialized and optimized implementation.
Such specialized array classes
can have their length specified at construction time, or fixed to
a constant (for best optimization and minimal gas consumption).
Figure 30. Specialized byte array classes.
Figure 30 shows the hierarchy of the specialized classes for arrays of bytes,
available in Takamaka.
The interface StorageByteArrayView
defines the methods that read data from an array
of bytes, while the interface StorageByteArray
defines the modification methods.
Class StorageTreeByteArray
allows one to create byte arrays of any length,
specified at construction time.
Classes Bytes32
and Bytes32Snapshot
have, instead, fixed length of 32 bytes;
their constructors include one that allows one to specify such 32 bytes,
which is useful for calling the constructor from outside the node,
since byte
is a storage type.
While a Bytes32
is modifiable, instances of class Bytes32Snapshot
are not modifiable after being created and are @Exported
.
There are sibling classes for different, fixed sizes, such as
Bytes64
and Bytes8Snaphot
. For a full description of the methods
of these classes and interfaces, we refer to their JavaDoc.
Maps are dynamic associations of objects to objects. They are useful for programming smart contracts, as their extensive use in Solidity proves. However, most such uses are related to the withdrawal pattern, that is not needed in Takamaka. Nevertheless, there are still situations when maps are useful in Takamaka code, as we show below.
Java has many implementations of maps, that can be used in Takamaka.
However, they are not storage objects and consequently cannot be
stored in a Hotmoka node. This section describes the
io.takamaka.code.util.StorageTreeMap<K,V>
class, that extends Storage
and
whose instances can then be held in the store of a node, if keys K
and
values V
can be stored in a node as well.
We refer to the JavaDoc of StorageTreeMap
for a full description of its methods,
that are similar to those of traditional Java maps. Here, we just observe
that a key is mapped into a value by calling method
void put(K key, V value)
, while the value bound to a key is retrieved by calling
V get(Object key)
. It is possible to yield a default value when a key is not
in the map, by calling V getOrDefault(Object key, V _default)
or
its sibling V getOrDefault(Object key, Supplier<? extends V> _default)
, that
evaluates the default value only if needed. Method V putIfAbsent(K key, V value)
,
binds the key to the value only if the key is unbound. Similarly for
its sibling V computeIfAbsent(K key, Supplier<? extends V> value)
that, however,
evaluates the new value only if needed (these two methods differ for their
returned value, as in Java maps. Please refer to their JavaDoc).
Instances of StorageTreeMap<K,V>
keep keys in increasing order. Namely, if
type K
has a natural order, that order is used. Otherwise, keys
(that must be storage objects) are kept ordered by increasing storage
reference. Consequently, methods K min()
and K max()
yield the
minimal and the maximal key of a map. Method List<K> keyList()
yields the
ordered list of the keys of a map; method Stream<K> keys()
yields the
same, as an ordered stream; method Stream<Entry<K,V>> stream()
yields the
ordered stream of the entries (ie., key/value pairs) of a map;
method Stream<V> values()
yields the ordered stream of the values bound
to the keys of the map.
Compare this with Solidity, where maps do not know the set of their keys nor the set of their values.
Figure 31. The hierarchy of storage maps.
Figure 31 shows the hierarchy of the StorageTreeMap<K,V>
class.
It implements the interface StorageMap<K,V>
, that defines the methods that modify a map.
That interface extends the interface StorageMapView<K,V>
that, instead, defines the methods
that read data from a map, but do not modify it.
Methods snapshot()
and view()
return an @Exported
StorageMapView<K,V>
, in constant time.
There are also specialized map classes, optimized
for specific primitive types of keys, such as StorageTreeIntMap<V>
,
whose keys are int
values. We refer to their JavaDoc for further information.
[See project auction
inside the hotmoka_tutorial
repository]
This section exemplifies the use of class StorageTreeMap
for writing a smart
contract that implements a blind auction. That contract allows
a beneficiary to sell an item to the buying contract that offers
the highest bid. Since data in blockchain is public, in a non-blind
auction it is possible that bidders eavesdrop the offers of other bidders
in order to place an offer that is only slightly higher than the current
best offer. A blind auction, instead, uses a two-phases
mechanism: in the initial bidding time, bidders place bids, hashed, so that
they do not reveal their amount. After the bidding time expires, the second
phase, called reveal time, allows bidders to
reveal the real values of their bids and the auction contract to determine
the actual winner.
This works since, to reveal a bid, each bidder provides the real data
of the bid. The auction contract then recomputes the hash from real data and
checks if the result matches the hash provided at bidding time.
If not, the bid is considered invalid. Bidders can even place fake offers
on purpose, in order to confuse other bidders.
Create in Eclipse a new Maven Java 11 (or later) project named auction
.
You can do this by duplicating the project family
(make sure to store
the project inside the hotmoka_tutorial
directory, as a sibling of family
, ponzi
, tictactoe
and
runs
). Use the following pom.xml
:
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>io.hotmoka.tutorial</groupId>
<artifactId>family</artifactId>
<version>0.0.1</version>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.release>11</maven.compiler.release>
</properties>
<dependencies>
<dependency>
<groupId>io.hotmoka</groupId>
<artifactId>io-takamaka-code</artifactId>
<version>1.3.1</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.11.0</version>
</plugin>
</plugins>
</build>
</project>
and the following module-info.java
:
module auction {
requires io.takamaka.code;
}
Create package io.takamaka.auction
inside src/main/java
and add
the following BlindAuction.java
inside that package.
It is a Takamaka contract that implements
a blind auction. Since each bidder may place more bids and since such bids
must be kept in storage until reveal time, this code uses a map
from bidders to lists of bids. This smart contract has been inspired
by a similar Solidity contract [BlindAuction].
Please note that this code will not compile yet, since it misses two classes
that we will define in the next section.
package io.takamaka.auction;
import static io.takamaka.code.lang.Takamaka.event;
import static io.takamaka.code.lang.Takamaka.now;
import static io.takamaka.code.lang.Takamaka.require;
import java.math.BigInteger;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
import java.util.Arrays;
import java.util.function.Supplier;
import io.takamaka.code.lang.Contract;
import io.takamaka.code.lang.Exported;
import io.takamaka.code.lang.FromContract;
import io.takamaka.code.lang.Payable;
import io.takamaka.code.lang.PayableContract;
import io.takamaka.code.lang.Storage;
import io.takamaka.code.util.Bytes32Snapshot;
import io.takamaka.code.util.StorageLinkedList;
import io.takamaka.code.util.StorageList;
import io.takamaka.code.util.StorageMap;
import io.takamaka.code.util.StorageTreeMap;
public class BlindAuction extends Contract {
/**
* A bid placed by a bidder. The deposit has been paid in full.
* If, later, the bid will be revealed as fake, then the deposit will
* be fully refunded. If, instead, the bid will be revealed as real, but for
* a lower amount, then only the difference will be refunded.
*/
private static class Bid extends Storage {
/**
* The hash that will be regenerated and compared at reveal time.
*/
private final Bytes32Snapshot hash;
/**
* The value of the bid. Its real value might be lower and known
* at real time only.
*/
private final BigInteger deposit;
private Bid(Bytes32Snapshot hash, BigInteger deposit) {
this.hash = hash;
this.deposit = deposit;
}
/**
* Recomputes the hash of a bid at reveal time and compares it
* against the hash provided at bidding time. If they match,
* we can reasonably trust the bid.
*
* @param revealed the revealed bid
* @param digest the hasher
* @return true if and only if the hashes match
*/
private boolean matches(RevealedBid revealed, MessageDigest digest) {
digest.update(revealed.value.toByteArray());
digest.update(revealed.fake ? (byte) 0 : (byte) 1);
digest.update(revealed.salt.toArray());
return Arrays.equals(hash.toArray(), digest.digest());
}
}
/**
* A bid revealed by a bidder at reveal time. The bidder shows
* if the corresponding bid was fake or real, and how much was the
* actual value of the bid. This might be lower than previously communicated.
*/
@Exported
public static class RevealedBid extends Storage {
private final BigInteger value;
private final boolean fake;
/**
* The salt used to strengthen the hashing.
*/
private final Bytes32Snapshot salt;
public RevealedBid(BigInteger value, boolean fake, Bytes32Snapshot salt) {
this.value = value;
this.fake = fake;
this.salt = salt;
}
}
/**
* The beneficiary that, at the end of the reveal time, will receive the highest bid.
*/
private final PayableContract beneficiary;
/**
* The bids for each bidder. A bidder might place more bids.
*/
private final StorageMap<PayableContract, StorageList<Bid>> bids = new StorageTreeMap<>();
/**
* The time when the bidding time ends.
*/
private final long biddingEnd;
/**
* The time when the reveal time ends.
*/
private final long revealEnd;
/**
* The bidder with the highest bid, at reveal time.
*/
private PayableContract highestBidder;
/**
* The highest bid, at reveal time.
*/
private BigInteger highestBid;
/**
* Creates a blind auction contract.
*
* @param biddingTime the length of the bidding time
* @param revealTime the length of the reveal time
*/
public @FromContract(PayableContract.class) BlindAuction(int biddingTime, int revealTime) {
require(biddingTime > 0, "Bidding time must be positive");
require(revealTime > 0, "Reveal time must be positive");
this.beneficiary = (PayableContract) caller();
this.biddingEnd = now() + biddingTime;
this.revealEnd = biddingEnd + revealTime;
}
/**
* Places a blinded bid with the given hash.
* The money sent is only refunded if the bid is correctly
* revealed in the revealing phase. The bid is valid if the
* money sent together with the bid is at least "value" and
* "fake" is not true. Setting "fake" to true and sending
* not the exact amount are ways to hide the real bid but
* still make the required deposit. The same bidder can place multiple bids.
*/
public @Payable @FromContract(PayableContract.class) void bid
(BigInteger amount, Bytes32Snapshot hash) {
onlyBefore(biddingEnd);
bids.computeIfAbsent((PayableContract) caller(),
(Supplier<StorageList<Bid>>) StorageLinkedList::new)
.add(new Bid(hash, amount));
}
/**
* Reveals a bid of the caller. The caller will get a refund for all correctly
* blinded invalid bids and for all bids except for the totally highest.
*
* @param revealed the revealed bid
* @throws NoSuchAlgorithmException if the hashing algorithm is not available
*/
public @FromContract(PayableContract.class) void reveal
(RevealedBid revealed) throws NoSuchAlgorithmException {
onlyAfter(biddingEnd);
onlyBefore(revealEnd);
var bidder = (PayableContract) caller();
StorageList<Bid> bids = this.bids.get(bidder);
require(bids != null && bids.size() > 0, "No bids to reveal");
require(revealed != null, () -> "The revealed bid cannot be null");
// any other hashing algorithm will do, as long as
// both bidder and auction contract use the same
var digest = MessageDigest.getInstance("SHA-256");
// by removing the head of the list, it makes it impossible
// for the caller to re-claim the same deposits
bidder.receive(refundFor(bidder, bids.removeFirst(), revealed, digest));
}
/**
* Ends the auction and sends the highest bid to the beneficiary.
*
* @return the highest bidder
*/
public PayableContract auctionEnd() {
onlyAfter(revealEnd);
PayableContract winner = highestBidder;
if (winner != null) {
beneficiary.receive(highestBid);
event(new AuctionEnd(winner, highestBid));
highestBidder = null;
}
return winner;
}
/**
* Checks how much of the deposit should be refunded for a given bid.
*
* @param bidder the bidder that placed the bid
* @param bid the bid, as was placed at bidding time
* @param revealed the bid, as was revealed later
* @param digest the hashing algorithm
* @return the amount to refund
*/
private BigInteger refundFor(PayableContract bidder, Bid bid,
RevealedBid revealed, MessageDigest digest) {
if (!bid.matches(revealed, digest))
// the bid was not actually revealed: no refund
return BigInteger.ZERO;
else if (!revealed.fake && bid.deposit.compareTo(revealed.value) >= 0
&& placeBid(bidder, revealed.value))
// the bid was correctly revealed and is the best up to now:
// only the difference between promised and provided is refunded;
// the rest might be refunded later if a better bid will be revealed
return bid.deposit.subtract(revealed.value);
else
// the bid was correctly revealed and is not the best one:
// it is fully refunded
return bid.deposit;
}
/**
* Takes note that a bidder has correctly revealed a bid for the given value.
*
* @param bidder the bidder
* @param value the value, as revealed
* @return true if and only if this is the best bid, up to now
*/
private boolean placeBid(PayableContract bidder, BigInteger value) {
if (highestBid != null && value.compareTo(highestBid) <= 0)
// this is not the best bid seen so far
return false;
// if there was a best bidder already, its bid is refunded
if (highestBidder != null)
// Refund the previously highest bidder
highestBidder.receive(highestBid);
// take note that this is the best bid up to now
highestBid = value;
highestBidder = bidder;
event(new BidIncrease(bidder, value));
return true;
}
private static void onlyBefore(long when) {
require(now() < when, "Too late");
}
private static void onlyAfter(long when) {
require(now() > when, "Too early");
}
}
Let us discuss this (long) code, by starting from the inner classes.
Class Bid
represents a bid placed by a contract that takes part to the auction.
This information will be stored in blockchain at bidding time, hence
it is known to all other participants. An instance of Bid
contains
the deposit
paid at time of placing the bid. This is not necessarily
the real value of the offer but must be at least as large as the real offer,
or otherwise the bid will be considered as invalid at reveal time. Instances
of Bid
contain a hash
consisting of 32 bytes. As already said, this will
be recomputed at reveal time and matched against the result.
Since arrays cannot be stored in blockchain, we use the storage class
io.takamaka.code.util.Bytes32Snapshot
here, a library class that holds 32 bytes, as a
traditional array (see Specialized Storage Array Classes).
It is well possible to use a StorageArray
of a wrapper
of byte
here, but Bytes32Snapshot
is much more compact and its methods consume less gas.
Class RevealedBid
describes a bid revealed after bidding time.
It contains the real value of the bid, the salt used to strengthen the
hashing algorithm and a boolean fake
that, when true, means that the
bid must be considered as invalid, since it was only placed in order
to confuse other bidders. It is possible to recompute and check the hash of
a revealed bid through method Bid.matches()
, that uses a given
hashing algorithm (digest
, a Java java.security.MessageDigest
) to
hash value, fake mark and salt into bytes, finally compared
against the hash provided at bidding time.
The BlindAuction
contract stores the beneficiary
of the auction.
It is the contract that created the auction and is consequently
initialized, in the constructor of BlindAuction
, to its caller.
The constructor must be annotated as @FromContract
because of that.
The same constructor receives the length of bidding time and reveal time, in
milliseconds. This allows the contract to compute tha absolute ending time
for the bidding phase and for the reveal phase, stored into fields
biddingEnd
and revealEnd
, respectively.
Note, in the constructor of BlindAuction
, the
use of the static method io.takamaka.code.lang.Takamaka.now()
, that yields the
current time, as with the traditional System.currentTimeMillis()
of Java
(that instead cannot be used in Takamaka code). Method now()
, in a blockchain, yields the
time of creation of the block of the current transaction, as seen by its miner.
That time is reported in the block and hence is independent from the
machine that runs the contract, which guarantees determinism.
Method bid()
allows a caller (the bidder) to place a bid during the bidding phase.
An instance of Bid
is created and added to a list, specific to each
bidder. Here is where our map comes to help. Namely, field
bids
holds a StorageTreeMap<PayableContract, StorageList<Bid>>
,
that can be held in the store of a node since it is a storage map between storage keys
and storage values. Method bid()
computes an empty list of bids if it is the
first time that a bidder places a bid. For that, it uses method
computeIfAbsent()
of StorageMap
. If it used method get()
, it would
run into a null-pointer exception the first time a bidder places a bid.
That is, storage maps default to null
, as all Java maps. (But differently to
Solidity maps, that provide a new value automatically when undefined.)
Method reveal()
is called by each bidder during the reveal phase.
It accesses the bids
placed by the bidder during the bidding time.
The method matches each revealed bid against the corresponding
list of bids for the player, by calling
method refundFor()
, that determines how much of the deposit must be
refunded to the bidder. Namely, if a bid was fake or was not the best bid,
it must be refunded in full. If it was the best bid, it must be partially refunded
if the apparent deposit
turns out to be higher than the actual value of the
revealed bid. While bids are refunded, method placeBid
updates
the best bid information.
Method auctionEnd()
is meant to be called after the reveal phase.
If there is a winner, it sends the highest bid to the beneficiary.
Note the use of methods onlyBefore()
and onlyAfter()
to guarantee
that some methods are only run at the right moment.
[See project auction_events
inside the hotmoka_tutorial
repository]
The code in the previous section does not compile since it misses two
classes BidIncrease.java
and AuctionEnd.java
, that we report below.
Namely, the code of the blind auction contract contains some lines that generate
events, such as:
event(new AuctionEnd(winner, highestBid));
Events are milestones that are saved in the store of a Hotmoka node.
From outside the node, it is possible to subscribe to specific events and get
notified as soon as an event of that kind occurs,
to trigger actions when that happens. In terms of the
Takamaka language, events are generated through the
io.takamaka.code.lang.Takamaka.event(Event event)
method, that receives a parameter
of type io.takamaka.code.lang.Event
. The latter is simply an abstract class that
extends Storage
. Hence, events will
be stored in the node as part of the transaction that generated that event.
The constructor of class Event
is annotated as FromContract
, which allows one
to create events from the code of contracts only. The creating contract is available
through method creator()
of class Event
.
In our example, the BlindAuction
class uses two events, that you can add
to the io.takamaka.auction
package and are defined as follows:
package io.takamaka.auction;
import java.math.BigInteger;
import io.takamaka.code.lang.FromContract;
import io.takamaka.code.lang.Event;
import io.takamaka.code.lang.PayableContract;
import io.takamaka.code.lang.View;
public class BidIncrease extends Event {
public final PayableContract bidder;
public final BigInteger amount;
@FromContract BidIncrease(PayableContract bidder, BigInteger amount) {
this.bidder = bidder;
this.amount = amount;
}
public @View PayableContract getBidder() {
return bidder;
}
public @View BigInteger getAmount() {
return amount;
}
}
and
package io.takamaka.auction;
import java.math.BigInteger;
import io.takamaka.code.lang.FromContract;
import io.takamaka.code.lang.Event;
import io.takamaka.code.lang.PayableContract;
import io.takamaka.code.lang.View;
public class AuctionEnd extends Event {
public final PayableContract highestBidder;
public final BigInteger highestBid;
@FromContract AuctionEnd(PayableContract highestBidder, BigInteger highestBid) {
this.highestBidder = highestBidder;
this.highestBid = highestBid;
}
public @View PayableContract getHighestBidder() {
return highestBidder;
}
public @View BigInteger getHighestBid() {
return highestBid;
}
}
Now that all classes have been completed, the project should compile.
Go inside the auction
project and
run mvn package
. A file auction-0.0.1.jar
should appear inside target
.
[See project runs
inside the hotmoka_tutorial
repository]
Go to the runs
Eclipse project and add the following
class inside that package:
package runs;
import static io.hotmoka.helpers.Coin.panarea;
import static io.hotmoka.node.StorageTypes.BIG_INTEGER;
import static io.hotmoka.node.StorageTypes.BOOLEAN;
import static io.hotmoka.node.StorageTypes.BYTE;
import static io.hotmoka.node.StorageTypes.BYTES32_SNAPSHOT;
import static io.hotmoka.node.StorageTypes.INT;
import static io.hotmoka.node.StorageTypes.PAYABLE_CONTRACT;
import static io.hotmoka.node.StorageValues.byteOf;
import java.math.BigInteger;
import java.net.URI;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.security.KeyPair;
import java.security.MessageDigest;
import java.util.ArrayList;
import java.util.List;
import java.util.Random;
import java.util.stream.Collectors;
import java.util.stream.Stream;
import io.hotmoka.crypto.api.Signer;
import io.hotmoka.helpers.GasHelpers;
import io.hotmoka.helpers.NonceHelpers;
import io.hotmoka.helpers.SignatureHelpers;
import io.hotmoka.helpers.api.GasHelper;
import io.hotmoka.helpers.api.NonceHelper;
import io.hotmoka.node.Accounts;
import io.hotmoka.node.ConstructorSignatures;
import io.hotmoka.node.MethodSignatures;
import io.hotmoka.node.StorageTypes;
import io.hotmoka.node.StorageValues;
import io.hotmoka.node.TransactionRequests;
import io.hotmoka.node.api.Node;
import io.hotmoka.node.api.requests.SignedTransactionRequest;
import io.hotmoka.node.api.signatures.ConstructorSignature;
import io.hotmoka.node.api.signatures.MethodSignature;
import io.hotmoka.node.api.transactions.TransactionReference;
import io.hotmoka.node.api.types.ClassType;
import io.hotmoka.node.api.values.StorageReference;
import io.hotmoka.node.api.values.StorageValue;
import io.hotmoka.node.remote.RemoteNodes;
public class Auction {
// change this with your accounts' storage references
private final static String[] ADDRESSES = new String[3];
static {
ADDRESSES[0] = "5f705b7dc5869ae39db3bc80b7cd073c2bb55726706749138d16a4a9d0f01766#0";
ADDRESSES[1] = "12441d4a2f52e80f93e726040fbc364b75e7fedbef96887110df678794d791ea#0";
ADDRESSES[2] = "eec01b6f22911f76dbd25bda6f850e9af9e8640a4530a46c1909f48b9c7976a3#0";
}
public final static int NUM_BIDS = 10; // number of bids placed
public final static int BIDDING_TIME = 130_000; // in milliseconds
public final static int REVEAL_TIME = 170_000; // in milliseconds
private final static BigInteger _500_000 = BigInteger.valueOf(500_000);
private final static ClassType BLIND_AUCTION
= StorageTypes.classNamed("io.takamaka.auction.BlindAuction");
private final static ConstructorSignature CONSTRUCTOR_BLIND_AUCTION
= ConstructorSignatures.of(BLIND_AUCTION, INT, INT);
private final static ConstructorSignature CONSTRUCTOR_BYTES32_SNAPSHOT
= ConstructorSignatures.of(BYTES32_SNAPSHOT,
BYTE, BYTE, BYTE, BYTE, BYTE, BYTE, BYTE, BYTE,
BYTE, BYTE, BYTE, BYTE, BYTE, BYTE, BYTE, BYTE,
BYTE, BYTE, BYTE, BYTE, BYTE, BYTE, BYTE, BYTE,
BYTE, BYTE, BYTE, BYTE, BYTE, BYTE, BYTE, BYTE);
private final static ConstructorSignature CONSTRUCTOR_REVEALED_BID
= ConstructorSignatures.of(
StorageTypes.classNamed("io.takamaka.auction.BlindAuction$RevealedBid"),
BIG_INTEGER, BOOLEAN, BYTES32_SNAPSHOT);
private final static MethodSignature BID = MethodSignatures.ofVoid
(BLIND_AUCTION, "bid", BIG_INTEGER, BYTES32_SNAPSHOT);
private final static MethodSignature REVEAL = MethodSignatures.ofVoid
(BLIND_AUCTION, "reveal",
StorageTypes.classNamed("io.takamaka.auction.BlindAuction$RevealedBid"));
private final static MethodSignature AUCTION_END = MethodSignatures.ofNonVoid
(BLIND_AUCTION, "auctionEnd", PAYABLE_CONTRACT);
//the hashing algorithm used to hide the bids
private final MessageDigest digest = MessageDigest.getInstance("SHA-256");
private final Path auctionPath = Paths.get("../auction/target/auction-0.0.1.jar");
private final TransactionReference takamakaCode;
private final StorageReference[] accounts;
private final List<Signer<SignedTransactionRequest<?>>> signers;
private final String chainId;
private final long start; // the time when bids started being placed
private final Node node;
private final TransactionReference classpath;
private final StorageReference auction;
private final List<BidToReveal> bids = new ArrayList<>();
private final GasHelper gasHelper;
private final NonceHelper nonceHelper;
public static void main(String[] args) throws Exception {
try (Node node = RemoteNodes.of(URI.create("ws://panarea.hotmoka.io"), 20000)) {
new Auction(node);
}
}
/**
* Class used to keep in memory the bids placed by each player,
* that will be revealed at the end.
*/
private class BidToReveal {
private final int player;
private final BigInteger value;
private final boolean fake;
private final byte[] salt;
private BidToReveal(int player, BigInteger value, boolean fake, byte[] salt) {
this.player = player;
this.value = value;
this.fake = fake;
this.salt = salt;
}
/**
* Creates in store a revealed bid corresponding to this object.
*
* @return the storage reference to the freshly created revealed bid
*/
private StorageReference intoBlockchain() throws Exception {
StorageReference bytes32 = node.addConstructorCallTransaction(TransactionRequests.constructorCall
(signers.get(player), accounts[player],
nonceHelper.getNonceOf(accounts[player]), chainId, _500_000,
panarea(gasHelper.getSafeGasPrice()), classpath, CONSTRUCTOR_BYTES32_SNAPSHOT,
byteOf(salt[0]), byteOf(salt[1]), byteOf(salt[2]), byteOf(salt[3]),
byteOf(salt[4]), byteOf(salt[5]), byteOf(salt[6]), byteOf(salt[7]),
byteOf(salt[8]), byteOf(salt[9]), byteOf(salt[10]), byteOf(salt[11]),
byteOf(salt[12]), byteOf(salt[13]), byteOf(salt[14]), byteOf(salt[15]),
byteOf(salt[16]), byteOf(salt[17]), byteOf(salt[18]), byteOf(salt[19]),
byteOf(salt[20]), byteOf(salt[21]), byteOf(salt[22]), byteOf(salt[23]),
byteOf(salt[24]), byteOf(salt[25]), byteOf(salt[26]), byteOf(salt[27]),
byteOf(salt[28]), byteOf(salt[29]), byteOf(salt[30]), byteOf(salt[31])));
return node.addConstructorCallTransaction(TransactionRequests.constructorCall
(signers.get(player), accounts[player],
nonceHelper.getNonceOf(accounts[player]), chainId,
_500_000, panarea(gasHelper.getSafeGasPrice()), classpath, CONSTRUCTOR_REVEALED_BID,
StorageValues.bigIntegerOf(value), StorageValues.booleanOf(fake), bytes32));
}
}
private Auction(Node node) throws Exception {
this.node = node;
takamakaCode = node.getTakamakaCode();
accounts = Stream.of(ADDRESSES).map(StorageValues::reference)
.toArray(StorageReference[]::new);
var signature = node.getConfig().getSignatureForRequests();
signers = Stream.of(accounts).map(this::loadKeys).map(KeyPair::getPrivate)
.map(key -> signature.getSigner
(key, SignedTransactionRequest<?>::toByteArrayWithoutSignature))
.collect(Collectors.toCollection(ArrayList::new));
gasHelper = GasHelpers.of(node);
nonceHelper = NonceHelpers.of(node);
chainId = getChainId();
classpath = installJar();
auction = createContract();
start = System.currentTimeMillis();
StorageReference expectedWinner = placeBids();
waitUntilEndOfBiddingTime();
revealBids();
waitUntilEndOfRevealTime();
StorageValue winner = askForWinner();
// show that the contract computes the correct winner
System.out.println("expected winner: " + expectedWinner);
System.out.println("actual winner: " + winner);
}
private StorageReference createContract() throws Exception {
System.out.println("Creating contract");
return node.addConstructorCallTransaction
(TransactionRequests.constructorCall(signers.get(0), accounts[0],
nonceHelper.getNonceOf(accounts[0]), chainId, _500_000, panarea(gasHelper.getSafeGasPrice()),
classpath, CONSTRUCTOR_BLIND_AUCTION,
StorageValues.intOf(BIDDING_TIME), StorageValues.intOf(REVEAL_TIME)));
}
private String getChainId() throws Exception {
StorageReference manifest = node.getManifest();
return node.runInstanceMethodCallTransaction(TransactionRequests.instanceViewMethodCall
(accounts[0], // payer
BigInteger.valueOf(50_000), // gas limit
takamakaCode, // class path for the execution of the transaction
MethodSignatures.GET_CHAIN_ID, // method
manifest)).get() // receiver of the method call
.asString(__ -> new ClassCastException());
}
private TransactionReference installJar() throws Exception {
System.out.println("Installing jar");
return node.addJarStoreTransaction(TransactionRequests.jarStore
(signers.get(0), // an object that signs with the payer's private key
accounts[0], // payer
nonceHelper.getNonceOf(accounts[0]), // payer's nonce
chainId, // chain identifier
BigInteger.valueOf(1_000_000), // gas limit: enough for this very small jar
gasHelper.getSafeGasPrice(), // gas price: at least the current gas price of the network
takamakaCode, // class path for the execution of the transaction
Files.readAllBytes(auctionPath), // bytes of the jar to install
takamakaCode)); // dependency
}
private StorageReference placeBids() throws Exception {
BigInteger maxBid = BigInteger.ZERO;
StorageReference expectedWinner = null;
Random random = new Random();
int i = 1;
while (i <= NUM_BIDS) { // generate NUM_BIDS random bids
System.out.println("Placing bid " + i);
int player = 1 + random.nextInt(accounts.length - 1);
var deposit = BigInteger.valueOf(random.nextInt(1000));
var value = BigInteger.valueOf(random.nextInt(1000));
boolean fake = random.nextBoolean();
var salt = new byte[32];
random.nextBytes(salt); // random 32 bytes of salt for each bid
// create a Bytes32 hash of the bid in the store of the node
StorageReference bytes32 = codeAsBytes32(player, value, fake, salt);
// keep note of the best bid, to verify the result at the end
if (!fake && deposit.compareTo(value) >= 0)
if (expectedWinner == null || value.compareTo(maxBid) > 0) {
maxBid = value;
expectedWinner = accounts[player];
}
else if (value.equals(maxBid))
// we do not allow ex aequos, since the winner
// would depend on the fastest player to reveal
continue;
// keep the explicit bid in memory, not yet in the node,
// since it would be visible there
bids.add(new BidToReveal(player, value, fake, salt));
// place a hashed bid in the node
node.addInstanceMethodCallTransaction(TransactionRequests.instanceMethodCall
(signers.get(player), accounts[player],
nonceHelper.getNonceOf(accounts[player]), chainId,
_500_000, panarea(gasHelper.getSafeGasPrice()), classpath, BID,
auction, StorageValues.bigIntegerOf(deposit), bytes32));
i++;
}
return expectedWinner;
}
private void revealBids() throws Exception {
// we create the revealed bids in blockchain; this is safe now, since the bidding time is over
int counter = 1;
for (BidToReveal bid: bids) {
System.out.println("Revealing bid " + counter++ + " out of " + bids.size());
int player = bid.player;
StorageReference bidInBlockchain = bid.intoBlockchain();
node.addInstanceMethodCallTransaction(TransactionRequests.instanceMethodCall
(signers.get(player), accounts[player],
nonceHelper.getNonceOf(accounts[player]), chainId, _500_000,
panarea(gasHelper.getSafeGasPrice()),
classpath, REVEAL, auction, bidInBlockchain));
}
}
private StorageReference askForWinner() throws Exception {
StorageValue winner = node.addInstanceMethodCallTransaction
(TransactionRequests.instanceMethodCall
(signers.get(0), accounts[0], nonceHelper.getNonceOf(accounts[0]),
chainId, _500_000, panarea(gasHelper.getSafeGasPrice()),
classpath, AUCTION_END, auction)).get();
// the winner is normally a StorageReference,
// but it could be a NullValue if all bids were fake
return winner instanceof StorageReference ? (StorageReference) winner : null;
}
private void waitUntilEndOfBiddingTime() {
waitUntil(BIDDING_TIME + 5000);
}
private void waitUntilEndOfRevealTime() {
waitUntil(BIDDING_TIME + REVEAL_TIME + 5000);
}
/**
* Waits until a specific time after start.
*/
private void waitUntil(long duration) {
try {
Thread.sleep(start + duration - System.currentTimeMillis());
}
catch (InterruptedException e) {}
}
/**
* Hashes a bid and put it in the store of the node, in hashed form.
*/
private StorageReference codeAsBytes32
(int player, BigInteger value, boolean fake, byte[] salt) throws Exception {
digest.reset();
digest.update(value.toByteArray());
digest.update(fake ? (byte) 0 : (byte) 1);
digest.update(salt);
byte[] hash = digest.digest();
return createBytes32(player, hash);
}
/**
* Creates a Bytes32Snapshot object in the store of the node.
*/
private StorageReference createBytes32(int player, byte[] hash) throws Exception {
return node.addConstructorCallTransaction
(TransactionRequests.constructorCall(
signers.get(player),
accounts[player],
nonceHelper.getNonceOf(accounts[player]), chainId,
_500_000, panarea(gasHelper.getSafeGasPrice()),
classpath, CONSTRUCTOR_BYTES32_SNAPSHOT,
byteOf(hash[0]), byteOf(hash[1]),
byteOf(hash[2]), byteOf(hash[3]),
byteOf(hash[4]), byteOf(hash[5]),
byteOf(hash[6]), byteOf(hash[7]),
byteOf(hash[8]), byteOf(hash[9]),
byteOf(hash[10]), byteOf(hash[11]),
byteOf(hash[12]), byteOf(hash[13]),
byteOf(hash[14]), byteOf(hash[15]),
byteOf(hash[16]), byteOf(hash[17]),
byteOf(hash[18]), byteOf(hash[19]),
byteOf(hash[20]), byteOf(hash[21]),
byteOf(hash[22]), byteOf(hash[23]),
byteOf(hash[24]), byteOf(hash[25]),
byteOf(hash[26]), byteOf(hash[27]),
byteOf(hash[28]), byteOf(hash[29]),
byteOf(hash[30]), byteOf(hash[31])));
}
private KeyPair loadKeys(StorageReference account) {
try {
String password;
if (account.toString().equals(ADDRESSES[0]))
password = "chocolate";
else if (account.toString().equals(ADDRESSES[1]))
password = "orange";
else
password = "apple";
return Accounts.of(account, "..").keys
(password, SignatureHelpers.of(node).signatureAlgorithmFor(account));
}
catch (Exception e) {
throw new RuntimeException(e);
}
}
}
This test class is relatively long and complex. Let us start from its beginning. The code specifies that the test will place 10 random bids, that the bidding phase lasts 130 seconds and that the reveal phase lasts 170 seconds (these timings are fine on a blockchain that creates a block every five seconds; shorter block creation times allow shorter timings):
public final static int NUM_BIDS = 10;
public final static int BIDDING_TIME = 130_000;
public final static int REVEAL_TIME = 170_000;
Some constant signatures follow,
that simplify the calls to methods and constructors later.
Method main()
connects to a remote node and passes it
as a parameter to the constructor of class Auction
, that
installs auction-0.0.1.jar
inside it. It stores the node in field node
.
Then the constructor of Auction
creates an auction
contract in the node
and calls method placeBids()
that
uses the inner class BidToReveal
to keep track of the bids placed
during the test, in clear. Initially, bids are kept in
memory, not in the store of the node, where they could be publicly accessed.
Only their hashes are stored in the node.
Method placeBids()
generates NUM_BIDS
random bids on behalf
of the accounts.length -1
players (the first element of the
accounts
array is the creator of the auction):
int i = 1;
while (i <= NUM_BIDS) {
int player = 1 + random.nextInt(accounts.length - 1);
BigInteger deposit = BigInteger.valueOf(random.nextInt(1000));
BigInteger value = BigInteger.valueOf(random.nextInt(1000));
boolean fake = random.nextBoolean();
var salt = new byte[32];
random.nextBytes(salt);
...
}
Each random bid is hashed (including a random salt) and a Bytes32Snapshot
object
is created in the store of the node, containing that hash:
StorageReference bytes32 = codeAsBytes32(player, value, fake, salt);
The bid, in clear, is added to a list bids
that, at the end of the loop,
will contain all bids:
bids.add(new BidToReveal(player, value, fake, salt));
The hash is used instead to place a bid in the node:
node.addInstanceMethodCallTransaction(TransactionRequests.instanceMethodCall
(signers.get(player), accounts[player],
nonceHelper.getNonceOf(accounts[player]), chainId,
_500_000, panarea(gasHelper.getSafeGasPrice()), classpath, BID,
auction, StorageValues.bigIntegerOf(deposit), bytes32));
The loop takes also care of keeping track of the best bidder, that placed the best bid, so that it can be compared at the end with the best bidder computed by the smart contract (they should coincide):
if (!fake && deposit.compareTo(value) >= 0)
if (expectedWinner == null || value.compareTo(maxBid) > 0) {
maxBid = value;
expectedWinner = accounts[player];
}
else if (value.equals(maxBid))
continue;
As you can see, the test above avoids generating a bid that is equal to the best bid seen so far. This avoids having two bidders that place the same bid: the smart contract will consider as winner the first bidder that reveals its bids. To avoid this tricky case, we prefer to assume that the best bid is unique. This is just a simplification of the testing code, since the smart contract deals perfectly with that case.
After all bids have been placed, the constructor of Auction
waits until the end of
the bidding time:
waitUntilEndOfBiddingTime();
Then the constructor of Auction
calls method revealBids()
, that reveals
the bids to the smart contract, in plain. It creates in the store of the node
a data structure
RevealedBid
for each elements of the list bids
, by calling
bid.intoBlockchain()
.
This creates the bid in clear in the store of the node, but this is safe now,
since the bidding time is over and
they cannot be used to guess a winning bid anymore. Then method revealBids()
reveals the bids by calling method reveal()
of the
smart contract:
for (BidToReveal bid: bids) {
int player = bid.player;
StorageReference bidInBlockchain = bid.intoBlockchain();
node.addInstanceMethodCallTransaction(TransactionRequests.instanceMethodCall
(signers.get(player), accounts[player],
nonceHelper.getNonceOf(accounts[player]), chainId, _500_000,
panarea(gasHelper.getSafeGasPrice()),
classpath, REVEAL, auction, bidInBlockchain));
}
Note that this is possible since the inner class RevealedBid
of the
smart contract has been annotated as @Exported
(see its code in section A Blind Auction Contract),
hence its instances can be
passed as argument to calls from outside the blockchain.
Subsequently, the constructor of Auction
waits until the end of the reveal phase:
waitUntilEndOfRevealTime();
After that, method askForWinner()
signals to the smart contract that the auction is over and asks about the winner:
StorageValue winner = node.addInstanceMethodCallTransaction
(TransactionRequests.instanceMethodCall
(signers.get(0), accounts[0], nonceHelper.getNonceOf(accounts[0]),
chainId, _500_000, panarea(gasHelper.getSafeGasPrice()),
classpath, AUCTION_END, auction)).get();
The final two System.out.println()
's in the constructor of Auction
allow one to verify that the smart contract
actually computes the right winner, since they will always print the identical storage
object (different at each run, in general), such as:
expected winner: eec01b6f22911f76dbd25bda6f850e9af9e8640a4530a46c1909f48b9c7976a3#0
actual winner: eec01b6f22911f76dbd25bda6f850e9af9e8640a4530a46c1909f48b9c7976a3#0
You can run class Auction
from Eclipse.
Please remember that the execution of this test will take a few minutes. Moreover,
remember to put your accounts at the beginning of Auction.java
and ensure that they have enough
balance for this long execution.
Its execution should print something like this on the console:
Installing jar
Creating contract
Placing bid 1
Placing bid 2
Placing bid 3
...
Placing bid 10
Revealing bid 1 out of 20
Revealing bid 2 out of 20
Revealing bid 3 out of 20
...
Revealing bid 10 out of 10
expected winner: 12441d4a2f52e80f93e726040fbc364b75e7fedbef96887110df678794d791ea#0
actual winner: 12441d4a2f52e80f93e726040fbc364b75e7fedbef96887110df678794d791ea#0
[See project runs
inside the hotmoka_tutorial
repository]
The BlindAuction
contract generates events during its execution. If an external tool, such
as a wallet, wants to listen to such events and trigger some activity when they occur,
it is enough for it to subscribe to the events of a node that is executing the contract,
by providing a handler that gets executed each time a new event gets generated.
Subscription requires to specify the creator of the events that should be forwarded to the
handler. In our case, this is the auction
contract. Thus, clone the Auction.java
class into
Events.java
and modify its constructor as follows:
...
import io.hotmoka.node.api.NodeException;
...
auction = createAuction();
start = System.currentTimeMillis();
try (var subscription = node.subscribeToEvents(auction, this::eventHandler)) {
StorageReference expectedWinner = placeBids();
waitUntilEndOfBiddingTime();
revealBids();
waitUntilEndOfRevealTime();
StorageValue winner = askForWinner();
System.out.println("expected winner: " + expectedWinner);
System.out.println("actual winner: " + winner);
}
private void eventHandler(StorageReference creator, StorageReference event) {
try {
System.out.println
("Seen event of class " + node.getClassTag(event).getClazz()
+ " created by contract " + creator);
}
catch (NodeException | UnknownReferenceException | TimeoutException e) {
System.out.println("The node is misbehaving: " + e.getMessage());
}
catch (InterruptedException e) {
Thread.currentThread().interrupt();
}
}
...
The event handler, in this case, simply prints on the console the class of the event and its creator
(that will coincide with auction
).
If you run the Events
class,
you should see something like this on the console:
Seen event of class io.takamaka.auction.BidIncrease
created by contract 310d241d1f5dbe955f25ede96be324ade...#0
Seen event of class io.takamaka.auction.BidIncrease
created by contract 310d241d1f5dbe955f25ede96be324ade...#0
Seen event of class io.takamaka.auction.BidIncrease
created by contract 310d241d1f5dbe955f25ede96be324ade...#0
Seen event of class io.takamaka.auction.AuctionEnd
created by contract 310d241d1f5dbe955f25ede96be324ade...#0
The
subscribeToEvents()
method returns aSubscription
object that should be closed when it is not needed anymore, in order to reduce the overhead on the node. Since it is anAutoCloseable
resource, the recommended technique is to use a try-with-resource construct, as shown in the previous example.
In general, event handlers can perform arbitrarily complex operations and even access the event object in the store of the node, from its storage reference, reading its fields or calling its methods. Please remember, however, that event handlers are run in a thread of the node. Hence, they should be fast and shouldn't hang. It is good practice to let event handlers add events in a queue, in a non-blocking way. A consumer thread, external to the node, then retrieves the events from the queue and process them in turn.
It is possible to subscribe to all events generated by a node,
by using null
as creator in the subscribeToEvents()
method. Think twice before doing that,
since your handler will be notified of all events generated by any application installed in
the node. It might be a lot.
A popular class of smart contracts implement a dynamic ledger of coin transfers between accounts. These coins are not native tokens, but rather new, derived tokens. In some sense, tokens are programmed money, whose rules are specified by a smart contract and enforced by the underlying blockchain.
In this context, the term token is used for the smart contract that tracks coin transfers, for the single coin units and for the category of similar coins. This is sometime confusing.
Native and derived tokens can be categorized in many ways [OliveiraZBS18,Freni20,Tapscott20]. The most popular classification is between fungible and non-fungible tokens. Fungible tokens are interchangeable with each other, since they have an identical nominal value that does not depend on each specific token instance. Native tokens and traditional (fiat) currencies are both fungible tokens. Their main application is in the area of crowdfunding and initial coin offers to support startups. On the contrary, non-fungible tokens have a value that depends on their specific instance. Hence, in general, they are not interchangeable. Their main application is currently in the art market, where they represent a written declaration of author's rights concession to the holder.
A few standards have emerged for such tokens, that should guarantee correctness, accessibility, interoperability, management and security of the smart contracts that run the tokens. Among them, the Ethereum Requests for Comment #20 (ERC-20, see https://eips.ethereum.org/EIPS/eip-20) and #721 (ERC-721, see https://eips.ethereum.org/EIPS/eip-721) are the most popular, also outside Ethereum. They provide developers with a list of rules required for the correct integration of tokens with other smart contracts and with applications external to the blockchain, such as wallets, block explorers, decentralized finance protocols and games.
The most popular implementations of the ERC-20 and ERC-721 standards are in Solidity, by OpenZeppelin (see https://docs.openzeppelin.com/contracts/2.x/erc20 and https://docs.openzeppelin.com/contracts/2.x/erc721), a team of programmers in the Ethereum community who deliver useful and secure smart contracts and libraries, and by ConsenSys, later deprecated in favor of OpenZeppelin's. OpenZeppelin extends ERC-20 with snapshots, that is, immutable views of the state of a token contract, that show its ledger at a specific instant of time. They are useful to investigate the consequences of an attack, to create forks of the token and to implement mechanisms based on token balances such as weighted voting.
A fungible token ledger is a ledger that binds owners (contracts) to
the numerical amount of tokens they own. With this very high-level description,
it is an instance of the IERC20View
interface in Figure 32.
The balanceOf
method tells how many tokens an account
holds and the method
totalSupply
provides the total number of tokens in circulation.
The UnsignedBigInteger
class is a Takamaka library class that wraps a BigInteger
and guarantees that its value is never negative. For instance, the subtraction of two
UnsignedBigInteger
s throws an exception when the second is larger than the first.
Figure 32. The hierarchy of the ERC20 token implementations
The snapshot
method, as already seen for collection classes, yields a read-only,
frozen view of the latest state of the token ledger.
Since it is defined in the topmost interface, all token classes
can be snapshotted. Snapshots are computable in constant time.
In the original ERC20 standard and implementation in Ethereum, only specific subclasses allow snapshots, since their creation adds gas costs to all operations, also for token owners that never performed any snapshot. See the arguments and comparison in [CrosaraOST21].
An ERC20 ledger is typically modifiable. Namely, owners
can sell tokens to other owners
and can delegate trusted contracts to transfer tokens on their behalf.
Of course, these operations must be legal, in the sense that a owner cannot sell
more tokens than it owns and delegated contracts cannot transfer more tokens than the
cap to their delegation.
These modification operations are defined in the
IERC20
interface in Figure 32. They are identical to the same
operations in the ERC20 standard for Ethereum, hence we refer to that standard for further detail.
The view()
method is used to yield a view of the ledger, that is, an object
that reflects the current state of the original ledger, but without any modification operation.
The ERC20
implementation provides a standard implementation for the functions defined
in the IERC20View
and IERC20
interfaces. Moreover, it provides metadata information
such as the name, symbol and number of decimals for the specific token implementation.
There are protected implementations for methods that allow one to mint or burn an amount
of tokens for a given owner (account
). These are protected since one does not
want to allow everybody to print or burn money. Instead, subclasses can call into these
methods in their constructor, to implement an initial distribution of tokens,
and can also allow subsequent, controlled mint or burns.
For instance, the ERC20Burnable
class is an ERC20
implementation that
allows a token owner to burn its tokens only, or those it has been
delegated to transfer, but never those of another owner.
The ERC20Capped
implementation allows the specification of a maximal cap to the
number of tokens in circulation. When new tokens get minted, it checks that the cap
is not exceeded and throws an exception otherwise.
[See project erc20
inside the hotmoka_tutorial
repository]
Let us define a token ledger class that allows only its creator the mint or burn tokens.
We will call it CryptoBuddy
. As Figure 32 shows,
we plug it below the ERC20
implementation, so that we inherit that implementation
and do not need to reimplement the methods of the ERC20
interface.
Create in Eclipse a new Maven Java 11 (or later) project named erc20
.
You can do this by duplicating the project family
(make sure to store
the project inside the hotmoka_tutorial
directory, as a sibling of family
, ponzi
, tictactoe
and so on). Use the following pom.xml
:
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>io.hotmoka.tutorial</groupId>
<artifactId>family</artifactId>
<version>0.0.1</version>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.release>11</maven.compiler.release>
</properties>
<dependencies>
<dependency>
<groupId>io.hotmoka</groupId>
<artifactId>io-takamaka-code</artifactId>
<version>1.3.1</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.11.0</version>
</plugin>
</plugins>
</build>
</project>
and the following module-info.java
:
module erc20 {
requires io.takamaka.code;
}
Create package io.takamaka.erc20
inside src/main/java
and add
the following CryptoBuddy.java
inside that package:
package io.takamaka.erc20;
import static io.takamaka.code.lang.Takamaka.require;
import io.takamaka.code.lang.Contract;
import io.takamaka.code.lang.FromContract;
import io.takamaka.code.math.UnsignedBigInteger;
import io.takamaka.code.tokens.ERC20;
public class CryptoBuddy extends ERC20 {
private final Contract owner;
public @FromContract CryptoBuddy() {
super("CryptoBuddy", "CB");
owner = caller();
var initialSupply = new UnsignedBigInteger("200000");
var multiplier = new UnsignedBigInteger("10").pow(18);
_mint(caller(), initialSupply.multiply(multiplier)); // 200'000 * 10 ^ 18
}
public @FromContract void mint(Contract account, UnsignedBigInteger amount) {
require(caller() == owner, "Lack of permission");
_mint(account, amount);
}
public @FromContract void burn(Contract account, UnsignedBigInteger amount) {
require(caller() == owner, "Lack of permission");
_burn(account, amount);
}
}
The constructor of CryptoBuddy
initializes the total supply by minting
a very large number of tokens. They are initially owned by the creator of the contract,
that is saved as owner
. Methods mint
and burn
check that the owner is requesting
the mint or burn and call the inherited protected methods in that case.
You can generate the erc20-0.0.1.jar
file:
$ cd erc20
$ mvn package
Then you can install that jar in the node, by letting our first account pay:
$ cd ..
$ moka install erc20/target/erc20-0.0.1.jar
--payer 5f705b7dc5869ae39db3bc80b7cd073c2bb55726706749138d16a4a9d0f01766#0
--uri ws://panarea.hotmoka.io
Please specify the password of the payer account: chocolate
Do you really want to spend up to 504100 gas units to install the jar [Y/N] Y
erc20/target/erc20-0.0.1.jar has been installed at
3b8157f04217918a76b48fc0f4388b4bece80ad0e542c42722a887d648cd314d
Total gas consumed: 244568
for CPU: 262
for RAM: 1303
for storage: 243003
for penalty: 0
Finally, you can create an instance of the token class, by always letting our first account pay for that:
$ moka create
io.takamaka.erc20.CryptoBuddy
--payer 5f705b7dc5869ae39db3bc80b7cd073c2bb55726706749138d16a4a9d0f01766#0
--classpath 3b8157f04217918a76b48fc0f4388b4bece80ad0e542c42722a887d648cd314d
--uri ws://panarea.hotmoka.io
Please specify the password of the payer account: chocolate
Do you really want to spend up to 500000 gas units to call CryptoBuddy() ? [Y/N] Y
The new object has been allocated at
2daa4ce2dbd152bcb4917fdd1574173373c77b306bcd754309da38a138ebed17#0
Total gas consumed: 129369
for CPU: 1314
for RAM: 2843
for storage: 125212
for penalty: 0
The new ledger instance is installed in the storage of the node now, at the address
2daa4ce2dbd152bcb4917fdd1574173373c77b306bcd754309da38a138ebed17#0
. It is possible to start interacting with that ledger instance, by transferring
tokens between accounts. For instance, this can be done with the moka call
command,
that allows one to invoke the transfer
or transferFrom
methods of the ledger.
It is possible to show the state of the ledger with the moka state
command, although specific
utilities will provide a more user-friendly view of the ledger in the future.
Every owner of ERC20 tokens can decide to send some of its tokens to another
contract C, that will become an owner itself, if it was not already.
This means that the ledger inside
an ERC20
implementation gets modified and some tokens get registered for
the new owner C. However, C is not notified in any way of this transfer.
This means that our contracts could be richer than we expect, if somebody
has sent tokens to them, possibly inadvertently. In theory, we could
scan the whole memory of a Hotmoka node, looking for implementations
of the IERC20
interface, and check if our contracts are registered inside them.
Needless to say, this is computationally irrealistic.
Moreover, even if we know that one of our contracts is waiting to receive
some tokens, we don't know immediately when this happens, since
the contract does not get notified of any transfer of tokens.
This issue is inherent to the definition of the ERC20 standard in Ethereum
and the implementation in Takamaka inherits this limitation, since it wants to stick
as much as possible to the Ethereum standard. A solution to the problem
would be to restrict the kind of owners that are allowed in Figure 32.
Namely, instead of allowing all Contract
s, the signature of the methods could
be restricted to owners of some interface type IERC20Receiver
, with a single method
onReceive
that gets called by the ERC20
implementation, every time
tokens get transferred to an IERC20Receiver
.
In this way, owners of ERC20 tokens get notified when they receive new tokens.
This solution has never been implemented for ERC20 tokens in Ethereum, while
it has been used in the ERC721 standard for non-fungible tokens, as we will
show in the next section.
A non-fungible token is implemented as a ledger that maps each token identifier to its owner.
Ethereum provides the ERC721 specification for non-fungible tokens.
There, a token identifier is an array of bytes. Takamaka uses, more generically,
a BigInteger
. Note that a BigInteger
can be constructed from an array of bytes
by using the constructor of class BigInteger
that receives an array of bytes.
In the ERC721 specification, token owners are contracts, although the implementation will check
that only contracts implementing the IERC721Receiver
interface are added
to an IERC721
ledger, or externally owned accounts.
The reason for allowing externally owned accounts is probably a simplification, since Ethereum users own externally owned accounts and it is simpler for them to use such accounts directly inside an ERC721 ledger, instead of creating contracts of type
IERC721Receiver
. In any case, no other kind of contracts is allowed in ERC721 implementations.
The hierarchy of the Takamaka classes for the ERC721 standard is shown in Figure 33.
As in the case of the ERC20 tokens, the interface IERC721View
contains
the read-only operations that implement a ledger of non-fungible
tokens: the ownerOf
method yields the owner of a given token and
the balanceOf
method returns the number of tokens held by a given account
.
The snapshot()
method yields a frozen, read-only view of the latest state of the ledger.
The IERC721
subinterface adds methods for token transfers.
Please refer to their description given by the Ethereum standard.
We just say here that
the transferFrom
method moves a given token from its previous
owner to a new owner. The caller of this method can be the owner of the
token, but it can also be another contract, called operator,
as long as the latter has
been previously approved by the token owner, by using the
approve
method. It is also possible to approve an operator for all
one's tokens (or remove such approval), through the setApprovalForAll
method.
The getApproved
method tells who is the operator approved for a given token
(if any) and the isApprovedForAll
method tells if a given operator has been
approved to transfer all tokens of a given owner
. The view
method
yields a read-only view of the ledger, that reflects all future changes to the ledger.
The implementation ERC721
provides standard implementations for all methods
of IERC721View
and IERC721
, adding metadata information about the name and the
symbol of the token and protected methods for minting and burning
new tokens. These are meant to be called in subclasses, such as
ERC721Burnable
. Namely, the latter adds a burn
method that allows the owner of a token
(or its approved operator) to burn the token.
As we have already said previously, the owners of the tokens are declared as contracts
in the IERC721View
and IERC721
interfaces, but the ERC721
implementation
actually requires them to be IERC71Receiver
s or externally owned accounts.
Otherwise, the methods of ERC721
will throw an exception.
Moreover, token owners that implement the IERC721Receiver
interface
get their onReceive
method called whenever new tokens are transferred to them.
The ERC721 standard requires
onReceive
to return a special message, in order to prove that the contract actually executed that method. This is a very technical necessity of Solidity, whose first versions allowed one to call non-existent methods without getting an error. It is a sort of security measure, since Solidity has noinstanceof
operator and cannot check in any reliable way that the token owners are actually instances of the interfaceIERC721Receiver
. The implementation in Solidity uses the ERC165 standard for interface detection, but that standard is not a reliable replacement ofinstanceof
, since a contract can always pretend to belong to any contract type. Takamaka is Java and can use theinstanceof
operator, that works correctly. As a consequence, theonReceive
method in Takamaka needn't return any value.
[See project erc721
inside the hotmoka_tutorial
repository]
Let us define a ledger for non-fungible tokens
that only allows its creator the mint or burn tokens.
We will call it CryptoShark
. As Figure 33 shows,
we plug it below the ERC721
implementation, so that we inherit that implementation
and do not need to reimplement the methods of the ERC721
interface.
The code is almost identical to that for the CryptoBuddy
token defined
in Implementing Our Own ERC20 Token.
Create in Eclipse a new Maven Java 11 (or later) project named erc721
.
You can do this by duplicating the project erc20
(make sure to store
the project inside the hotmoka_tutorial
directory, as a sibling of family
, ponzi
, tictactoe
and so on). Use the following pom.xml
:
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>io.hotmoka.tutorial</groupId>
<artifactId>family</artifactId>
<version>0.0.1</version>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.release>11</maven.compiler.release>
</properties>
<dependencies>
<dependency>
<groupId>io.hotmoka</groupId>
<artifactId>io-takamaka-code</artifactId>
<version>1.3.1</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.11.0</version>
</plugin>
</plugins>
</build>
</project>
and the following module-info.java
:
module erc721 {
requires io.takamaka.code;
}
Create package io.takamaka.erc721
inside src/main/java
and add
the following CryptoShark.java
inside that package:
package io.takamaka.erc721;
import static io.takamaka.code.lang.Takamaka.require;
import java.math.BigInteger;
import io.takamaka.code.lang.Contract;
import io.takamaka.code.lang.FromContract;
import io.takamaka.code.tokens.ERC721;
public class CryptoShark extends ERC721 {
private final Contract owner;
public @FromContract CryptoShark() {
super("CryptoShark", "SHK");
owner = caller();
}
public @FromContract void mint(Contract account, BigInteger tokenId) {
require(caller() == owner, "Lack of permission");
_mint(account, tokenId);
}
public @FromContract void burn(BigInteger tokenId) {
require(caller() == owner, "Lack of permission");
_burn(tokenId);
}
}
The constructor of CryptoShark
takes note of the creator of the token.
That creator is the only that is allowed to mint or burn tokens, as
you can see in methods mint
and burn
.
You can generate the erc721-0.0.1.jar
file:
$ cd erc721
$ mvn package
Then you can install that jar in the node and create an instance of the token
exactly as we did for the CryptoBuddy
ERC20 token before.
A Hotmoka node is a device that implements an interface for running Java code
remotely. It can be any kind of device, such as a device of an IoT network,
but also a node of a blockchain. We have already used instances of Hotmoka nodes,
namely, instances of RemoteNode
. But there are other examples of nodes, that we
will describe in this chapter.
The interface io.hotmoka.node.api.Node
is shown in the topmost part of Figure 34.
That interface can be split in five parts:
- A
get
part, that includes methods for querying the state of the node and for accessing the objects contained in its store. - An
add
part, that expands the store of the node with the result of a transaction. - A
run
part, that runs transactions that execute@View
methods and hence do not expand the store of the node. - A
post
part, that expands the store of the node with the result of a transaction, without waiting for its result; instead, a future is returned. - A
contextual
part, that allows users to subscribe listeners of events generated during the execution of the transactions, or listeners called when the node gets closed, or to close the node itself.
Figure 34. The hierarchy of Hotmoka nodes.
If a node belongs to a blockchain, then all nodes of the blockchain have the same vision
of the state, so that it is equivalent to call a method on a node or on any other node of the
network. The only methods that are out of consensus, since they deal with information specific
to each node, are getInfo
and the four contextual methods
subscribeToEvents
, addOnCloseHandler
, removeOnCloseHandler
and close
.
Looking at Figure 34, it is possible to see that
the Node
interface has many implementations, that we describe below.
Local Implementations are actual nodes that run on the machine
where they have been started. For instance, they can be a node
of a larger blockchain network. Among them,
TendermintNode
implements a node of a Tendermint blockchain
and will be presented in Tendermint Nodes.
DiskNode
implements a single-node blockchain in disk memory.
It is useful for debugging, testing and learning, since it allows
one to inspect the content of blocks, transactions and store.
It will be presented in Disk Nodes.
Local nodes can be instantiated through the static
factory method init()
of their supplier class. That method requires to specify
parameters that are global to the network of nodes (ConsensusConfig
) and must be the same
for all nodes in the network, and parameters that are specific to the given node
of the network that is being started
and can be different from node to node (TendermintNodeConfig
and similar).
Some implementations have to ability to resume.
This means that they recover the state at the end of a previous execution, reconstruct the
consensus parameters from that state and resume the execution from there, downloading
and verifying blocks already processed by the network. In order to resume
a node from an already existing state, the static resume()
method of its supplier class
must be used.
The Node
interface is implemented by some decorators as well.
Typically, these decorators run some transactions on the decorated node,
to simplify some tasks, such as the initialization of the node, the installation of jars into the node
or the creation of accounts in the node. These decorators are views of the decorated node, in the sense
that any method of the Node
interface, invoked on the decorator, is forwarded
to the decorated node, with the exception of the contextual methods that are executed locally
on the specific node where they are invoked.
We will discuss them in Node Decorators.
Very often, one wants to publish a node online,
so that we (and other programmers who need its service) can use it concurrently.
This should be possible for all implementations of the Node
interface,
such as DiskNode
, TendermintNode
and all present and future implementations.
In other words, we would like to publish any
Hotmoka node as a service, accessible through the internet. This will be the subject
of Hotmoka Services.
Conversely, once a Hotmoka node has been published at some URI, say
ws://my.company.com
, it will be accessible through websockets. This complexity
might make it awkward, for a programmer, to use the published node.
In that case, we can create an instance of Node
that operates as
a proxy to the network service, helping programmers integrate
their software to the service in a seamless way. This remote node still implements
the Node
interface, but simply forwards all its calls to the remote service
(with the exception of the contextual methods, that are executed locally on
the remote node itself). By programming against
the same Node
interface, it becomes easy for a programmer
to swap a local node with a remote node, or
vice versa. This mechanism is described in
Remote Nodes,
where the adaptor interface RemoteNode
in Figure 34 is presented.
Tendermint [Tendermint] is a Byzantine-fault tolerant engine for building blockchains, that replicates a finite-state machine on a network of nodes across the world. The finite-state machine is often referred to as a Tendermint app. The nice feature of Tendermint is that it takes care of all issues related to networking and consensus, leaving to the developer only the task to develop the Tendermint app.
Figure 35. The architecture of the Hotmoka node based on Tendermint.
There is a Hotmoka node that implements such a Tendermint app,
for programming in Takamaka over Tendermint. We have already used that node
in the previous chapter, since that installed at
ws://panarea.hotmoka.io
is a node of that type.
Figure 35
shows the architecture of a Tendermint Hotmoka node.
It consists of a few components.
The Hotmoka component is the Tendermint app that
implements the transactions on the state, resulting from the installation
of jars and the execution of code written in the Takamaka subset of Java. This part is the same in every
implementation of a Hotmoka node, not only for this one based on Tendermint.
In most cases, as here, the database that contains the state is implemented by
using the Xodus transactional database by IntelliJ.
What is specific here, however, is that transactions are put inside a blockchain
implemented by Tendermint. The communication occurs, internally, through the two TCP ports
26657 and 26658, that are the standard choice of Tendermint for communicating with an app.
Clients can contact the Hotmoka node
through any port, typically but not exclusively 80 or 8001,
as a service that implements the interface Node
in Figure 34.
The node can live alone but is normally integrated with other Hotmoka nodes based on Tendermint, so that
they execute and verify the same transactions, reaching the same state at the end. This happens through
the TCP port 26656, that allows Tendermint instances to gossip: they exchange transactions and information on peers
and finally reach consensus.
Each node can be configured to use a different port to communicate with clients,
which is useful if, for instance, ports 80 or 8001 (or both)
are already used by some other service.
Port 26656 must be the same for all nodes in the network, since they must communicate on
a standard port.
We can use ws://panarea.hotmoka.io
to play with
accounts and Takamaka contracts. However, we might want to
install our own node, part of the same blockchain network of ws://panarea.hotmoka.io
or part of a brand new blockchain. In the former case, our own node will execute
the transactions, exactly as ws://panarea.hotmoka.io
, so that we can be sure that they are
executed according to the rules. In the latter case, we can have our own blockchain that
executes our transactions only, instead of using a shared blockchain such as that
at ws://panarea.hotmoka.io
.
This section shows how you can start your own Hotmoka Tendermint node, consisting of a single validator node, hence part of its own blockchain. The process is not difficult but is a bit tedious, because it requires one to install Tendermint and to create its configuration files. Section Starting a Tendermint Node with Docker in the next chapter provides a simpler alternative for reaching the same goal, by using the Docker tool.
We strongly suggest you to use Docker to install Hotmoka nodes, instead of the instructions in this section, hence please follow the instructions in Starting a Tendermint Node with Docker. The current section only exists in order to understand what happens inside the Docker container. If you are not a developer, or if you are not interested in the topic, please skip this section and jump directly to the next chapter.
In order to use a Tendermint Hotmoka node, the Tendermint executable must be installed in our machine, or our experiments will fail. The Hotmoka node works with Tendermint version 0.34.15, that can be downloaded in executable form from https://github.com/tendermint/tendermint/releases/tag/v0.34.15. Be sure that you download the executable for the architecture of your computer and install it at a place that is part of the command-line path of your computer. This means that, if you run the following command in a shell:
$ tendermint version
the answer must be
0.34.15
or similar, as long as the version starts with 0.34.15. Our Hotmoka node built on Tendermint is known to work on Windows, MacOs and Linux machines.
Before starting a local node of a Hotmoka blockchain based on Tendermint, you need to create the Tendermint configuration file. For instance, in order to run a single validator node with no non-validator nodes, you can create its configuration files as follows:
$ tendermint testnet --v 1 --n 0
This will create a directory mytestnet/node0
for a single Tendermint node, that includes the configuration
of the node and its private and public validator keys.
Once this is done, you can create a key pair for the gamete
of the node that you are going to start. You perform this with moka
:
$ moka create-key
Please specify the password of the new key: king
A new key FaHYC1TxCJBcpgz8FrXy2bidwNBgPjPg1L7GEHaDHwmZ has been created.
Its entropy has been saved into the file
"./FaHYC1TxCJBcpgz8FrXy2bidwNBgPjPg1L7GEHaDHwmZ.pem".
The entropy is a representation of the key pair. The name of the file
is the Base58-encoded public key of the pair. While the entropy and the password are secret information
that you should not distribute, the public key can be used to create a new node.
Namely, you can start a Hotmoka node based on Tendermint,
that uses the Tendermint configuration
directory that you have just created,
by using the moka init-tendermint
command. You also need
to specify how much coins are minted for the gamete
and where is the jar of the runtime of Takamaka, that will
be stored inside the node as takamakaCode
: we use the
local Maven's cache for that:
$ moka init-tendermint 100000000000000
--tendermint-config mytestnet/node0
--takamaka-code ~/.m2/repository/io/hotmoka/io-takamaka-code/
1.3.1/io-takamaka-code-1.3.1.jar
--key-of-gamete FaHYC1TxCJBcpgz8FrXy2bidwNBgPjPg1L7GEHaDHwmZ
Do you really want to start a new node at this place
(old blocks and store will be lost) [Y/N] Y
The following node has been initialized:
takamakaCode: b23118aa95fa436f951bdc78d5ffea99a7bd72cf1512bef3df2ea12993f18a70
manifest: 21d375ae9bac3b74d1a54a6418f7c70c2c107665fb2066a94dbf65cb3db9cdc6#0
chainId: chain-btmZzq
...
signature: ed25519
gamete: d2fc1b34d6e4b2d2d80f7665d5ef4d5eb81e927cebe2240aec4dda7c1173542b#0
balance: 100000000000000
maxFaucet: 0
...
...
The node has been published at ws://localhost:8001
The owner of the key of the gamete can bind it to its address now:
moka bind-key FaHYC1TxCJBcpgz8FrXy2bidwNBgPjPg1L7GEHaDHwmZ
--uri uri_of_this_node
or
moka bind-key FaHYC1TxCJBcpgz8FrXy2bidwNBgPjPg1L7GEHaDHwmZ
--reference d2fc1b34d6e4b2d2d80f7665d5ef4d5eb81e927cebe2240aec4dda7c1173542b#0
Press enter to exit this program and turn off the node
This command has done a lot! It has created an instance
of TendermintBlockchain
; it has stored the io-takamaka-code
jar
inside it, at a reference called takamakaCode
; it has created
a Java object, called manifest, that contains other objects, including
an externally-owned account named gamete
, whose public key is
that provided after --key-of-gamete
;
it has initialized the balance of the gamete to
the value passed after moka init-tendermint
. Finally, this command
has published an internet service at the URI ws://localhost:8001
,
reachable through websockets connections, that exports the API
of the node.
By default,
init-tendermint
publishes the service at port 8001. This can be changed with its--port
switch.
The chain identifier of the blockchain is specified inside the Tendermint configuration files. You can edit such files and set your preferred chain identifier before invoking
init-tendermint
.
In order to use the gamete, you should bind its key to its actual storage reference in the node, on your local machine. Open another shell, move inside the directory holding the keys of the gamete and digit:
$ moka bind-key FaHYC1TxCJBcpgz8FrXy2bidwNBgPjPg1L7GEHaDHwmZ
A new account d2fc1b34d6e4b2d2d80f7665d5ef4d5eb81e927cebe2240aec4dda7c1173542b#0
has been created.
Its entropy has been saved into the file
"./d2fc1b34d6e4b2d2d80f7665d5ef4d5eb81e927cebe2240aec4dda7c1173542b#0.pem".
This operation has created a pem file whose name is that of the storage reference of the gamete. With this file, it is possible to run transactions on behalf of the gamete.
Your computer exports a Hotmoka node now, running on Tendermint.
If your computer is reachable at some address my.machine
, anybody can contact
your node at ws://my.machine:8001
, query your node and run transactions on your node.
However, what has been created is a Tendermint node where all initial coins are inside
the gamete. By using the gamete, you can fill the node with objects
and accounts now, and in general run all transactions you want.
However, other users, who do not know the keys of the gamete,
will not be able to run any non-@View
transaction on your node.
If you want to open a faucet, so that other users can gain droplets of coins,
you must add the --open-unsigned-faucet
option to the moka init-tendermint
command above. If you do that, you can then go into another shell (since the previous one is busy with the
execution of the node), in a directory holding the keys of the gamete,
and type:
$ moka faucet 5000000
Please specify the password of the gamete account: king
which specifies the maximal amount of coins that
the faucet is willing to give away at each request (its flow). You can re-run the moka faucet
command many times, in order to change the flow of the faucet, or close it completely.
Needless to say, only the owner of the keys of the gamete can run the moka faucet
command,
which is why the file with the entropy
of the gamete must be in the directory where you run moka faucet
.
After opening a faucet with a sufficient flow, anybody can
re-run the examples of the previous chapters by replacing
ws://panarea.hotmoka.io
with ws://my.machine:8001
: your computer will serve
the requests and run the transactions.
If you turn off your Hotmoka node based on Tendermint, its state remains saved inside the
chain
directory: the chain/blocks
subdirectory is where Tendermint stores the blocks
of the chain; while chain/store
contains the Xodus database,
consisting of the storage objects created in blockchain.
Later, you can resume the node from that state, by typing:
$ moka resume-tendermint --tendermint-config mytestnet/node0
...
Press enter to exit this program and turn off the node
There is a log file that can be useful to check the state of our Hotmoka-Tendermint app.
Namely, tendermint.log
contains the log of Tendermint itself. It can be interesting
to inspect which blocks are committed and when:
I[2021-05-05|11:46:00.113] Version info, software=0.34.15 block=10 p2p=7
I[2021-05-05|11:46:00.248] Starting Node, impl=Node
I[2021-05-05|11:46:00.364] Started node, nodeInfo=
"{ProtocolVersion:{P2P:7 Block:10 App:0}
ID_:6615dcd76f7ecd1bde824c45f316c719b6bfe55c ListenAddr:tcp://0.0.0.0:26656
Network:chain-btmZzq Version:0.34.15 Channels:4020212223303800
Moniker:filicudi Other:{TxIndex:on RPCAddress:tcp://127.0.0.1:26657}}"
I[2021-05-05|11:46:04.597] Executed block, height=1 validTxs=1 invalidTxs=0
I[2021-05-05|11:46:04.657] Committed state, height=1 txs=1 appHash=E83360...
I[2021-05-05|11:46:05.377] Executed block, height=2 validTxs=1 invalidTxs=0
I[2021-05-05|11:46:05.441] Committed state, height=2 txs=1 appHash=C923A1...
...
I[2021-05-05|11:46:15.501] Executed block, height=9 validTxs=3 invalidTxs=0
I[2021-05-05|11:46:15.568] Committed state, height=9 txs=3 appHash=4876BD...
...
Note how the block height increases and that the application hash changes whenever a block
contains transactions (validTxs
>0), reflecting the fact that the state has been modified.
The Tendermint Hotmoka nodes of the previous section form a real blockchain.
They are perfect for deploying a blockchain where we can program smart contracts in
Takamaka. Nevertheless, they are slow for debugging: transactions are committed every few seconds,
by default. Hence, if we want to see the result of a transaction,
we have to wait for some seconds at least.
Moreover, Tendermint does not allow one to see the effects of each single transaction,
in a simple way. For testing, debugging and didactical purposes, it would be simpler to have a light node
that behaves like a blockchain, allows access to blocks and transactions as text files,
but is not a blockchain. This is the goal of the DiskNode
s.
They are not part of an actual blockchain since they do not duplicate transactions
in a peer-to-peer network, where
consensus is imposed. But they are very
handy because they allow one to inspect, very easily, the requests sent to
the node and the corresponding responses.
You can start a disk Hotmoka node, with an open faucet, exactly as you did,
in the previous section for a Tendermint node, but using the moka init-disk
command instead of moka init-tendermint
. You do not need any Tendermint configuration
this time, but still need a key to control the gamete of the node, that you can create
exactly as for a Tendermint Hotmoka node:
$ moka create-key
Please specify the password of the new key: king
A new key FaHYC1TxCJBcpgz8FrXy2bidwNBgPjPg1L7GEHaDHwmZ has been created.
Its entropy has been saved into the file
"./FaHYC1TxCJBcpgz8FrXy2bidwNBgPjPg1L7GEHaDHwmZ.pem".
You specify the public component of the key when starting the node:
$ moka init-disk 100000000000000000000000
--open-unsigned-faucet
--takamaka-code ~/.m2/repository/io/hotmoka/io-takamaka-code/
1.3.1/io-takamaka-code-1.3.1.jar
--key-of-gamete FaHYC1TxCJBcpgz8FrXy2bidwNBgPjPg1L7GEHaDHwmZ
Do you really want to start a new node at this place
(old blocks and store will be lost) [Y/N] Y
The following node has been initialized:
takamakaCode: b23118aa95fa436f951bdc78d5ffea99a7bd72cf1512bef3df2ea12993f18a70
manifest: ff7855ed728c2f323341d493a6a7b33218e4844b512c3dd86220e05fd0af7847#0
...
gamete: ee7a549a9419f6178efea6291121535efd71aa6c98233c89a4a0fae700a6efcc#0
...
The Hotmoka node has been published at ws://localhost:8001
The owner of the key of the gamete can bind it to its address now:
moka bind-key FaHYC1TxCJBcpgz8FrXy2bidwNBgPjPg1L7GEHaDHwmZ --uri uri_of_this_node
or
moka bind-key FaHYC1TxCJBcpgz8FrXy2bidwNBgPjPg1L7GEHaDHwmZ
--reference ee7a549a9419f6178efea6291121535efd71aa6c98233c89a4a0fae700a6efcc#0
Press enter to exit this program and turn off the node
Then, in another shell, move in the directory holding the keys of the gamete, bind the gamete to the keys and open the faucet:
$ moka bind-key FaHYC1TxCJBcpgz8FrXy2bidwNBgPjPg1L7GEHaDHwmZ
A new account ee7a549a9419f6178efea6291121535efd71aa6c98233c89a4a0fae700a6efcc#0
has been created.
Its entropy has been saved into the file
"./ee7a549a9419f6178efea6291121535efd71aa6c98233c89a4a0fae700a6efcc#0.pem".
$ moka faucet 5000000000000000
Please specify the password of the gamete account: king
You won't notice any real difference with Tendermint, but for the fact that this node is faster,
its chain identifier is the empty string and it has no validators. Blocks and transactions are
inside the chain
directory, that this time contains a nice textual representation of requests and
responses:
$ tree chain
chain
b0
0-b23118aa95fa436f951bdc78d5ffea99a7bd72cf1512bef3df2ea12993f18a70
request.txt
response.txt
1-ee7a549a9419f6178efea6291121535efd71aa6c98233c89a4a0fae700a6efcc
request.txt
response.txt
2-3c0ba38654c78476d488a4bfedcc1debf2c33c2c79979ee044ca583d68c2d4d0
request.txt
response.txt
3-951f3cb034c5b8ac9b7d40c4693ee73c46ae3f9b50120a3548f6b782474dc972
request.txt
response.txt
4-ff7855ed728c2f323341d493a6a7b33218e4844b512c3dd86220e05fd0af7847
request.txt
response.txt
b1
0-bc7b704430a5f683ee3c8d1df303d74172a3590526ec9ed738ebd3fa017b46ee
request.txt
response.txt
1-02cda6840f83b19a9e02884d80fda9f721575c35800c7ab9e005b9a80a5c9696
request.txt
response.txt
The exact ids and the number of these transactions will be different in your computer.
There are two blocks, b0
and b1
, each containing up to five transactions.
Each transaction is reported with its id and the pair request/response that the node has computed
for it. They are text files, that you can open to understand what is happening inside the node.
The transactions shown above are those that have initialized the node and opened the faucet. The last transaction inside each block is a reward transaction, that distributes the earnings of the block to the (zero, for disk nodes) validators and increases block height and number of transactions in the manifest.
Spend some time looking at the request.txt
and response.txt
files.
In particular, the last transaction inside b1
should be that triggered by your moka faucet
command. Open its request.txt
file. It should read like this:
InstanceMethodCallTransactionRequest:
caller: ee7a549a9419f6178efea6291121535efd71aa6c98233c89a4a0fae700a6efcc#0
nonce: 3
gas limit: 100000
gas price: 100
class path: b23118aa95fa436f951bdc78d5ffea99a7bd72cf1512bef3df2ea12993f18a70
method: void io.takamaka.code.lang.Gamete.setMaxFaucet(BigInteger, BigInteger)
actuals:
5000000000000000
0
receiver: ee7a549a9419f6178efea6291121535efd71aa6c98233c89a4a0fae700a6efcc#0
chainId:
signature: 6934f9b1b614ff1fb5cc0e84929b60a0fa4ca5f292c8946b796e3afae3e1b2d07...
You can clearly see that the moka faucet
command is actually calling
the setMaxFaucet
method of the gamete,
passing 5000000000000000
as new value for the flow of the faucet.
The caller (payer) and the receiver of the method invocation coincide, since they are both the
gamete. The signature has been generated with the keys of the gamete.
If you check the corresponding response.txt
, you will see something like:
VoidMethodCallTransactionSuccessfulResponse:
gas consumed for CPU execution: 329
gas consumed for RAM allocation: 1196
gas consumed for storage consumption: 9590
updates:
<ee7a549a9419f6178efea6291121535efd71aa6c98233c89a4a0fae700a6efcc#0|
io.takamaka.code.lang.Contract.balance:java.math.BigInteger|
9999999999999999999999999999999998888500>
<ee7a549a9419f6178efea6291121535efd71aa6c98233c89a4a0fae700a6efcc#0|
io.takamaka.code.lang.ExternallyOwnedAccount.nonce:java.math.BigInteger|
4>
<ee7a549a9419f6178efea6291121535efd71aa6c98233c89a4a0fae700a6efcc#0|
io.takamaka.code.lang.Gamete.maxFaucet:java.math.BigInteger|
5000000000000000>
events:
The response states clearly the cost of the transaction. Moreover, responses
typically report a set of updates. These are the side-effects on the state of the node,
induced by the transaction. Each update is a triple, that specifies a change in the value
of a field of a storage object. In this case, the three updates state that the
balance of the gamete has been decreased (because it paid for the transaction);
that its nonce has been increased to four (since it ran the transaction); and that the
maxFaucet
field of the gamete has been set to 5000000000000000.
All Hotmoka nodes generate a hotmoka.log
log file, that reports which transactions have been
processed and potential errors. Its content, in the case of a Tendermint node, looks like:
INFO: No roots found: the database is empty [05-05-2021 11:45:58]
INFO: Exodus environment created: chain/state [05-05-2021 11:45:58]
INFO: The Tendermint process is up and running [05-05-2021 11:46:00]
INFO: a18c0a...: posting (JarStoreInitialTransactionRequest) [05-05-2021 11:46:00]
INFO: a18c0a...: checking start [05-05-2021 11:46:00]
INFO: a18c0a...: checking success [05-05-2021 11:46:00]
INFO: a18c0a...: delivering start [05-05-2021 11:46:01]
INFO: a18c0a...: delivering success [05-05-2021 11:46:04]
INFO: 3cbaa2...: posting (GameteCreationTransactionRequest)
[05-05-2021 11:46:04]
INFO: 3cbaa2...: checking start [05-05-2021 11:46:04]
INFO: 3cbaa2...: checking success [05-05-2021 11:46:04]
INFO: 3cbaa2...: checking start [05-05-2021 11:46:05]
INFO: 3cbaa2...: checking success [05-05-2021 11:46:05]
INFO: 3cbaa2...: delivering start [05-05-2021 11:46:06]
INFO: 3cbaa2...: delivering success [05-05-2021 11:46:06]
INFO: 6ed545...: posting (ConstructorCallTransactionRequest) [05-05-2021 11:46:07]
...
INFO: Store get cache hit rate: 0.0% [05-05-2021 11:46:15]
INFO: Exodus log cache hit rate: 36.7% [05-05-2021 11:46:15]
INFO: Time spent in state procedures: 138ms [05-05-2021 11:46:15]
INFO: Time spent checking requests: 8ms [05-05-2021 11:46:15]
INFO: Time spent delivering requests: 2213ms [05-05-2021 11:46:15]
INFO: The Tendermint process has been shut down [05-05-2021 11:46:15]
If you want to follow in real time what is happening inside your node, you can run for instance:
$ tail -f hotmoka.log
This will hang and print the new log entries as they are generated. Assuming that you have a local node running in your machine, try for instance in another shell
$ moka info
You will see in the log all new entries related to the execution of the methods to access
the information on the node printed by moka info
.
Hotmoka nodes started with Docker disable the generation of the log files and dump logs to the standard output, where they can be accessed with the
docker logs
command. Therefore, they do not generate ahotmoka.log
file. See next chapter for information.
[See project runs
inside the hotmoka_tutorial
repository]
There are some frequent actions that can be performed on a Hotmoka node. Typically, these actions consist in a sequence of transactions. A few examples are:
- The creation of an externally owned account. This requires the creation
of its private and public keys and the instantiation of an
io.takamaka.code.lang.ExternallyOwnedAccount
. It is not a difficult procedure, but it is definitely tedious and occurs frequently. - The installation of a jar in a node. This requires a transaction for installing code in the node. It requires also to parse the jar into bytes and identify the number of gas units for the transaction, depending on the size of the jar.
- The initialization of a node. Namely, local nodes start empty, that is, their store does not contain anything at the beginning, not even their manifest object. This initialization is rather technical and detail might change in future versions of Hotmoka. Performing this initialization by hand leads to fragile and error-prone code.
In all these examples, Hotmoka provides decorators, that is, implementations of the
Node
interface built from an existing Node
object. A decorator is just an alias
to the decorated node, but adds some functionality or performs some action on it.
Figure 34 shows that there are decorators for each of the three
situations enumerated above.
In order to understand the use of node decorators and appreciate their existence,
let us write a Java class that creates a MemoryNode
, hence initially empty;
then it initializes the node; subsequently it installs our family-0.0.1.jar
file in the node and finally creates two accounts in the node. We stress the fact that
these actions
can be performed in code by using calls to the node interface (Figure 34);
they can also be performed through the moka
tool. Here, however, we want to perform them
in code, simplified by using node decorators.
Create the following Decorators.java
class inside the runs
package of the runs
project:
package runs;
import java.math.BigInteger;
import java.nio.file.Paths;
import java.security.KeyPair;
import io.hotmoka.crypto.Entropies;
import io.hotmoka.crypto.SignatureAlgorithms;
import io.hotmoka.helpers.AccountsNodes;
import io.hotmoka.helpers.InitializedNodes;
import io.hotmoka.helpers.JarsNodes;
import io.hotmoka.node.ConsensusConfigBuilders;
import io.hotmoka.node.disk.DiskNodeConfigBuilders;
import io.hotmoka.node.disk.DiskNodes;
import io.takamaka.code.constants.Constants;
public class Decorators {
public final static BigInteger SUPPLY = BigInteger.valueOf(1_000_000_000);
public static void main(String[] args) throws Exception {
var config = DiskNodeConfigBuilders.defaults().build();
// the path of the runtime Takamaka jar, inside Maven's cache
var takamakaCodePath = Paths.get
(System.getProperty("user.home") +
"/.m2/repository/io/hotmoka/io-takamaka-code/" + Constants.TAKAMAKA_VERSION
+ "/io-takamaka-code-" + Constants.TAKAMAKA_VERSION + ".jar");
// the path of the user jar to install
var familyPath = Paths.get("../family/target/family-0.0.1.jar");
// create a key pair for the gamete
var signature = SignatureAlgorithms.ed25519();
var entropy = Entropies.random();
KeyPair keys = entropy.keys("password", signature);
var consensus = ConsensusConfigBuilders.defaults()
.setInitialSupply(SUPPLY)
.setPublicKeyOfGamete(keys.getPublic()).build();
try (var node = DiskNodes.init(config)) {
// first view: store the io-takamaka-code jar and create manifest and gamete
var initialized = InitializedNodes.of(node, consensus, takamakaCodePath);
// second view: store family-0.0.1.jar: the gamete will pay for that
var nodeWithJars = JarsNodes.of(node, initialized.gamete(), keys.getPrivate(), familyPath);
// third view: create two accounts, the first with 10,000,000 units of coin
// and the second with 20,000,000 units of coin; the gamete will pay
var nodeWithAccounts = AccountsNodes.of
(node, initialized.gamete(), keys.getPrivate(),
BigInteger.valueOf(10_000_000), BigInteger.valueOf(20_000_000));
System.out.println("manifest: " + node.getManifest());
System.out.println("family-0.0.1.jar: " + nodeWithJars.jar(0));
System.out.println("account #0: " + nodeWithAccounts.account(0) +
"\n with private key " + nodeWithAccounts.privateKey(0));
System.out.println("account #1: " + nodeWithAccounts.account(1) +
"\n with private key " + nodeWithAccounts.privateKey(1));
}
}
}
Run class Decorators
from Eclipse.
It should print something like this on the console:
manifest: 5f1ebc34f4aef10e2c2eeac3558aae7d4df97f676f29ba9d7e28d0d1713c5ad5#0
family-0.0.1.jar: 7d6b33133647f0c84cc9550cc0010eab35329e0822df9706...
account #0: 64fd4337475541ed2aeb3d49149603142b5ec275d41bfc9ec29555c41739ea8e#0
with private key Ed25519 Private Key [ab:69:96:b0:9c:24:6d:a2:d2:d9:97:b4:...]
public data: 4e1d5299f31e19315e4f59c3ade35a8b8f1d1bf5feb9b042c349cc5e051e8e55
account #1: f0840b73741d3fceefc4e87a4d055a7044dbcbdeb8213636c0d810eba4cf60cc#0
with private key Ed25519 Private Key [cb:a5:ce:79:9b:98:25:3c:4d:44:7b:93:...]
public data: 46d9cbcbad683d1d21079558a20fbfb7c1feb6f9c07e33c0288d939df5...
You can see that the use of decorators has avoided us the burden of programming transaction requests, explicitly, and makes our code more robust, since future versions of Hotmoka will update the implementation of the decorators, while their interface will remain untouched, shielding our code from modifications.
As we have already said, decorators are
views of the same node, just seen through different lenses
(Java interfaces). Hence, further transactions can be run on
node
or initialized
or nodeWithJars
or nodeWithAccounts
, with the same
effects. Moreover, it is not necessary to close all such nodes: closing node
at
the end of the try-with-resource will actually close all of them, since they are the same node.
[See project runs
inside the hotmoka_tutorial
repository]
This section shows how we can publish a Hotmoka node online, by using Java code, so that it becomes a network service that can be used, concurrently, by many remote clients. Namely, we will show how to publish a blockchain node based on Tendermint, but the code is similar if you want to publish a memory Hotmoka node or any other Hotmoka node.
Remember that we have already published our nodes online, by using the
moka init-tendermint
and moka init-disk
commands.
Here, however, we want to do the same operation in code.
Create a class Publisher.java
inside package runs
of the runs
project,
whose code is the following:
package runs;
import java.math.BigInteger;
import java.nio.file.Paths;
import java.security.KeyPair;
import io.hotmoka.crypto.Entropies;
import io.hotmoka.crypto.SignatureAlgorithms;
import io.hotmoka.helpers.InitializedNodes;
import io.hotmoka.node.ValidatorsConsensusConfigBuilders;
import io.hotmoka.node.service.NodeServices;
import io.hotmoka.node.tendermint.TendermintNodeConfigBuilders;
import io.hotmoka.node.tendermint.TendermintNodes;
import io.takamaka.code.constants.Constants;
public class Publisher {
public final static BigInteger SUPPLY = BigInteger.valueOf(100_000_000);
public static void main(String[] args) throws Exception {
var config = TendermintNodeConfigBuilders.defaults().build();
// the path of the runtime Takamaka jar, inside Maven's cache
var takamakaCodePath = Paths.get
(System.getProperty("user.home") +
"/.m2/repository/io/hotmoka/io-takamaka-code/" + Constants.TAKAMAKA_VERSION +
"/io-takamaka-code-" + Constants.TAKAMAKA_VERSION + ".jar");
// create a key pair for the gamete and compute the Base64-encoding of its public key
var signature = SignatureAlgorithms.ed25519();
var entropy = Entropies.random();
KeyPair keys = entropy.keys("password", signature);
var consensus = ValidatorsConsensusConfigBuilders.defaults()
.setPublicKeyOfGamete(keys.getPublic())
.setInitialSupply(SUPPLY)
.build();
try (var original = TendermintNodes.init(config);
// uncomment the next line if you want to initialize the node
// var initialized = InitializedNodes.of(original, consensus, takamakaCodePath);
var service = NodeServices.of(original, 8001)) {
System.out.println("\nPress ENTER to turn off the server and exit this program");
System.in.read();
}
}
}
We have already seen that original
is a Hotmoka node based on Tendermint.
The subsequent line makes the feat:
var service = NodeServices.of(serviceConfig, original);
Variable service
holds a Hotmoka service, that is, an actual network service that adapts
the original
node to a web API that is published at localhost, at port 8001
(another port number can be required to the factory
method NodeServices.of
, if needed). The service
is an AutoCloseable
object: it starts when it is created and gets shut down
when its close()
method is invoked, which occurs, implicitly, at the end of the
scope of the try-with-resources. Hence, this service remains online until the user
presses the ENTER key and terminates the service (and the program).
Run class Publisher
from Eclipse.
It should run for a few seconds and then start waiting for the ENTER key. Do not press such key yet!
Since original
is not initialized yet, it has no manifest and no gamete. Its store is just empty
at the moment. You canverify that by running:
$ moka info
which will fail since it cannot find a manifest in the node.
Thus, let us initialize the node before publishing it, so that it is already
initialized when published. Press ENTER to terminate the service, then modify
the Publisher.java
class by uncommenting the use of the InitializedNode
decorator,
whose goal is to create manifest and gamete of the node
and install the basic classes of the Takamaka runtime inside the node.
Note that we have published
original
:var service = NodeServices.of(original, 8001);We could have published
initialized
instead:var service = NodeServices.of(initialized, 8001);The result would be the same, since both are views of the same node object. Moreover, note that we have initialized the node inside the try-with-resource, before publishing the service as the last of the three resources. This ensures that the node, when published, is already initialized. In principle, publishing an uninitialized node, as done previously, exposes to the risk that somebody else might initialize the node, hence taking its control since he will set the keys of the gamete.
If you re-run class Publisher
and retry the moka info
command, you should see
the manifest of the now initialized node on the screen.
A Hotmoka node, once published, can be accessed by many users, concurrently. This is not a problem, since Hotmoka nodes are thread-safe and can be used in parallel by many users. Of course, this does not mean that there are no race conditions at the application level. As a simple example, if two users operate with the same paying externally owned account, their wallets might suffer from race conditions on the nonce of the account and they might see requests rejected because of an incorrect nonce. The situation is the same here as in Ethereum, for instance. In practice, each externally owned account should be controlled by a single wallet at a time.
[See project runs
inside the hotmoka_tutorial
repository]
We have seen how a service can be published and its methods called through
a browser. This is easy for methods such as getManifest()
and
getConfig()
of the interface Node
. However, it
becomes harder if we want to call methods of Node
that need parameters, such
as getState()
or the many add/post/run
methods for scheduling transactions on
the node. Parameters should be passed as JSON payload of the websockets connection, in a format
that is hard to remember, easy to get wrong and possibly changing in the future.
Moreover, the JSON responses must be parsed back.
In principle, this can be done by hand or through software that builds the
requests for the server and interprets its responses.
Nevertheless, it is not the suggested way to proceed.
A typical solution to this problem is to provide a software SDK, that is, a library
that takes care of serializing the requests into JSON and deserializing
the responses from JSON. Roughly speaking, this is the approach taken in Hotmoka.
More precisely, as this section will show,
we can forget about the details of the JSON serialization
and deserialization of requests and responses and only program against the Node
interface,
by using an adaptor of a published Hotmoka service into a Node
. This adaptor is called
a remote Hotmoka node.
We have used remote nodes from the very beginning of this tutorial. Namely, if you go back to Installation of the Jar in a Hotmoka Node, you will see that we have built a Hotmoka node from a remote service:
try (var node = RemoteNodes.of(URI.create("ws://panarea.hotmoka.io"), 20000)) {
...
}
The RemoteNodes.of(...)
method adapts a remote service into a Hotmoka node,
so that we can call all methods of that (Figure 34). The
20000
is the timeout, in milliseconds, for connecting to the service
and for the methods called on the remote node.
We have seen that a Node
can be published as a Hotmoka service:
on a machine my.validator.com
we can execute:
TendermintNodeConfig config = TendermintNodeConfigBuilders.defaults().build();
try (Node original = TendermintNodes.init(config);
NodeService service = NodeServices.of(original, 8001)) {
...
}
The service will be published on the internet at ws://my.validator.com:8001
.
Moreover, on another machine my.sentry.com
,
that Hotmoka service can be adapted into a remote node
that, itself, can be published on that machine:
try (Node validator = RemoteNodes.of(URI.create("ws://my.validator:8001"), 8001);
NodeService service = NodeServices.of(validator, 8001)) {
...
}
The service will be published at ws://my.sentry.com:8001
.
We can continue this process as much as we want, but let us stop at this point.
Programmers can connect to the service published at
ws://my.sentry.com:8001
and send requests to it. That service is just a bridge
that forwards everything to the service at ws://my.validator.com:8001
.
It might not be immediately clear why this intermediate step could be useful
or desirable. The motivation is that we could keep the (precious) validator
machine under a firewall that allows connections with my.sentry.com
only.
As a consequence, in case of DOS attacks, the sentry node will receive
the attack and possibly crash, while the validator continues to operate as usual:
it will continue to interact with the other validators and take part in the validation
of blocks. Moreover, since many sentries can be connected to a single validator, the latter
remains accessible through the other sentries, if needed.
This is an effective way to mitigate the problem of DOS attacks to validator nodes.
The idea of using sentry nodes against DOS attacks is not new for proof-of-stake networks, whose validators are considered as precious resources that must be protected. It is used, for instance, in Cosmos networks [Sentry]. However, note how it is easy, with Hotmoka, to build such a network architecture by using network services and remote nodes.
Hotmoka is agnostic wrt. the algorithm used for signing requests. This means that it is possible to deploy Hotmoka nodes that sign requests with distinct signature algorithms. Of course, if nodes must re-execute the same transactions, such as in the case of a blockchain, then all nodes of the blockchain must use the same algorithm for the transactions signed by each given account, or otherwise they will not be able to reach consensus. Yet, any algorithm can be chosen for the blockchain. In principle, it is even possible to use an algorithm that does not sign the transactions, if the identity of the callers of the transactions needn't be verified. However, this might be sensible in private networks only.
The default signature algorithm used by a node is specified at construction time, as a configuration parameter. For instance, the code
var config = TendermintNodeConfigBuilders.defaults().build();
var consensus = ValidatorsConsensusConfigBuilders.defaults()
.setPublicKeyOfGamete(keys.getPublic())
.setInitialSupply(SUPPLY)
....
.setSignatureForRequests(SignatureAlgorithms.ed25519()) // this is the default
.build();
try (Node node = TendermintNodes.init(config);
Node initialized = InitializedNodes.of(node, consensus, takamakaCodePath)) {
...
}
starts a Tendermint-based blockchain node that uses the ed25519 signature algorithm as default signature algorithm for the requests. Requests sent to that node can be signed as follows:
// recover the algorithm used by the node
SignatureAlgorithm signature = node.getConfig().getSignatureAlgorithmForRequests();
// create a key pair for that algorithm
KeyPair keys = signature.getKeyPair();
// create a signer object with the private key of the key pair
Signer<SignedTransactionRequest<?>> signer = signature.getSigner
(keys.getPrivate(), SignedTransactionRequest<?>::toByteArrayWithoutSignature);
// create an account having public key keys.getPublic()
....
// create a transaction request on behalf of the account
ConstructorCallTransactionRequest request
= TransactionRequests.constructorCall(signer, account, ...);
// send the request to the node
node.addConstructorCallTransaction(request);
In the example above, we have explicitly specified to use ed25519 as default signature algorithm. That is what is chosen if nothing is specified at configuration-time. Consequently, there is no need to specify that algorithm in the configuration object and that is why we never did it in the previous chapters. It is possible to configure nodes with other default signature algorithms. For instance:
var consensus = ValidatorsConsensusConfigBuilders.defaults()
.setPublicKeyOfGamete(keys.getPublic())
.setInitialSupply(SUPPLY)
....
.setSignatureForRequests(SignatureAlgorithms.sha256dsa()) // this replaces the default
.build();
configures a node that uses sha256dsa as default signature algorithm, while
var consensus = ValidatorsConsensusConfigBuilders.defaults()
.setPublicKeyOfGamete(keys.getPublic())
.setInitialSupply(SUPPLY)
....
.setSignatureForRequests(SignatureAlgorithms.empty())
.build();
configures a node that uses the empty signature as default signature algorithm; it is an algorithm that accepts all signatures, in practice disabling signature checking.
It is possible to specify a quantum-resistant signature algorithm as default, that is, one that belongs to a family of algorithms that are expected to be immune from attacks performed through a quantistic computer. For instance,
var consensus = ValidatorsConsensusConfigBuilders.defaults()
.setPublicKeyOfGamete(keys.getPublic())
.setInitialSupply(SUPPLY)
....
.setSignatureForRequests(SignatureAlgorithms.qtesla1())
.build();
configures a node that uses the quantum-resistant qtesla-p-I algorithm as default signature algorithm, while
var consensus = ValidatorsConsensusConfigBuilders.defaults()
.setPublicKeyOfGamete(keys.getPublic())
.setInitialSupply(SUPPLY)
....
.setSignatureForRequests(SignatureAlgorithms.qtesla3())
.build();
configures a node that uses the quantum-resistant qtesla-p-III algorithm as default signature algorithm, that is expected to be more resistant than qtesla-p-I but has larger signatures than qtesla-p-I.
Quantum-resistance is an important aspect of future-generation blockchains.
However, at the time of this writing, a quantum attack is mainly a theoretical
possibility, while the large size of quantum-resistant keys and signatures is
already a reality and a node using a qtesla signature algorithm as default
might exhaust the disk space of your computer very quickly. In practice, it is better
to use a quantum-resistant signature algorithm only for a subset of the transactions, whose
quantum-resistance is deemed important. Instead, one should use a lighter algorithm
(such as the default ed25519) for all other transactions. This is possible because
Hotmoka nodes allow one to mix transactions signed with distinct algorithms.
Namely, one can use ed25519 as default algorithm, for all transactions signed
by instances of ExternallyOwnedAccount
s,
with the exception of those transactions that are signed by instances of
AccountQTESLA1
, such as ExternallyOwnedAccountQTESLA1
,
or of AccountQTESLA3
, such as ExternallOwnedAccountQTESLA3
,
or of AccountSHA256DSA
, such as ExternallOwnedAccountSHA256DSA
(see Figure 23).
Namely, if the caller of a transaction is an AccountQTESLA1
, then the
request of the transaction must be signed with the qtesla-p-I algorithm.
If the caller of a transaction is an AccountQTESLA3
, then the
request of the transaction must be signed with the qtesla-p-III algorithm.
If the caller of a transaction is an AccountSHA256DSA
, then the
request of the transaction must be signed with the sha256dsa algorithm.
If the caller of a transaction is an AccountED25519
, then the
request of the transaction must be signed with the ed25519 algorithm.
In practice, this allows specific transactions to override the default signature
algorithm for the node.
For instance, let us create an account using the default signature algorithm for the node. We charge its creation to the faucet of the node:
$ moka create-account 1000000000000 --payer faucet --uri ws://panarea.hotmoka.io
Please specify the password of the new account: game
...
A new account e42def4faba5d93346e4d02a1608c9fb53ba7beea84ffb0064cdfe431d079867#0
has been created
You can check the class of the new account with the moka state
command:
$ moka state e42def4faba5d93346e4d02a1608c9fb53ba7beea84ffb0064cdfe431d079867#0
--uri ws://panarea.hotmoka.io
...
class io.takamaka.code.lang.ExternallyOwnedAccountED25519 ...
publicKey:java.lang.String =
"N7hQ0gpmpV46JJlQ+7zEy7r2OTn/jErqxV9g3+tg2/o="
balance:java.math.BigInteger = 1000000000000
...
As you can see, an account has been created, that uses the default ed25519
signature algorithm of the node.
Assume that we want to create an account now, that always uses the sha256dsa
signature algorithm,
regardless of the default signature algorithm of the node. We can specify that to moka create-account
:
$ moka create-account 1000000000000
--payer faucet --signature sha256dsa --uri ws://panarea.hotmoka.io
Please specify the password of the new account: play
...
A new account fdb930378af70c212649e4f9b888d7c275373cf5b9601b40e4802d29fa27af89#0
has been created
This creation has been more expensive, because the public key of the
sha256dsa algorithm is much longer than that for the ed25519 algorithm.
You can verify this with the moka state
command:
$ moka state fdb930378af70c212649e4f9b888d7c275373cf5b9601b40e4802d29fa27af89#0
--uri ws://panarea.hotmoka.io
...
class io.takamaka.code.lang.ExternallyOwnedAccountSHA256DSA ...
publicKey:java.lang.String = "MIIDRjCCAjkGByqGSM44BAEwggIsAo..."
balance:java.math.BigInteger = 1000000000000000
...
Note that the class of the account is ExternallyOwnedAccountSHA256DSA
this time.
Let us create an account that uses the qtesla-p-I signature algorithm now:
$ moka create-account 1000000000000
--payer faucet --signature qtesla1 --uri ws://panarea.hotmoka.io
Please specify the password of the new account: quantum1
...
Total gas consumed: 5294043
...
A new account b65e5976862d6786ba9a6d2cd62b332bfa7f8859e2c8b9be3bbbe5cd64af6c1e#0
has been created
The creation of this account has been very expensive, since quantum-resistant
keys are very large. Again, you can use the moka state
command to verify that it has class ExternallyOwnedAccountQTESLA1
.
Finally, let us use the previous qtesla-p-I account to create a qtesla-p-III account:
$ moka create-account 100000
--payer b65e5976862d6786ba9a6d2cd62b332bfa7f8859e2c8b9be3bbbe5cd64af6c1e#0
--signature qtesla3 --uri ws://panarea.hotmoka.io
Please specify the password of the payer account: quantum1
Please specify the password of the new account: quantum3
...
Total gas consumed: 5294170
...
A new account b37b9c040474fc800079230bc51409201f12f82e220b99e7b6468c5f62591ea8#0
has been created
Note, again, the extremely high gas cost of this creation.
Regardless of the kind of account, their use it always the same.
The only difference is to use the right signature algorithm when signing
a transaction, since it must match that of the caller account. This is automatic, if we
use the moka
tool. For instance, let us use our qtesla-p-I account to install
the family-0.0.1.jar
code in the node:
$ cd hotmoka_tutorial
$ moka install family/target/family-0.0.1.jar
--payer b65e5976862d6786ba9a6d2cd62b332bfa7f8859e2c8b9be3bbbe5cd64af6c1e#0
--uri ws://panarea.hotmoka.io
Please specify the password of the payer account: quantum1
Do you really want to spend up to 696900 gas units to install the jar [Y/N] Y
family/target/family-0.0.1.jar has been installed
at a9d69ce22453c912a436e990074fd3493c87667ada85b6881f5566a7efae08e7
...
The moka
tool has understood that the payer is an account that signs with the
qtesla-p-I algorithm and has signed the request accordingly.
Section Tendermint Nodes has already presented the implementation of Hotmoka nodes based on Tendermint. These nodes have the architecture shown in Figure 35 and form an actual blockchain network. Since the underlying blockchain engine is Tendermint, the resulting network is based on a proof of stake consensus. That is, there is a selected subset of the nodes (the validators) that decide if transactions are legal and which must be included in blockchain. Other nodes can just verify the transactions.
The methodology for starting Tendermint nodes, described in Section Tendermint Nodes, is relatively complex. Moreover, it is fragile, since the node might have a slightly different behavior, depending on the exact configuration of the machine and of the exact version of the Java runtime installed in the machine. These differences might even compromise the capacity of a network of nodes to reach consensus. There is a simpler and less fragile way of installing a Tendermint Hotmoka node, by using the Docker tool. We cannot discuss Docker here. We just say that it is a utility to run lightweight containers in a machine. A container is a sort of preconfigured sandbox, whose configuration is fixed and already provided at installation time. Therefore, there is nothing to install if we use a Docker container to start the node, not even a Java runtime. Everything is already prepared inside the container. Well, our machine must have Docker installed, but that is the only requirement.
We have provided some preconfigured Docker images in Docker Hub, that you can see at https://hub.docker.com/u/hotmoka. By using one of such images, we can start our own Tendermint Hotmoka node as follow. First, we need to create the key pair of the gamete, as we did in the previous chapter:
$ moka create-key
Please specify the password of the new key: king
A new key AsqsX1tBMriz18xvoxvc64K4HAvxgFmwWryKcMeR64oc has been created.
Its entropy has been saved into the file
"./AsqsX1tBMriz18xvoxvc64K4HAvxgFmwWryKcMeR64oc.pem".
We can now start a Docker node as a container:
$ docker run -dit
-e INITIAL_SUPPLY=1000000000000000
-e KEY_OF_GAMETE=AsqsX1tBMriz18xvoxvc64K4HAvxgFmwWryKcMeR64oc
-e CHAIN_ID=caterpillar
-e OPEN_UNSIGNED_FAUCET=true
-p 8001:8001
-p 26656:26656
-v chain:/home/hotmoka/chain
hotmoka/tendermint-node:1.7.0
init
00a196685e5c8a8d788b892cb09a994e48016d736bfeaf89c1f339d72f7a717b
Wait for around 30 seconds, in order to give time to the node to start. After that time, the node should be up
and running in your local machine, as you can verify with moka info
:
$ moka info --uri ws://localhost:8001
Info about the node:
takamakaCode: ae8e94c789fb66784a6cc4208c797c80cbce2721292d636b963184fc266abe42
manifest: 9f6d963231e8f22530496c1b38ce38b60df2c90c7d2d9176706dbe3ac8f934d1#0
chainId: caterpillar
gamete: 3a6eaf6df650bad0120f72c0fb962a976337ef4360407135e2e122699e40b8e7#0
balance: 1000000000000000
...
Since
--uri ws://localhost:8001
is the default, you can just typemoka info
. The same holds for all othermoka
commands.
In order to use the gamete, we must bind the key to its storage reference:
$ moka bind-key AsqsX1tBMriz18xvoxvc64K4HAvxgFmwWryKcMeR64oc
A new account 3a6eaf6df650bad0120f72c0fb962a976337ef4360407135e2e122699e40b8e7#0
has been created.
Its entropy has been saved into the file
"./3a6eaf6df650bad0120f72c0fb962a976337ef4360407135e2e122699e40b8e7#0.pem".
That's all. We can now use the gamete to open the faucet of the node (moka faucet
) and play
with the node as we did in the previous chapters of this book. Just direct the clients
to ws://localhost:8001
instead of ws://panarea.hotmoka.io
.
Let us analyze the options passed to docker
. The run -dit
command means that we want to
instantiate, and run as an interactive daemon,
a Docker image, which is actually specified at the end:
hotmoka/tendermint-node:1.7.0
. Docker will download that image from Docker Hub.
That image assumes that you are using a Linux machine based on the amd64 architecture. If you are using a Linux machine based on the arm64 architecture, use the
hotmoka/tendermint-node-arm64:1.7.0
image. If you are using a Windows machine, you need to run a Linux image inside a Linux virtual machine, as always in Docker. Please refer to the Docker documentation to know how this can be accomplished.
A specific command of the image is run, specified at the end: it is the init
command
that initializes a Tendermint Hotmoka node.
Options of run
are passed to the Docker image as environment variables,
through the -e
switch. The INITIAL_SUPPLY
is the amount of coins
provided to the gamete initially, that is, the amount of cryptocurrency available
initially in the blockchain. The KEY_OF_GAMETE
is
what we have generated with moka create-key
and will be put inside the gamete as its public key.
The CHAIN_ID
is the chain identifier of the blockchain started by the node.
The OPEN_UNSIGNED_FAUCET
switch opens a free faucet for getting cryptocurrency for free from the
gamete: use false
for that in a real blockchain.
As shown in Figure 35, a Tendermint Hotmoka node communicates
to the external world through ports 26656 for gossip and 8001 (or 80 or any other port) for clients.
Hence those ports must be connected to the Docker image. We do that with the
-p
switch. Specifically, in our example, port 8001 of the real machine is bound to port 8001 of the Docker image
and port 26656 of the real machine is bound to port 26656 of the Docker image. If we prefer to use
port 80 for clients, we should use -p 80:8001
instead of -p 8001:8001
.
Finally, the blocks and state created by the node are saved into a /home/hotmoka/chain
directory inside the container that is implemented as a Docker volume chain
. That
volume is visible in the real machine as /var/lib/docker/volumes/chain/_data/
and will be
persisted if we turn the Docker container off.
The actual directory that contains the volume depends on the specific version of Docker. Currently, it is
/var/lib/docker/volumes/chain/_data/
in Linux machines and you must be root to access it.
The docker run
command printed a hash at the end, that identifies the running container.
We can use it, for instance, to turn the container off when we do not need it anymore:
$ docker stop 00a196685e5c8a8d788b892cb09a994e48016d736bfeaf89c1f339d72f7a717b
The hash will be different in your experiments. Use yours.
You can verify that the Tendermint Hotmoka node is not available anymore:
$ moka info --uri ws://localhost:8001
Failed to connect to 'ws://localhost:8001': Connection refused
However, the data of the blockchain still exists, inside its directory of the
real machine:
/var/lib/docker/volumes/chain/_data/
. Hence, it is possible to resume the execution of the
blockchain from its final state. Restrain from using again
the docker run
command
for that: it would create a brand new blockchain, from scratch, destroying the local data
of the previous blockchain.
Similarly if you use the docker start
command. Unless this is actually what you want to achieve,
the right command to resume a previously started and stopped blockchain from its saved state is
$ docker run -dit
-p 8001:8001
-p 26656:26656
-v chain:/home/hotmoka/chain
hotmoka/tendermint-node:1.7.0
resume
3f59c2cdb0a57c5f3df2da7a018ccfa16f7fa48f73e65970b4bf8da60e3972c7
Wait for a few seconds and then verify that the same node is back:
$ moka info --uri ws://localhost:8001
Info about the node:
takamakaCode: ae8e94c789fb66784a6cc4208c797c80cbce2721292d636b963184fc266abe42
manifest: 9f6d963231e8f22530496c1b38ce38b60df2c90c7d2d9176706dbe3ac8f934d1#0
chainId: caterpillar
gamete: 3a6eaf6df650bad0120f72c0fb962a976337ef4360407135e2e122699e40b8e7#0
balance: 1000000000000000
...
Turn the node off now and conclude our experiment:
$ docker stop 3f59c2cdb0a57c5f3df2da7a018ccfa16f7fa48f73e65970b4bf8da60e3972c7
The Docker image contains a help
command. Try for instance:
$ docker run --rm -it hotmoka/tendermint-node:1.7.0 help
This container runs a Hotmoka node based on Tendermint.
It understands the following commands and options:
help: prints this help
init: creates a node for a brand new blockchain
CHAIN_ID: the chain identifier of the new blockchain
[default: the string "missing"]
KEY_OF_GAMETE: the Base58-encoded ed25519 public key of the gamete
[required, no default]
...
start: creates a node that connects to an already existing node of a blockchain
NETWORK_URI: the URI of the already existing node
...
resume: resumes a node that was previously turned off with "docker stop"
...
We have already discussed the help
, init
and resume
commands.
Section Connecting a Tendermint Hotmoka Node to an Existing Blockchain
will show an example of use of the start
command.
Before that, let us understand better what the manifest of a Tendermint node tells us.
Resume again the Tendermint node that we have started in the previous section, if you have stopped it before:
$ docker run -dit
-p 8001:8001
-p 26656:26656
-v chain:/home/hotmoka/chain
hotmoka/tendermint-node:1.7.0
resume
b83bd0a5e49ed82278742f49b1490abd8a84c103fc684cb4b0222a292a6863f5
After a few seconds, the node will be up and we can show its manifest:
$ moka info
Info about the node:
takamakaCode: ae8e94c789fb66784a6cc4208c797c80cbce2721292d636b963184fc266abe42
manifest: 9f6d963231e8f22530496c1b38ce38b60df2c90c7d2d9176706dbe3ac8f934d1#0
chainId: caterpillar
gamete: 3a6eaf6df650bad0120f72c0fb962a976337ef4360407135e2e122699e40b8e7#0
balance: 1000000000000000
...
validators: 9f6d963231e8f22530496c1b38ce38b60df2c90c7d2d9176706dbe3ac8f934d1#1
number of validators: 1
validator #0: 7779e885c98d631e489738dfd621763959a84bc57ae9e002f9947d15a518b27c#0
id: 84694297DB4B75A1B0C810F051035A0D7A8A3D99
balance: 0
staked: 0
power: 1000000
There are two accounts that have been already created inside the storage of the blockchain.
We already know the first one, that is, the gamete. Its private key is not stored in the Docker container
but must be available to the person who started the container.
Normally, it is the key that was created before starting the node (with moka create-key
) and
that is later bound to the storage address of the gamete (with moka bind-key
). If you
followed the instructions in the previous section, you should have an
3a6eaf6df650bad0120f72c0fb962a976337ef4360407135e2e122699e40b8e7#0.pem
file in your file system
(the actual address will be different in your machine, but will match the address of the gamete
in your node). With that pem file, you have superuser rights, in the sense that you can, for instance,
open and close the faucet (but only if you started the node with the OPEN_UNSIGNED_FAUCET
option set to true).
Moreover, you own all cryptocurrency minted for the node! With that, you can create and fund as many new accounts
as you want and in general run any transaction you like.
There is a second account that has been created. Namely, the validator account, at the address
7779e885c98d631e489738dfd621763959a84bc57ae9e002f9947d15a518b27c#0
(this will be different in your node).
This is an externally owned account that gets remunerated for every non-@View
transaction run in the node and included in blockchain. The previous print-out shows that, at
the beginning, the balance of the validator is 0. Let us run a transaction and check what happens.
For instance, let us create a new account by letting the gamete pay (we can do it since
we hold the keys of the gamete):
$ moka create-account 1234567
--payer 3a6eaf6df650bad0120f72c0fb962a976337ef4360407135e2e122699e40b8e7#0
Please specify the password of the payer account: king
Please specify the password of the new account: rock-and-roll
Do you really want to spend up to 200000 gas units to create a new account [Y/N] Y
Total gas consumed: 2565
A new account 44ca934098eb91fcc5efe1a6e67e29cf39179e94ce78cf08a71850c1add2e38f#0
has been created.
Its entropy has been saved into the file
"44ca934098eb91fcc5efe1a6e67e29cf39179e94ce78cf08a71850c1add2e38f#0.pem".
The gas consumed for this transaction has been forwarded to the validators of the blockchain, at its current price. Since there is only a single validator, everything goes to it, as you can verify:
$ moka info
Info about the node:
takamakaCode: ae8e94c789fb66784a6cc4208c797c80cbce2721292d636b963184fc266abe42
manifest: 9f6d963231e8f22530496c1b38ce38b60df2c90c7d2d9176706dbe3ac8f934d1#0
chainId: caterpillar
gamete: 3a6eaf6df650bad0120f72c0fb962a976337ef4360407135e2e122699e40b8e7#0
balance: 999999998762868
...
validators: 9f6d963231e8f22530496c1b38ce38b60df2c90c7d2d9176706dbe3ac8f934d1#1
surcharge for buying validation power: 50000000 (ie. 50.000000%)
slashing for misbehaving validators: 1000000 (ie. 1.000000%)
slashing for not behaving validators: 500000 (ie. 0.500000%)
percent of validators' reward that gets staked: 75000000 (ie. 75.000000%)
number of validators: 1
validator #0: 7779e885c98d631e489738dfd621763959a84bc57ae9e002f9947d15a518b27c#0
id: 84694297DB4B75A1B0C810F051035A0D7A8A3D99
balance: 642
staked: 1925
power: 1000000
initialInflation: 100000 (ie. 0.100000%)
currentInflation: 99999 (ie. 0.099999%)
The manifest reported above tells us that the gamete has now a reduced balance: it paid 1000000000000000 - 999999998762868 that is 1237132 panareas to create the new account. Of these, 1234567 went to the balance of the new account. The remaining 1237132 - 1234567, that is 2565, have been paid for gas (it seems that the gas price was at one panarea per gas unit). It is important to note that the 2565 panareas did not go immediately to the only validator: as shown above, only 642 have been paid immediately; other 1925 have been staked for that validator, that is, kept in the validators contract as a motivation for the validator to behave correctly. In the future, if the validator misbehaves (that is, does not validate the transactions correctly or does not validate them at all) then this stake will be reduced by a percent that is called slashing. This is reported above as 1% of slashing for validators that do not validate correctly and 0.5% of slashing for validators that do not validate at all (for instance, they are down).
The staked amount of panareas will be forwarded to the validator only when it will sell all its validation power to another validator and stop being a validator.
There is a final remark. We said that 2565 panareas have been forwarded to the validator (immediately or staked). But 642 + 1925 is 2567. Where do these 2567 - 2565 (that is, 2 panareas) come from? They have been minted, that is, created from scratch as a form of inflation. You can see from the manifest that the initial inflation was 0.1%. It is actually the case that 0.1% of 2565 is 2 (approximatively).
We have understood that the validator account receives payments for the validation of transactions.
But who controls this validator? It turns out that the Docker container
creates and stores the key of this validator in its file system.
You can see it if you access the chain
volume where the container operates.
You must be root to do that:
$ sudo ls /var/lib/docker/volumes/chain/_data/
7779e885c98d631e489738dfd621763959a84bc57ae9e002f9947d15a518b27c#0.pem
...
In alternative, you can use the docker exec
command to run a command inside the container.
You do not need to be root, but need to remember the id of the running container:
$ docker exec b83bd0a5e49ed82278742f49b1490abd8a84c103fc684cb4b0222a292a6863f5
/bin/ls | grep ".pem"
7779e885c98d631e489738dfd621763959a84bc57ae9e002f9947d15a518b27c#0.pem
Who owns that key controls the validator. Therefore, it is not safe to keep it in the file system. Instead, move it into a safer place:
$ sudo mv /var/lib/docker/volumes/chain/_data/
7779e885c98d631e489738dfd621763959a84bc57ae9e002f9947d15a518b27c#0.pem
my_safe_place/
As a final remark about the key of the validator, note that it must be the same key that the underlying Tendermint engine uses in order to identify the node in the network and vote for validation. If that is not the case, the validator account in the manifest will not be recognized as a working validator and will be slashed for not behaving. Eventually, it will be expulsed from the set of validators. Tendermint stores the key that it uses to identify the node in another file, inside its configuration, and in JSON format:
$ sudo ls /var/lib/docker/volumes/chain/_data/blocks/config
priv_validator_key.json
...
This file must remain in the node, or otherwise Tendermint cannot vote for validation.
The Docker script magically ensures that, correctly, this file contains the same key
as 7779e885c98d631e489738dfd621763959a84bc57ae9e002f9947d15a518b27c#0.pem
, although in a different format.
In the previous section, we have published a Hotmoka node on our machine (the localhost). This might not be the best place where the node should be published, since our machine might not allow external internet connections and since we might want to turn that machine off after we stop working with it. In reality, a node should be published inside a machine that can receive external connections and that is always on, at least for a long period. There are many solutions for that. Here, we describe the simple technique of using a rented machine from Amazon AWS EC2's computing cloud [EC2]. This service offers a micro machine for free, while more powerful machines require one to pay for their use. Since the micro machine is enough for our purposes, EC2 is a good candidate for experimentation. Nevertheless, what we describe in this section can be achieved with any other cloud rental architecture.
Conceptually, there is nothing special with running a Tendermint Hotmoka node inside an Amazon EC2 machine. Just start a free microservice machine and ssh to it in order to install Docker, by following the standard installation instructions for Docker in a Linux machine, that you can find at https://docs.docker.com/engine/install/. As Figure 35 shows, ports 80 (for instance) and 26656 must be open in order for a Tendermint Hotmoka node to work correctly. Therefore, use a browser to access the Amazon EC2 console, select your micromachine and inspect its security group. Modify its inbound rules so that they allow connections to ports 22 (for ssh), 26656 (for gossip) and 80 (for clients). At the end, such rules should look as in Figure 36.
Figure 36. The inbound rules for the Amazon EC2 machine.
Create the key of the gamete in your local machine:
$ moka create-key
Please specify the password of the new key: king
A new key 9PhEVACUFjTEXwoMETzXwsjSTVe2c9dJMuUymxGTo4vF has been created.
Its entropy has been saved into the file
"./9PhEVACUFjTEXwoMETzXwsjSTVe2c9dJMuUymxGTo4vF.pem".
and use it to start a node in the EC2 machine:
ec2$ docker run -dit
-e INITIAL_SUPPLY=1234567890
-e KEY_OF_GAMETE=9PhEVACUFjTEXwoMETzXwsjSTVe2c9dJMuUymxGTo4vF
-e CHAIN_ID=caterpillar
-p 80:8001
-p 26656:26656
-v chain:/home/hotmoka/chain
hotmoka/tendermint-node:1.7.0
init
5f3799b58c6569b50dbebee6db3061ebf8e3c2c7ac6e0882579129ca66302786
The command above is given inside the EC2 machine, hence the
ec2$
prompt.
Wait for a few seconds and then verify, in your local machine, that the remote node is available:
$ moka info --uri ec2-34-244-119-200.eu-west-1.compute.amazonaws.com
Info about the node:
takamakaCode: c2003c1109c33acaa3d8e081327f35f5cb960e4e8ee6743674087b00cb7bbeb9
manifest: e6f36a564872b8a032881f38325d85202d1b7853327ddf9a7281a1342a9d8034#0
chainId: caterpillar
gamete: ce1b85355a9237ed701f4ca9c498e77c1f0876535b0dc7716cdd15a72c19a407#0
balance: 1234567890
...
The URI of your micromachine can be found in the Amazon EC2 console. We have used ours above, while you should use yours of course. Remember that 80 is the default port in URIs.
You can bind the key of the gamete in your local machine now:
$ moka bind-key 9PhEVACUFjTEXwoMETzXwsjSTVe2c9dJMuUymxGTo4vF
--uri ec2-34-244-119-200.eu-west-1.compute.amazonaws.com
A new account ce1b85355a9237ed701f4ca9c498e77c1f0876535b0dc7716cdd15a72c19a407#0
has been created.
Its entropy has been saved into the file
"./ce1b85355a9237ed701f4ca9c498e77c1f0876535b0dc7716cdd15a72c19a407#0.pem".
You can see the logs of your container with the standard technique of Docker. Namely, in the EC2 machine you can run:
ec2$ docker logs 5f3799b58c6569b50dbebee6db3061ebf8e3c2c7ac6e0882579129ca66302786
which will print all logs of the container. If you want to see the logs in real time, while they are generated by the container, you can run
ec2$ docker logs -f 5f3799b58c6569b50dbebee6db3061ebf8e3c2c7ac6e0882579129ca66302786
Remember that Docker places the logs in a JSON file accessible in the container directory of the EC2 machine (you must be root to see that directory):
ec2$ sudo ls /var/lib/docker/containers
/5f3799b58c6569b50dbebee6db3061ebf8e3c2c7ac6e0882579129ca66302786
5f3799b58c6569b50dbebee6db3061ebf8e3c2c7ac6e0882579129ca66302786-json.log
...
When you do not need the node anymore, turn it off in the remote machine:
ec2$ docker stop 5f3799b58c6569b50dbebee6db3061ebf8e3c2c7ac6e0882579129ca66302786
As you can see, by using Docker containers the installation of a single validator node is conceptually the same both in your local machine and in Amazon EC2.
If you do not
docker stop
your container but log out from the EC2 machine, the container will continue to run in the background, as always with Docker, and can be contacted from external clients. Of course, if you turn the EC2 machine off from the EC2 management console of Amazon, the node will die and will become unreachable.
We have started, and subsequently turned off, a blockchain consisting of a single validator
node, living in splendid isolation. But we might want to do something different.
Namely, we want now to start a node that belongs to the same blockchain network as
ws://panarea.hotmoka.io
. This means that the node will be started and will replay
all transactions already executed by ws://panarea.hotmoka.io
, starting from the empty state.
At the end, our node will be a clone of ws://panarea.hotmoka.io
, with its same state.
From that moment on, our node can be used to replay and follow the new transactions that
reach the blockchain of ws://panarea.hotmoka.io
, and also to send new transactions to that
blockchain. It will be a peer of that blockchain network. Note, however, that it will
not be a validator of the blockchain.
In order to achieve that result, we can use the start
command of the Docker image,
in the remote EC2 machine:
ec2$ docker run -dit
-e NETWORK_URI=ws://panarea.hotmoka.io
-p 80:8001
-p 26656:26656
-v chain:/home/hotmoka/chain
hotmoka/tendermint-node:1.7.0
start
3335d7609ecbd3d6ad42577aee0d0a2fd1bc59ed3c18ae7da2d77febbd776a84
The start
command needs only an option, the NETWORK_URI
switch, that
specifies the URI of a node to clone and become a peer of. If you wait for a few seconds,
you can see that a new node has been published, that is part of the blockchain network
of ws://panarea.hotmoka.io
:
$ moka info --uri ec2-34-244-119-200.eu-west-1.compute.amazonaws.com
Info about the node:
takamakaCode: ae8e94c789fb66784a6cc4208c797c80cbce2721292d636b963184fc266abe42
manifest: f12254cd1abcf6999881a73a45075196d47828baf630bec24efbeb50150a52be#0
chainId: marabunta
maxErrorLength: 300
signature: ed25519
...
gamete: 25b310a0ce87dcd6a019e5a081f38ddc9a8812dff7144273f02d06d3824752c8#0
balance: 99999999999999999999...
maxFaucet: 10000000000000
Note that the information of this node is that of ws://panarea.hotmoka.io
(compare it with that
in section Contacting a Hotmoka Test Node).
That is, the started node is a clone of ws://panarea.hotmoka.io
and can be used at its place.
It is possible to start a peer of another node manually, similarly to what we have done in section Tendermint Nodes. We highly discourage the attempt, since it requires one to create a Tendermint configuration that mirrors that of the remote cloned node. Moreover, the peer must run exactly the same Java runtime as the cloned node, or otherwise the two machines might not reach consensus about the effects of the transactions. By using a prepared Docker image, we save us such headache. The interested reader can see the implementation of that image inside the distribution of Hotmoka, in the
dockerfiles
directory.
In general, the start
command might take a while, since it downloads and replays all transactions
already executed in the cloned node. Therefore, if you turn the started node off with the docker stop
command,
as done before, and then want it on again, it is not convenient to start the clone again, since
it will download and replay the transactions again, from scratch. Instead, use the resume
command with
docker run
, as we have already done before. This makes the node resume from its old state, so that
it will only download and replay the transactions that have been done in the remote node since the stop of the clone.
This section describes how the set of validators is implemented in Hotmoka. Namely, the validation power of the network is expressed as a total quantity shared among all validator nodes. For instance, when we have shown the manifest of the nodes, we have seen information about the only validator in the subsequent form:
validator #0: 7779e885c98d631e489738dfd621763959a84bc57ae9e002f9947d15a518b27c#0
id: 84694297DB4B75A1B0C810F051035A0D7A8A3D99
balance: 642
staked: 1925
power: 1000000
This means that validator #0 has a power of 1000000. Since it is the only validator of the network, the total power of the validators of the network is 1000000. Next section will show that this validator can decide to sell part of its power or all its power to another validator, resulting in a network with a single (different) validator or with more validators. For instance, it might sell 200000 units of power to another validator #1, resulting in a network with two validators: validator #0 with 800000 units of power and validator #1 with 200000 units of power.
The power of a validator expresses the weight of its votes: in order to validate a transaction, at least two thirds of the validation power must agree on the outcome of the transaction, or otherwise the network will hang. This mechanism is inherited from the underlying Tendermint engine and might be different in other Hotmoka nodes in the future. However, the idea that power represents the weight of a validator will likely remain.
What said above means that the validators are a sort of entity that shares validation power among the single validators. Validation power can be sold and bought. The number of the validators and their power is consequently dynamic. In some sense, this mechanism resembles the market of shares of a corporation.
Figure 37. The hierarchy of entities and validators classes.
Hotmoka has an interface that represents entities whose shares can be dynamically sold and bought about shareholders.
Figure 37 shows this SharedEntity
interface. As you can see in the figure, the notion of validators
is just a special case of shared entity (see also [BeniniGMS21]).
It is possible to use shared entities to represent other concepts, such as
a distributed autonomous organization, or a voting community. Here, however, we focus on their use to represent the set
of the validators of a proof of stake blockchain.
In general, two concepts are specific to each implementation of shared entities:
who are the potential shareholders and how offers for selling shares work.
Therefore, the interface SharedEntity<S,O>
has two type
variables: S
is the type of the shareholders and O is the type of the sale offers of shares.
The SharedEntityView
interface at the top of the hierarchy in Figure 37 defines
the read-only operations on a shared entity. This view is static, in the sense
that it does not specify the operations for transfers of shares. Therefore, its
only type parameter is S
: any contract can play the role of the type for the
shareholders of the entity. Method getShares
yields a snapshot of the current
shares of the entity (who owns how much).
Method getShareholders
yields
the shareholders. It is not @View
, since it creates a new stream, which is a
side-effect. Method isShareholder
checks if an object is a shareholder. Method
sharesOf
yields the number of shares that a shareholder owns. As typical in Takamaka,
the snapshot
method allows one to create a frozen read-only copy of an entity
(in constant time), useful when an entity must be queried from a client without
the risk of race conditions if another client is modifying the same entity concurrently.
The SharedEntity
subinterface adds methods for transfer of shares.
It includes an inner class Offer
that models sale offers: it specifies
who is the seller of the shares, how many shares are being sold, the requested
price and the expiration of the offer. Method isOngoing
checks if an offer has
not expired yet. Implementations can subclass Offer
if they need more specific
offers. Offers can be placed on sale by calling the place
method with a sale
offer. This method is annotated as @FromContract
since the caller must be
identified as the owner of the shares
(or otherwise anybody could sell the shares of anybody else) and as
@Payable
so that implementations can require to pay a ticket to place shares on
sale. The sale offer is passed as a parameter to place
, hence it must have been
created before calling that method. The set of all sale offers is available through
getOffers
. Method sharesOnSale
yields the cumulative number of shares on
sale for a given shareholder. Who wants to buy shares calls method accept
with
the accepted offer and with itself as buyer
and becomes a new shareholder or increases its cumulative number of shares
(if it was a shareholder already). Also this method is @Payable
, since its caller
must pay ticket >= offer.cost
coins to the seller. This means that shareholders
must be able to receive payments and that is why S extends PayableContract
.
The SimpleSharedEntity
class implements the shared entity algorithms, that subclasses
can redefine if they want.
Hotmoka models validator nodes as
objects of class Validator
, that are externally owned accounts with an extra identifier
(Figure 37).
In the specific case of a Hotmoka blockchain built over Tendermint, validators
are instances of the subclass TendermintED25519Validator
, whose identifier is derived from their
ed25519 public key. This identifier is public information, reported
in the blocks or easily eavesdropped.
The Validators
interface in Figure 37
extends the SharedEntity
interface, fixes the shareholders
to be instances of Validator
and adds two methods: getStake
yields the amount of coins
at stake for each given validator (if the validator misbehaves, its stake will
be slashed); and reward
, that is called by the blockchain itself at
the end of each block creation: it distributes the cost of the gas consumed by
the transactions in the block, to the well-behaving validators, and slashes the
stakes of the misbehaving validators.
The AbstractValidators
class implements the validators’ set and the distribution
of the reward and is a subclass of SimpleSharedEntity
(see Figure 37).
Shares are voting power in this case. Its subclass TendermintValidators
restricts the type of the validators to be TendermintED25519Validator
. At each
block committed, Hotmoka calls the reward method of Validators
in order
to reward the validators that behaved correctly and slash those that
misbehaved, possibly removing them from the validators' set. They are specified by
two strings that contain the identifiers of the validators, as provided by the
underlying Tendermint engine. At block creation time, Hotmoka
calls method getShareholders
inherited from SimpleSharedEntity
and informs
the underlying Tendermint engine about the identifiers of the validator nodes
for the next blocks. Tendermint expects such validators to mine and vote the
subsequent blocks, until a change in the validators’ set occurs.
Up to now, we have started Tendermint Hotmoka nodes of a blockchain with only a single validator node. That is, the network can have more nodes, but only one of them (the one started first) is the validator of the network. All other nodes are simply peers, that verify the transactions but have no voice in the network and do not vote for validation.
Assume for instance that Alice follows the instructions in
Starting a Tendermint Hotmoka Node on Amazon EC2
and starts a Hotmoka node with Docker, that is a network with
a single node that, moreover, is the only validator. Her node will be publicly accessible
as ws://alice.hotmoka.io
. The key of the only validator is in the chain
volume of Docker in Alice's machine, as said before.
Alice moves that key to a safer place, where she can use it to control the validator:
alice.hotmoka.io$ moka create-key
Please specify the password of the new key: queen
A new key has been created.
...
Its entropy has been saved into the file
"8oHse15C9pKUuqFLYRQBPgefdGzGq9mpWPF3dRQg27A5.pem".
alice.hotmoka.io$ docker run --rm -dit
-e KEY_OF_GAMETE=8oHse15C9pKUuqFLYRQBPgefdGzGq9mpWPF3dRQg27A5
-e CHAIN_ID=caterpillar
-e INITIAL_SUPPLY=1000000000000000000
-p 80:8001
-p 26656:26656
-v chain:/home/hotmoka/chain
hotmoka/tendermint-node:1.7.0
init
alice.hotmoka.io$ moka bind-key 8oHse15C9pKUuqFLYRQBPgefdGzGq9mpWPF3dRQg27A5
--uri localhost:80
A new account 21f1feb9201e8efcc616662d18382547af876d5ea500e2173e2ed1eb71bdd98e#0
has been created.
Its entropy has been saved into the file
"21f1feb9201e8efcc616662d18382547af876d5ea500e2173e2ed1eb71bdd98e#0.pem".
alice.hotmoka.io$ docker exec 21f1fe /bin/ls chain| grep ".pem"
8418acb720db3097d899586762cee03bb34549a2666969c09c6b964611f6d338#0.pem .
alice.hotmoka.io$ sudo mv /var/lib/docker/volumes/chain/_data/
8418acb720db3097d899586762cee03bb34549a2666969c09c6b964611f6d338#0.pem .
After these commands, Alice has two keys in two pem files: the
key of the gamete 21f1feb9201e8efcc616662d18382547af876d5ea500e2173e2ed1eb71bdd98e#0
and the key of the validator
8418acb720db3097d899586762cee03bb34549a2666969c09c6b964611f6d338#0
.
After some time, Bob starts another node, connected to Alice's node, by following the instructions in
Connecting a Tendermint Hotmoka Node to an Existing Blockchain.
Bob's node is publicly accessible as ws://bob.hotmoka.io
.
bob.hotmoka.io$ docker run --rm -dit
-e NETWORK_URI=alice.hotmoka.io
-p 80:8001
-p 26656:26656
-v chain:/home/hotmoka/chain
hotmoka/tendermint-node:1.7.0
start
070abbc643163e6273c6d9da98f4a83bd94e178743c31344321a60c41d3c2d21
This second node is just a peer, not a validator. Alice's validator remains the only validator of the network. However, the Docker script run by Bob has created a validator's key anyway, inside the Docker container, that Bob can use in the future if his node will ever become a validator node. Bob moves that key to his local machine:
bob.hotmoka.io$ docker exec 070abbc64316 /bin/ls | grep ".pem"
3yk6V6MK5eVANMpZkzEtKuc4D3giZsrxAewzRXsym2jq.pem
bob.hotmoka.io$ docker cp
070abbc64316:/home/hotmoka/3yk6V6MK5eVANMpZkzEtKuc4D3giZsrxAewzRXsym2jq.pem .
At the moment, that key is not yet bound to any Validator
object in blockchain. Note that the Docker script creates this key
with an empty password (just the empty string).
Currently, Alice holds 100% of the validation power of the network, that is, 1000000 units of validation power.
Later, Alice decides to sell 40% of her validation power, that is, 400000 units of validation power.
She must advertize her intent to sell and the price she requires. That is, she must create an instance
of the Offer
class in Figure 37 (with moka create
)
and must then use her validator object as caller of method place
of the validators object
of the blockchain (with moka call
). That object is advertized in the manifest of the node:
validators: 9f6d963231e8f22530496c1b38ce38b60df2c90c7d2d9176706dbe3ac8f934d1#1
However, Alice can simplify her work by using the moka sell-validation
command, that does everything
at once for her. There is a little difficulty though. Selling shares is not free, it costs some gas.
Since the validator object must perform that action, it must have some money to pay for gas.
Validators usually hold some money, since they are remunerated
for validation of transactions. However, if
that is not the case, then Alice must
first charge the validator object (for instance, from her gamete) and later use it to place the sale offer:
alice.hotmoka.io$ moka send 1000000000
8418acb720db3097d899586762cee03bb34549a2666969c09c6b964611f6d338#0
--payer=21f1feb9201e8efcc616662d18382547af876d5ea500e2173e2ed1eb71bdd98e#0
--uri localhost
Please specify the password of the payer account: queen
alice.hotmoka.io$ moka sell-validation
8418acb720db3097d899586762cee03bb34549a2666969c09c6b964611f6d338#0
400000
1000000000
3600000
--uri localhost
Please specify the password of the seller validator:
Offer 3aa23081c5e5b55628c8d2584b2b7ae2dff4551564e5c40f11ec1973a73728af#0 placed
Note that moka sell-validation
works only if the key of the validator is in the directory where
moka
is invoked. Without that key, it is impossible to place a sale offer on behalf of the validator.
The parameters of moka sell-validation
are the address of the validator that is selling its power
and will pay for the transaction, the amount of power to sell (400000, that is, 40%),
the price required for the sale (1000000000 panareas) and the time of validity
of the sale offer (3600000 milliseconds from the invocation of moka sell-validation
, that is,
one hour from then).
By default,
sell-validation
creates a sale offer that everybody can accept. If one wants to create a sale offer reserved to a specific validator buyer, it is possible to specify the address of that buyer with the--buyer
switch.
Bob can now realize that a sale offer is available. By running moka info
again he will notice the offer:
bob.hotmoka.io$ moka info --uri localhost
surcharge for buying validation power: 50000000 (ie. 50.000000%)
validator #0: 8418acb720db3097d899586762cee03bb34549a2666969c09c6b964611f6d338#0
id: DF61AC526C5FB6D1F8A2AB00CEDF809B188EA9D3
balance: 999915317
staked: 95663
power: 1000000
sale offer #0: 3aa23081c5e5b55628c8d2584b2b7ae2dff4551564e5c40f11ec1973a73728af#0
power on sale: 400000
cost: 1000000000
cost with surcharge: 1500000000
expiration: Sat Feb 19 16:58:11 CET 2022
You can see that the new sale offer is visible from the manifest, below the validator that is selling its power. Note the cost with surcharge line: in order to accept the sale, a buyer must spend not only the cost required by the seller (1000000000 panareas in this case) but also a surcharge of 50%, that will get split among all validators. The percent of surcharge is specified in the manifest as well:
surcharge for buying validation power: 50000000 (ie. 50.000000%)
Everybody with access to the blockchain can now accept that sale offer and become
validator, as long as it has enough money to cover the cost with surcharge
(and some extra gas). Bob has such money, since he worked in the last year
for a company that paid him with panareas. He keeps that money into the externally owned
account 6a63266067276577bf2363def73dbd123d77d9ba918642383372402a102a0b13#0
and of course he has the key of that account and knows its password.
It is important that the buyer of the offer be a Validator
object, not just an externally owned account. Bob currently has no such Validator
object. He has only the key generated by the Docker script.
Hence the first step for Bob is to create a Validator
object with that key, by letting
his account pay:
bob.hotmoka.io$ moka create-account 2000000000
--create-tendermint-validator
--payer 6a63266067276577bf2363def73dbd123d77d9ba918642383372402a102a0b13#0
--uri localhost
Please specify the password of the payer account: king
Please specify the password of the new account: bishop
A new account 85a89fd0baafb4b8313257fb192361bd195fc79126e790215c3ad2791a84c606#0
has been created.
Its entropy has been saved into the file
"85a89fd0baafb4b8313257fb192361bd195fc79126e790215c3ad2791a84c606#0.pem".
Note the --create-tendermint-validator
switch. Without that, a normal
externally owned account would have been created. This way, instead, an instance
of TendermintED25519Validator
gets created (see Figure 37).
Bob can verify this with moka state
:
bob.hotmoka.io$ moka state
85a89fd0baafb4b8313257fb192361bd195fc79126e790215c3ad2791a84c606#0
--uri localhost
This is the state of object
85a89fd0baafb4b8313257fb192361bd195fc79126e790215c3ad2791a84c606#0@localhost
class io.takamaka.code.governance.tendermint.TendermintED25519Validator
id:java.lang.String = "AD81B48A1E1B62C1AEB99A6B06470D22D8C55950"
balance:java.math.BigInteger = 2000000000
nonce:java.math.BigInteger = 0
publicKey:java.lang.String = "RCJQwN9Pgnde5GPURAtH1C6QlnNfDARdAIqepVpyjDs="
Bob is now ready to buy the validation power currently on sale.
He just accepts the sale offer
3aa23081c5e5b55628c8d2584b2b7ae2dff4551564e5c40f11ec1973a73728af#0
by using his validator object as payer:
bob.hotmoka.io$ moka buy-validation
85a89fd0baafb4b8313257fb192361bd195fc79126e790215c3ad2791a84c606#0
3aa23081c5e5b55628c8d2584b2b7ae2dff4551564e5c40f11ec1973a73728af#0
--uri localhost
Please specify the password of the buyer validator: bishop
Do you really want to spend up to 500000 gas units and 1500000000 panareas
to accept the sale of validation power [Y/N] Y
Offer accepted
Finally, both Bob and Alice can verify that there are two validators now in the network, and no more sale offers:
alice.hotmoka.io$ moka info --uri localhost
...
number of validators: 2
validator #0: 8418acb720db3097d899586762cee03bb34549a2666969c09c6b964611f6d338#0
id: DF61AC526C5FB6D1F8A2AB00CEDF809B188EA9D3
balance: 2125136981
staked: 375760651
power: 600000
validator #1: 85a89fd0baafb4b8313257fb192361bd195fc79126e790215c3ad2791a84c606#0
id: AD81B48A1E1B62C1AEB99A6B06470D22D8C55950
balance: 499950092
staked: 0
power: 400000
...
Future transactions with this network must be validated by both nodes now, since neither node reaches one third of total power by itself. If Bob's node does not respond or if it validates transactions incorrectly, then his validator would be slashed until its stakes reach zero. At that moment, the network will hang, since it becomes impossible to reach the agreement of at least two thirds of the full validation power.
If the sale offer of Alice were for just 30% of her validation power then, when the stakes of Bob's validator reach zero, that validator would just be removed from the set of validators and its validation power would be distributed to the other validators, in proportion to their power. That is, Alice's validator would come back to hold 100% of the validation power. In that case, the network wouldn't hang.
If the sale offer of Alice were for the full 100% of her validation power, then Bob's validator would completely replace Alice's validator and become the only validator of the network. Moreover, all staked coins for Alice's validator would be forwarded to it.
Code verification checks that code complies with some constraints, that should guarantee that its execution does not run into errors. Modern programming languages apply more or less extensive code verification, since this helps programmers write reliable code. This can both occur at run time and at compile time. Run-time (dynamic) code verification is typically stronger, since it can exploit exact information on run-time values flowing through the code. However, compile-time (static) code verification has the advantage that it runs only once, at compilation time or at jar installation time, and can prove, once and for all, that some errors will never occur, regardless of the execution path that will be followed at run time.
Hotmoka nodes apply a combination of static and dynamic verification to the Takamaka code that is installed inside their store. Static verification runs only once, when a node installs a jar in its store, or when classes are loaded for the first time at run time. Dynamic verification runs every time some piece of code gets executed.
Takamaka code is written in Java, compiled into Java bytecode, instrumented and run inside the Java Virtual Machine (JVM). Hence, all code verifications executed by the JVM apply to Takamaka code as well. In particular, the JVM verifies some structural and dynamic constraints of class files, including their type correctness. Moreover, the JVM executes run-time checks as well: for instance, class casts are checked at run time, as well as pointer dereferences and array stores. Violations result in exceptions. For a thorough discussion, we refer the interested reader to the official documentation about Java bytecode class verification [JVM-Verification].
Hotmoka nodes verify extra constraints, that are not checked as part of the standard JVM bytecode verification. Such extra constraints are mainly related to the correct use of Takamaka annotations and contracts, and are in part static and in part dynamic. Static constraints are checked when a jar is installed into the store of a node, hence only once for each node of a network. If a static constraint is violated, the transaction that tries to install the jar fails with an exception. Dynamic constraints, instead, are checked every time a piece of code is run. If a dynamic constraint is violated, the transaction that runs the code fails with an exception.
Below, remember that @FromContract
is shorthand for @FromContract(Contract.class)
.
Moreover, note that the constraints related
to overridden methods follow by Liskov's principle [LiskovW94].
Hotmoka nodes verify the following static constraints:
- The
@FromContract(C.class)
annotation is only applied to constructors of a (non-strict) subclass ofio.takamaka.code.lang.Storage
or to instance methods of a (non-strict) subclass ofio.takamaka.code.lang.Storage
or interface. - In every use of the
@FromContract(C.class)
annotation, classC
is a subclass of the abstract classio.takamaka.code.lang.Contract
. - If a method is annotated as
@FromContract(C.class)
and overrides another method, then the latter is annotated as@FromContract(D.class)
as well, andD
is a (non-strict) subclass ofC
. - If a method is annotated as
@FromContract(D.class)
and is overridden by another method, then the latter is annotated as@FromContract(C.class)
as well, andD
is a (non-strict) subclass ofC
. - If a method is annotated as
@Payable
or@RedPayable
, then it is also annotated as@FromContract(C.class)
for someC
. - If a method is annotated as
@Payable
or@RedPayable
, then it has a first formal argument (the paid amount) of typeint
,long
orBigInteger
. - If a method is annotated as
@Payable
and overrides another method, then the latter is annotated as@Payable
as well; an identical rule holds for@RedPayable
. - If a method is annotated as
@Payable
and is overridden by another method, then the latter is annotated as@Payable
as well; an identical rule holds for@RedPayable
. - No method or constructor is annotated with both
@Payable
and@RedPayable
. - The
@Payable
annotation is only applied to constructors of a (non-strict) subclass ofio.takamaka.code.lang.Contract
or to instance methods of a (non-strict) subclass ofio.takamaka.code.lang.Contract
or interface. - The
@RedPayable
annotation is only applied to constructors of a (non-strict) subclass ofio.takamaka.code.lang.Contract
or to instance methods of a (non-strict) subclass ofio.takamaka.code.lang.Contract
or interface. - Classes that extend
io.takamaka.code.lang.Storage
have instance non-transient fields whose type is primitive (char
,byte
,short
,int
,long
,float
,double
orboolean
), or is a class that extendsio.takamaka.code.lang.Storage
, or is any ofjava.math.BigInteger
,java.lang.String
,java.lang.Object
or an interface (see Storage Types and Constraints on Storage Classes).
The choice of allowing, inside a storage type, fields of type
java.lang.Object
can be surprising. After all, any reference value can be stored in such a field, which requires to verify, at run time, if the field actually contains a storage value or not (see the dynamic checks, below). The reason for this choice is to allow generic storage types, such asStorageTreeMap<K,V>
, whose values are storage values as long asK
andV
are replaced with storage types. Since Java implements generics by erasure, the bytecode of such a class ends up having fields of typejava.lang.Object
. An alternative solution would be to boundK
andV
from above (StorageTreeMap<K extends Storage, V extends Storage>
). This second choice will be erased by usingStorage
as static type of the erased fields of the class. However, not all storage reference values extendStorage
. For instance, this solution would not allow one to writeStorageTreeMap<String, BigInteger>
, where bothString
andBigInteger
are storage types, but neither extendsStorage
. The fact that fields of typejava.lang.Object
or interface actually hold a storage value at the end of a transaction is checked dynamically (see the dynamic checks below).
- There are no static initializer methods.
Java runs static initializer methods the first time their defining class is loaded. They are either coded explicitly, inside a
static { ... }
block, or are implicitly generated by the compiler in order to initialize the static fields of the class. The reason for forbidding such static initializers is that, inside Takamaka, they would end up being run many times, at each transaction that uses the class, and reset the static state of a class, since static fields are not kept in blockchain. This is a significant divergence from the expected semantics of Java, that requires static initialization of a class to occur only once during the lifetime of that class. Note that the absence of static initializers still allows a class to have static fields, as long as they are bound to constant primitive orString
values.
- There are no finalizers.
A finalizer is a method declared exactly as
public void finalize() { ... }
. It might be called when the JVM garbage collects an object from RAM. The reason for forbidding such finalizers is that their execution is not guaranteed (they might never be called) or might occur at a non-deterministic moment, while code in blockchain must be deterministic.
- Calls to
caller()
occur only inside@FromContract
constructors or methods and onthis
. - Calls to constructors or methods annotated as
@FromContract
occur only in constructors or instance methods of anio.takamaka.code.lang.Contract
; moreover, if they occur, syntactically, onthis
, then they occur in a method or constructor that is itself annotated as@FromContract
(since thecaller()
is preserved in that case). - Bytecodes
jsr
,ret
andputstatic
are not used; inside constructors and instance methods, bytecodesastore 0
,istore 0
,lstore 0
,dstore 0
andfstore 0
are not used.
Local variable 0 is used to hold the
this
reference. Forbidding its modification is important to guarantee thatthis
is not reassigned in code, which is impossible in Java but perfectly legal in (unexpected) Java bytecode. The guarantee thatthis
is not reassigned is needed, in turn, for checking properties such as point 15 above.
- There are no exception handlers that may catch
unchecked exceptions (that is,
instances of
java.lang.RuntimeException
or ofjava.lang.Error
).
By forbidding exception handlers for unchecked exceptions, it follows that unchecked exceptions will always make a transaction fail: all object updates up to the exception will be discarded. In practice, transactions failed because of an unchecked exception leave no trace on the store of the node, but for the gas of the caller being consumed. The reason for forbidding exception handlers for unchecked exceptions is that they could occur in unexpected places and leave a contract in an inconsistent state. Consider for instance the following (illegal) code:
try { this.list.add(x); x.flagAsInList(); this.counter++; } catch (Exception e) { // illegal in Takamaka }Here, the programmer might expect that the size of
this.list
isthis.counter
and the correctness of his code might be based on that invariant. However, ifx
holdsnull
, an uncheckedNullPointerException
is raised just beforethis.counter
could be incremented, it would be caught and ignored. The expected invariant would be lost. The contract will remain in blockchain in an inconsistent state, for ever. The situation would be worse if anOutOfGasError
would be caught: the caller might provide exactly the amount of gas needed to reach theflagAsInList()
call, and leave the contract in an inconsistent state. Checked exceptions, instead, are explicitly checked by the compiler, which should ring a bell in the head of the programmer.For a more dangerous example, consider the following Java bytecode:
10: goto 10 exception handler for java.lang.Exception: 10 11 10 // illegal in Takamaka
This Java bytecode exception handler entails that any
OutOfGasError
thrown by an instruction from line 10 (included) to line 11 (excluded) redirects control to line 10. Hence, this code will exhaust the gas by looping at line 10. Once all gas is consumed, anOutOfGasError
is thrown, that is redirected to line 10. Hence anotherOutOfGasError
will occur, that redirects the executor to line 10, again. And so on, for ever. That is, this code disables the guarantee that Takamaka transactions always terminate, possibly with anOutOfGasError
. This code could be used for a DOS attack to a Hotmoka node. Although this code cannot be written in Java, it is well possible to write it directly, with a bytecode editor, and submit it to a Hotmoka node, that will reject it, thanks to point 19.
- If a method or constructor is annotated as
@ThrowsException
, then it is public. - If a method is annotated as
@ThrowsException
and overrides another method, then the latter is annotated as@ThrowsException
as well. - If a method is annotated as
@ThrowsException
and is overridden by another method, then the latter is annotated as@ThrowsException
as well. - Classes installed in a node are not in packages
java.*
,javax.*
orio.takamaka.code.*
; packages starting withio.takamaka.code.*
are however allowed if the node is not initialized yet.
The goal of the previous constraint is to make it impossible to change the semantics of the Java or Takamaka runtime. For instance, it is not possible to replace class
io.takamaka.code.lang.Contract
, which could thoroughly revolutionize the execution of the contracts. During the initialization of a node, that occurs once at its start-up, it is however permitted to install the runtime of Takamaka (theio-takamaka-code-1.3.1.jar
archive used in the examples in the previous chapters).
- All referenced classes, constructors, methods and fields must be white-listed.
Those from classes installed in the store of the node are always white-listed by
default. Other classes loaded from the Java class path must have been explicitly
marked as white-listed in the
io-hotmoka-whitelisting-1.7.0.jar
archive.
Hence, for instance, the classes of the support library
io.takamaka.code.lang.Storage
andio.takamaka.code.lang.Takamaka
are white-listed, since they are insideio-takamaka-code-1.3.1.jar
, that is typically installed in the store of a node during its initialization. Classes from user jars installed in the node are similarly white-listed. Methodjava.lang.System.currentTimeMillis()
is not white-listed, since it is loaded from the Java class path and is not annotated as white-listed inio-takamaka--whitelisting-1.7.0.jar
.
- Bootstrap methods for the
invokedynamic
bytecode use only standard call-site resolvers, namely, instances ofjava.lang.invoke.LambdaMetafactory.metafactory
or ofjava.lang.invoke.StringConcatFactory.makeConcatWithConstants
.
This condition is needed since other call-site resolvers could call any method, depending on their algorithmic implementation, actually side-stepping the white-listing constraints imposed by point 24. Java compilers currently do not generate other call-site resolvers.
- There are no native methods.
- There are no
synchronized
methods, norsynchronized
blocks.
Takamaka code is single-threaded, to enforce its determinism. Hence, there is no need to use the
synchronized
keyword.
- Field and method names do not start with a special prefix used
for instrumentation, namely they do not start with
§
.
This condition avoids name clashes after instrumentation. That prefix is not legal in Java, hence this constraint does not interfere with programmers. However, it could be used in (unexpected) Java bytecode, that would be rejected thanks to point 27.
- Packages are not split across different jars in the classpath.
This condition makes it impossible to call
protected
methods outside of subclasses and of the same jar where they are defined. Split packages allow an attacker to define a new jar with the same package name as classes in another jar and call theprotected
methods of objects of those classes. This is dangerous sinceprotected
methods often access or modify sensitive fields of the objects.
Takamaka verifies the following dynamic constraints:
- Every
@Payable
or@RedPayable
constructor or method is passed a non-null
and non-negative amount of funds. - A call to a
@Payable
or@RedPayable
constructor or method succeeds only if the caller has enough funds to pay for the call (ie., the amount first parameter of the method or constructor). - A call to a
@FromContract(C.class)
constructor or method succeeds only if the caller is an instance ofC
. - A bytecode instruction is executed only if there is enough gas for its execution.
- White-listed methods or constructors with white-listing proof obligations are only executed if such proof obligations are satisfied.
- Non-transient fields of type
java.lang.Object
or of type interface, belonging to some storage object reachable from the actual parameters of a transaction at the end of the transaction, containnull
or a storage object.
[See project family_wrong
inside the hotmoka_tutorial
repository]
If a jar being installed in a Hotmoka node does not satisfy the static
constraints that we have described before, the installation transaction fails with
a verification exception, no jar is actually installed but the gas of the
caller gets consumed. Hence it is not practical to realize that a
static constraint does not hold only by trying to install a jar in a node.
Instead, it is desirable to verify all constraints off-line, fix all
violations (if any) and only then install the jar in the node. This is
possible by using the moka
command-line interface of Hotmoka.
Namely, it provides a subcommand that performs the same identical jar
verification that would be executed when a jar is
installed in a Hotmoka node.
Create a family_wrong-0.0.1.jar
containing
a wrong version of the family
project. For that, copy the family
project into family_wrong
, change the artifact name in its pom.xml
into
family_wrong
and modify its Person
class so that it contains
a few errors, as follows:
package io.takamaka.family;
import io.takamaka.code.lang.Exported;
import io.takamaka.code.lang.Payable;
import io.takamaka.code.lang.Storage;
@Exported
public class Person extends Storage {
private final String name;
private final int day;
private final int month;
private final int year;
// error: arrays are not allowed in storage
public final Person[] parents = new Person[2];
public static int toStringCounter;
public Person(String name, int day, int month, int year,
Person parent1, Person parent2) {
this.name = name;
this.day = day;
this.month = month;
this.year = year;
this.parents[0] = parent1;
this.parents[1] = parent2;
}
// error: @Payable without @FromContract, missing amount and is not in Contract
public @Payable Person(String name, int day, int month, int year) {
this(name, day, month, year, null, null);
}
@Override
public String toString() {
toStringCounter++; // error (line 37): static update (putstatic) is now allowed
return name +" (" + day + "/" + month + "/" + year + ")";
}
}
Then generate the family_wrong-0.0.1.jar
file:
$ cd family_wrong
$ mvn package
Let us start with the verification of io-takamaka-code-1.3.1.jar
,
taken from Maven's cache:
$ cd hotmoka_tutorial
$ moka verify
~/.m2/repository/io/hotmoka/io-takamaka-code/1.3.1/io-takamaka-code-1.3.1.jar
--init
Verification succeeded
No error has been issued, since the code does not violate any static constraint.
Note that we used the --init
switch, since otherwise we would get many errors
related to the use of the forbidden io.takamaka.code.*
package. With that
switch, we verify the jar as it would be verified before node initialization,
that is, by considering such packages as legal.
We can generate the instrumented jar, exactly as it would be generated during installation in a Hotmoka node. For that, we run:
$ mkdir instrumented
$ moka instrument
~/.m2/repository/io/hotmoka/io-takamaka-code/1.3.1/io-takamaka-code-1.3.1.jar
instrumented/io-takamaka-code-1.3.1.jar
--init
The moka instrument
command verifies and instruments the jar, and then stores
its instrumented version inside the instrumented
directory.
Let us verify and instrument family-0.0.1.jar
now. As all Takamaka programs,
it uses classes from the io-takamaka-code
jar,
hence it depends on it. We specify this with the --libs
option, that must
refer to an already instrumented jar:
$ moka instrument
family/target/family-0.0.1.jar
instrumented/family-0.0.1.jar
--libs instrumented/io-takamaka-code-1.3.1.jar
Verification succeeds this time as well, and an instrumented family-0.0.1.jar
appears in the
instrumented
directory. Note that we have not used the --init
switch this time, since we
wanted to simulate the verification as it would occur after the node has been already initialized,
when users add their jars to the store of the node.
Let us verify the family_wrong-0.0.1.jar
archive now, that
(we know) contains a few errors. This time, verification will fail and the errors will
be printed on the screen:
$ moka verify
family_wrong/target/family_wrong-0.0.1.jar
--libs instrumented/io-takamaka-code-1.3.1.jar
io/takamaka/family/Person.java field parents:
type not allowed for a field of a storage class
io/takamaka/family/Person.java method <init>:
@Payable can only be used in contracts or interfaces
io/takamaka/family/Person.java method <init>:
a @Payable method must have a first argument for the paid amount,
of type int, long or BigInteger
io/takamaka/family/Person.java method <init>:
@Payable can only be applied to a @FromContract method or constructor
io/takamaka/family/Person.java:55:
static fields cannot be updated
Verification failed because of errors
The same failure occurs with the instrument
command, that will not generate the instrumented jar:
$ moka instrument
family_wrong/target/family_wrong-0.0.1.jar
instrumented/family_wrong-0.0.1.jar
--libs instrumented/io-takamaka-code-1.3.1.jar
io/takamaka/family/Person.java field parents:
type not allowed for a field of a storage class
io/takamaka/family/Person.java method <init>:
@Payable can only be used in contracts or interfaces
io/takamaka/family/Person.java method <init>:
a @Payable method must have a first argument for the paid amount,
of type int, long or BigInteger
io/takamaka/family/Person.java method <init>:
@Payable can only be applied to a @FromContract method or constructor
io/takamaka/family/Person.java:55:
static fields cannot be updated
Verification failed because of errors, no instrumented jar was generated
[Antonopoulos17] Antonopoulos, A. M. (2017). Mastering Bitcoin: Programming the Open Blockchain. O'Reilly Media, 2nd edition.
[AntonopoulosW19] Antonopoulos, A. M. and Wood, G. (2019). Mastering Ethereum: Building Smart Contracts and DApps. O'Reilly Media.
[AtzeiBC17] Atzei, N., Bartoletti, M. and Cimoli, T. (2017). A Survey of Attacks on Ethereum Smart Contracts. 6th Internal Conference on Principles of Security and Trust (POST17) ETAPS 2017.
[BeniniGMS21] Benini, A., Gambini, M., Migliorini, S., Spoto, F. (2021). Power and Pitfalls of Generic Smart Contracts. 3rd International Conference on Blockchain Computing and Applications (BCCA2021).
[BlindAuction] https://solidity.readthedocs.io/en/v0.5.9/solidity-by-example.html#id2.
[CrafaPZ19] Crafa, S., Di Pirro, M. and Zucca, E. (2019). Is Solidity Solid Enough? 3rd Workshop on Trusted Smart Contracts (WTSC19).
[CrosaraOST21] Crosara, M., Olivieri, L., Spoto, F. and Tagliaferro, F. (2021). An Implementation in Java of ERC-20 with Efficient Snapshots. 3rd International Conference on Blockchain Computing and Applications (BCCA2021).
[EC2] Amazon EC2: Secure and Resizable Compute Capacity in the Cloud. https://aws.amazon.com/ec2.
[Freni20] Freni, P., Ferro, E. and Moncada, R. (2020). Tokenization and Blockchain Tokens Classification: A Morphological Framework. IEEE Symposium on Computers and Communications (ISCC), Rennes, France, pages 1-6.
[IyerD08] Iyer, K. and Dannen, C. (2018). Building Games with Ethereum Smart Contracts: Intermediate Projects for Solidity Developers. Apress.
[JVM-Verification] https://docs.oracle.com/javase/specs/jvms/se8/html/jvms-4.html#jvms-4.9.
[LiskovW94] Liskov, B. and Wing, J. M. (1994). A Behavioral Notion of Subtyping. ACM Transactions on Programming Languages and Systems, 16(6):1811-1841.
[MakB17] Mak, S. and Bakker, P. (2017). Java 9 Modularity: Patterns and Practices for Developing Maintainable Applications. Oreilly & Associates Inc.
[Nakamoto08] Nakamoto, S. (2008). Bitcoin: A Peer-to-Peer Electronic Cash System. Available at https://bitcoin.org/bitcoin.pdf.
[OliveiraZBS18] Oliveira, L., Zavolokina, L., Bauer, I. and Schwabe, G. (2018). To Token or not to Token: Tools for Understanding Blockchain Tokens. Proceedings of the International Conference on Information Systems - Bridging the Internet of People, Data, and Things, ICIS 2018, San Francisco, CA, USA, Association for Information Systems.
[OlivieriST21] Olivieri, L., Spoto, F., Tagliaferro, F. (2021). On-Chain Smart Contract Verification over Tendermint. 5th Workshop on Trusted Smart Contracts (WTSC21).
[Sentry] Sentry Node Architecture Overview - Cosmos Forum. https://forum.cosmos.network/t/sentry-node-architecture-overview/454.
[Spoto19] Spoto, F. (2019). A Java Framework for Smart Contracts. 3rd Workshop on Trusted Smart Contracts (WTSC19).
[Spoto20] Spoto, F. (2020). Enforcing Determinism of Java Smart Contracts. 4th Workshop on Trusted Smart Contracts (WTSC20).
[Tapscott20] Tapscott, D. (2020). Token Taxonomy: The Need for Open-Source Standards around Digital Assets. https://www.blockchainresearchinstitute.org/project/token-taxonomy-the-need-for-open-source-standards-around-digital-assets.