Skip to Content
Author's profile photo Nabheet Madan

ABAP meets #BlockChain – Transaction Merkle Tree

So continuing from our previous blog where we have implemented a basic blockchain using ABAP, let us dig into the transactions structure of the block.  A block is collection of transactions, how many transactions that varies from case to case. For example in case of Bitcoin,it has around 500 transactions in a block.

What is a transaction?

A Transaction is nothing but it contains details such as sender, receiver, value of the transaction etc.. It can have N number of fields depending on what needs to be achieved using blockchain. Below mentioned figure highlights a basic transaction structure.

How transactions are arranged in a block -> Merkle Tree

The arrangement of the transactions inside a block is basically in the form of a binary tree.  So what is a Merkle Tree than? A Merkle tree is created by recursively Hashing (encrypted) a pair of nodes data at a time. This continues till we get one single node, known as root node or Merkle Root which contains the hashed data. If the total number of leaf nodes is odd, then the last node will be duplicated so as to make a pair.

The below mentioned figure depicts basic structure of a Merkle Tree and how it merges towards Root node. As can be seen, First all leaf nodes shown with prefix T are hashed and renamed with prefix as H. Then recursively we are pairing two nodes to get the next hash node. This goes on till we get one root node shown as HABCD below.

ABAP implementation of Merkle Tree

  • Number of leaf nodes is kept as input selection screen parameter.
PARAMETERS: leafnode TYPE i.

  • Firstly we determine if number of nodes is odd or even if odd add one to full fill the pairing requirement. In this example data of all leaf nodes is  concatenation leaf with index.The height of the tree is determined by dividing the total number of leaf nodes by 2.
  " if number of leaf nodes is odd add one to make it even,
  IF leafnode MOD 2 <> 0.
    leafnode = leafnode + 1.
  ENDIF.
  " Calculate tree height
  treeheight = leafnode / 2.
  count = 0.
  DATA lv_tabix TYPE string.
  DO leafnode TIMES.
    lv_tabix = sy-index.
    CONCATENATE 'Leaf' lv_tabix INTO merkelline-leafvalue  .
    PERFORM dohash USING merkelline-leafvalue CHANGING merkelline-leafhash.
    merkelline-level = treeheight.
    merkelline-leftleafhash = ''.
    merkelline-rightleafhash = ''.
    APPEND merkelline TO merkeldata.
  ENDDO.
  merkeldata1 = merkeldata.
  • Recursively in a subroutine named recursivehashing, we keep hashing the pair of nodes and keep moving towards the root. At each iteration we are checking,if number nodes is odd then add last node as duplicate one in order to keep the principle or Merkle Tree intact.
FORM recursivehashing.
 ""Check number of nodes to be hashed if odd add the last node again.
  DESCRIBE TABLE merkeldata1 LINES DATA(leafcount).
  IF leafcount MOD 2 <> 0.
    READ TABLE merkeldata1 INTO merkelline1 INDEX leafcount.
    APPEND merkelline1 TO merkeldata1.
  ENDIF.

  DESCRIBE TABLE merkeldata1 LINES leafcount.
  DATA(iteration) = leafcount / 2.
  " Combine the number of nodes based on iteration count.
  DO iteration TIMES.
    DATA(count) = sy-index * 2.
    DATA(count2) = count - 1.
    READ TABLE merkeldata INTO merkelline1 INDEX count.
    READ TABLE merkeldata INTO merkelline2 INDEX count2.

    CONCATENATE merkelline1-leafvalue merkelline2-leafvalue INTO merkelline-leafvalue.
    CONCATENATE merkelline1-leafhash merkelline2-leafhash   INTO merkelline-leafhash.
    PERFORM dohash USING  merkelline-leafhash CHANGING merkelline-leafhash.
    merkelline-leftleafhash = merkelline1-leafhash.
    CONCATENATE merkelline1-leafhash merkelline2-leafhash INTO merkelline-leafhash  .
    merkelline-rightleafhash = merkelline2-leafhash.

    merkelline-level = treeheight - count.
    APPEND merkelline TO merkeldata2.
  ENDDO.
  " Add the processed nodes to master table and call the subroutine again with processed node data
  CLEAR adddummy.
  INSERT LINES OF merkeldata2 INTO merkeldata INDEX 1.
  CLEAR merkeldata1.
  merkeldata1 = merkeldata2.
  CLEAR merkeldata2.
  DESCRIBE TABLE merkeldata1 LINES leafcount.
  IF leafcount <> 1.
    PERFORM recursivehashing.
  ENDIF.
ENDFORM.
FORM dohash USING inputvalue TYPE string CHANGING hashvalue TYPE string.
  CALL METHOD cl_abap_message_digest=>calculate_hash_for_char
    EXPORTING
      if_algorithm  = 'SHA1'
      if_data       = merkelline-leafvalue
    IMPORTING
      ef_hashstring = merkelline-leafhash.
ENDFORM.

 

Final Output of Hashed Merkle Root

  • The output structure contains the readable combined value as well as hashed value. Additionally left and right child details of the current node is also stored.

What is next?

As we were able to construct a basic Merkle tree, the root hash can be now passed onto the block for further processing in the blockchain. I hope this blog helps in enhancing your understanding about Blockchain concepts further:)

Finally wrapping up with next set of challenges on the list.

  • Validate whether a node belongs to Merkle tree or not basically Merkle Path
  • Wish list is to make an app based on concept of blockchain if possible, still researching.

 

Feel free to provide your feedback, open to all ears. Lets share and learn:)

Assigned Tags

      10 Comments
      You must be Logged on to comment or reply to a post.
      Author's profile photo Peter Inotai
      Peter Inotai

      I'm very happy that the second part is already here 🙂

      Sorry for complaining again, but I have to admit, that I miss the code/info about FORM dohash and FORM recursivehashing.

      Could you add some more info about them or just share the whole code for your program?

      Thanks,

      Peter

      Author's profile photo Nabheet Madan
      Nabheet Madan
      Blog Post Author

      Updated the code.Thanks for the feedback.

      Author's profile photo Peter Inotai
      Peter Inotai

      Great. Thanks!

      Author's profile photo Jelena Perfiljeva
      Jelena Perfiljeva

      Peter beat me to it - I'm also curious about dohash routine. 🙂

      Just a couple of notes on the code: we don't need to use DESCRIBE... to get the line count, there is a built-in lines() function available. And I think we don't need to use [] anymore unless it's necessary to distinguish between the header line and table (and we shouldn't be using header lines anymore).

      I do appreciate though that this is not post-7.4 syntax, it makes it much easier for us, ABAPosauruses to follow. 🙂

      Thank you!

       

      Author's profile photo Nabheet Madan
      Nabheet Madan
      Blog Post Author

      Thanks for the feedback. I am also actually catching up on new syntax so forgive me on the same ? Initially i thought let me do this solution via classes and all but then thought BOPF will be a good place to get hands dirty with new syntax and all.

      Updated the routine code.

      Thanks

      Nabheet

      Author's profile photo Jelena Perfiljeva
      Jelena Perfiljeva

      It's actually the "old new" syntax, been around as long as I remember (since 2005 minimum).

      No classes please! It's fine as it is. 🙂

      Author's profile photo Michelle Crapo
      Michelle Crapo

      Very nice.

      Thank you for sharing!

      Michelle

      Author's profile photo Sandro Scalco
      Sandro Scalco

      hi

      as before, easy to understand example of the basic concepts!

      best

      sandro

      Author's profile photo Former Member
      Former Member

      Hi,

      Nice information. But I have one doubt, if somebody want to verify transaction completely how he will traverse back from merkle root hash to complete transaction which sender has referred for the current transaction. Basically, how receiver will get to know all about transaction from blockchain.

      It is quite difficult to traverse all over blockchain. And from hash we cant it traverse back to transaction. Please, let me know.

       

      Author's profile photo Nabheet Madan
      Nabheet Madan
      Blog Post Author

      Thanks Prerana for the feedback. Merkel tree traversal is pending it can be done for sure let me get back to you.

      Thanks

      Nabheet