Apr 25, 2019
- Purpose of the Verba Volant Scripta Manent (VVSM)
- Learning how to make a Tezos smart contract
- Reading material needed to start working
Purpose of the Verba Volant Scripta Manent (VVSM)
VVSM is just a POC of how a distributed app (dapp) running on the Tezos Virtual Machine (TVM) can store data securely and consistently with the flexibility required by business users.
In this case we will build a periodic maintenance book where we will record a vehicle maintenance history
The features of VVSM will be as follow:
MVP
- The contract will contain data structures called
Items
, which will contain information concerning the representedItem
(e.g.: A motorcycle or other vehicle) - The contract will contain informations regarding ownership of the
Items
(Items
will be owned byOwners
) Owners
will be able to subscribe to the smart contract- The
Item
will have a history ofEvents
, that may contain a string or a number as value and will have a timestamp of when they were inserted - No history
Event
will be deletable - No Item will be deletable
Items
ownership will be transferable- Only an Item owner will be able to add an
Event
to an ownedItem
, and only with a valid subscription
Possible further features
- Enrich
Item
’s info with a picture - Encrypt
Owners
information - Add special data structures for service points, that are able to add events to an
Item
without being owners of saidItems
- Make
Service Points
able to edit anItem
only after the Item’s Owner has given them access to the Item history - Allow private
Items
’ history visible only toOwners
and authorizedService Points
- Regulate an
Item
transfer in exchange of money, having the smart contract act as Escrow- Taxes/fees?
Learning how to make a Tezos smart contract
Picking the language for the contract
The first thing to do is obviously to find out how to write the code for the contract.
Michelson and Liquidity
Being an ICO supporter and having seen the birth of this project I know that the TVM uses Michelson, a quasi-assembly hideous and unreadable language that IMHO is not supposed to be read by humans.
Although that’s not an option (Akin to the Bytecode on the JVM), the Tezos ecosystem has a more human-compatible option: Liquidity, a language based on oCaml syntax (Funtional fanboys are gonna love it), which I never used or studied before.
After a couple of very discouraging tries I gave up on it (because I’m lazy AF), and decided that the ReasonML syntax variant was going to probably be equally anti-intuitive to an Object Oriented guy as myself. You are obviously very encouraged to learn it as-is, being the official language used in the community.
The false hope of fi
I have also heard some time ago about about fi, a very easy to read/write language that compiles to liquidity and looks very similar to javascript.
Very promising.
I was very excited, and wrote the first draft of the contract using it, but soon realized that the mantainers of that project haven’t yet got around to porting all the liquidity features (I’m not talking about Type inference, I’m talking abount functions, which is a goddamn composite type in liquidity, stuff you’re gonna need if you write something more complex than a voting contract).
I sincerely hope it will reach an usable state for more than simple contracts, I REALLY like it. But it wasn’t enough for my project, you are, however invited to keep tabs on it’s development and use it if it suits your needs.
ReasonML syntax, a way to preserve sanity while writing Liquidity
Cool, back to liquidity it was… but at least I decided to use the ReasonML syntax, which gave me a lot less headaches (I like parentheses more than I like dumb functional conventions).
Reading material needed to start working
Everything you’ll need is available through Tezos.help.
I suggest you start by looking at the free Zastrin course and then read the better and more complete Tezos capstone docs.
The actual development of the contract was done using the liquidity-lang online editor all while keeping ready on a tab the official Liquidity Reference.