“Hello Trail” Tutorial — Get Started with Building Applications Using OriginTrail

Get familiar with the basic functionalities of the new OriginTrail Decentralized Network v4 (Freedom-Gemini) client.

Branimir Rakic
OriginTrail
6 min readDec 23, 2019

--

Welcome to the introductory tutorial on utilizing the OriginTrail Decentralized Network v4 (Freedom-Gemini) client in your applications! This is the first in an array of guides and tutorials for application developers and system integrators on how to use the functionalities of the ODN to empower your supply chain applications with the ODN Trusted Knowledge Graph.

We will begin in the spirit of the usual developer learning experience with a “Hello World” example. However, since we are talking about the ODN, the more appropriate name is “Hello Trail.” You will learn how to import data to your node, publish the dataset on the network and get the referenced object’s history via your OriginTrail Node.

OriginTrail 101

OriginTrail is a neutral, open-source protocol built to establish high interoperability, interconnectivity and trust in data sharing between supply chain IT systems. It can be observed as a layer 2 data interoperability network which operates in conjunction with the L1 blockchain.

It is designed to take the load of storing and exchanging large datasets for supply chain applications off the L1 networks, thus lowering the cost (at the moment of writing this tutorial, storing 1kB of data on Ethereum mainnet would cost roughly $1) and enabling database-grade features for linked data in a decentralized manner. For this purpose, the OriginTrail protocol utilizes a specific data replication mechanism with the goal of building a privacy-first decentralized knowledge graph, effectively bypassing the constraints of underlying blockchain networks imposed by the nature of consensus mechanisms. The blockchain is therefore utilized for dataset fingerprinting and maintaining the necessary game-theoretical mechanisms within the OriginTrail Decentralized Network (ODN). Because of this design, OriginTrail is being used today in production with Ethereum at the current scale of roughly 15 TPS.

To learn more about how OriginTrail operates, check out the OriginTrail technology page, ask questions in the community Discord group, check out the core development team’s blog and engage in the official project Github repository.

Prerequisites to Get Started

In order to successfully complete this tutorial, you will need to set up an OriginTrail node client. We recommend you start by running an OriginTrail testnet node, which you can run in both a local environment (i.e. your laptop) and a VPS. Detailed instructions on how to set up a node can be found here: https://tech.origintrail.io/node-setup-testnet.

Publishing & Viewing a Dataset

Let’s introduce a basic dataset:

This is a generic graph dataset supported natively by the OriginTrail node client, which describes two linked otObjects, one representing an identifier (i.e. a standardized supply chain identifier such as a GS1 barcode or datamatrix), and the other presenting associated metadata, in this case containing the message “Hello trail”. In a specific supply chain use case, this would be information on specific supply chain events, business locations and electronic product codes.

OriginTrail supports a multitude of data models (i.e. supply chain standards such as G1 EPCIS, CBV etc, the W3C Web of Things data model etc), with extensible support due to the flexible native OT-JSON data model supported by the protocol, based on JSON-LD. For the purposes of this tutorial, it is important to understand that we are working with two linked objects, one being identified by the other in a very simple graph structure.

To introduce this dataset to the network, we first need to import it to the node using the import command. This command initiates the import process and returns an internally-generated handler ID, which is a UUID. Using this handler ID, you can check the status of the import process, which can take a certain amount of time, depending on the file size.

To check the status of the initiated import, make the following request to your node API:

Once the import is completed, the node will return the specific dataset ID, graph root hash, data size and other useful values related to the dataset. When a file has been imported, the status will be COMPLETED. Before that, it will be PENDING.

Finally, to replicate the imported dataset on the network, trigger the replication process by calling the replicate API call. With this command, you will initiate an offer on the OriginTrail network and your node will start negotiating with other nodes on the replication procedure.

The replication process includes several steps which we will go deeper into in the following tutorials. For now it is important that you wait for it to finish and to verify that it has been completed. To do that, use the handler_id returned by the replicate call and call:

The replication process can last for several minutes and is determined by the dc_choose_time setting in the node configuration file (more information on the settings can be found in the node documentation). The process involves fingerprinting the dataset on the Ethereum blockchain (immutably writing its graph merkle root hash) and incentivising the data holder (DH) nodes for storing the dataset in their local storage (depending on the network size, a large portion of the network is expected to opportunistically store the dataset due to potential future incentivisation).

Reading the Data from Your Node

To get back the data regarding the specific “trail” of the object you are observing in the supply chain — in this case with the ID “SOME_OBJECT_IDENTIFIER” — we will use the Trail API. It will traverse the object graph based on specific criteria (depth and connection types). When the graph traversal is completed, the call will return an array of OT-JSON objects.

Use this call to determine the historical graph of the object in the node database. In a real-life supply chain use case, the Trail call will return the whole “trail of events” that have been published on the network regarding this specific object, regardless of the number of parties “mentioning” this object in their datasets. Once the amount of exchanged datasets about this specific object in the supply chain grows (a typical scenario would be multiple companies sharing data over the network) more information about this object will be returned by the trail call. It additionally allows further specifications such as specific knowledge graph traversal criteria, which we will go deeper into in future tutorials.

The Trail call deserves its own detailed tutorial as it involves several topics around proving dataset integrity, issuer identity and valid connections in the trail response, all of which will be explained in the coming tutorials in greater depth.

An example response for the trail call in this case would be:

Congratulations! You have now learned to perform the basic I/O operations on your OriginTrail node. In the coming weeks, we will publish further tutorials on how to discover objects and look up datasets over the network, check their integrity and work with the historical trail of supply chain objects spanning multiple datasets.

Expect more tutorials on how to use the OT node in the future. For the main OriginTrail documentation, please see https://docs.origintrail.io.

If any questions came up for you during the tutorial or you would like to share your opinion, the best place to start is by discussing it with our tech community on the OriginTrail Discord server.

👇 More about OriginTrail 👇

Web | Twitter | Facebook | Telegram | LinkedIn | GitHub | Discord

--

--

Branimir Rakic
OriginTrail

Builder, explorer and a glass-half-full type of a person. Into social empowering technologies & art. Co-founder and CTO at @origin_trail