diff --git a/.gitignore b/.gitignore
index b2d5801ceba70247eda22e1b3c304a81bfa64409..1bb120a541da8c01e7ba616b6a05abd2a0c45ff1 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,5 +1,6 @@
 build/
-testdir/
+example/tmp
+example/var
 *.text
 _skbuild/
 dist/
diff --git a/.gitmodules b/.gitmodules
index 89ed520518b6d6d91cddb7273b0c9bd954d8b426..6408a33373ffb6974e2f403d9c0082b42c60e66c 100644
--- a/.gitmodules
+++ b/.gitmodules
@@ -82,9 +82,6 @@
 [submodule "libdap-client-python"]
 	path = libdap-client-python
 	url = https://gitlab.demlabs.net/cellframe/libdap-client-python.git
-[submodule "libdap-chain-common"]
-	path = libdap-chain-common
-	url = https://gitlab.demlabs.net/cellframe/libdap-chain-common.git
 [submodule "libdap-stream-ch-chain-net-srv"]
 	path = libdap-stream-ch-chain-net-srv
 	url = https://gitlab.demlabs.net/cellframe/libdap-stream-ch-chain-net-srv.git
@@ -106,3 +103,6 @@
 [submodule "libdap-chain-cs-dag-pos"]
 	path = libdap-chain-cs-dag-pos
 	url = https://gitlab.demlabs.net/cellframe/libdap-chain-cs-dag-pos.git
+[submodule "libdap-chain-common"]
+	path = libdap-chain-common
+	url = https://gitlab.demlabs.net/cellframe/libdap-chain-common.git
diff --git a/example/example_node.py b/example/example_node.py
new file mode 100644
index 0000000000000000000000000000000000000000..8d8e4b1819cc71c5053259e747f6414c54b08ce2
--- /dev/null
+++ b/example/example_node.py
@@ -0,0 +1,104 @@
+from CellFrame import *
+import os
+
+app_name = "example_node"
+tmp_dir = os.getcwd() + "/tmp"
+var_dir = os.getcwd() + "/var"
+
+json_string = """{
+    "modules": ["Crypto", "ServerCore", "Http", "HttpFolder", "GlobalDB", "Client", "HttpClientSimple", "Mempool",
+     "Chain", "Wallet", "ChainCSDag", "ChainCSDagPoa", "ChainCSDagPos", "GDB", "Net", "ChainNetSrv", "EncHttp",
+     "Stream", "StreamCtl", "HttpSimple", "StreamChChain", "StreamChChainNet", "StreamChChainNetSrv"],
+    "DAP": {
+       "config_dir": \""""+tmp_dir+"""\",
+       "log_level": "L_DEBUG",
+       "application_name": \""""+app_name+"""\",
+       "file_name_log": \""""+app_name+""".text\"
+    },
+    "Configuration" : {
+        "general": {
+            "debug_mode": false,
+            "debug_dump_stream_headers": false,
+            "wallets_default": "default"
+        },
+        "server": {
+            "enabled": false,
+            "listen_address": "0.0.0.0",
+            "listen_port_tcp": 8079
+        },
+        "mempool": {
+             "accept": false
+        },
+        "conserver": {
+            "enabled": true,
+            "listen_unix_socket_path": \""""+tmp_dir+"""/node_cli\"
+        },
+        "resources": {
+            "threads_cnt": 0,
+            "pid_path": \""""+var_dir+"""/run/cellframe-node.pid\",
+            "log_file": \""""+var_dir+"""/log/cellframe-node.log\",
+            "wallets_path": \""""+var_dir+"""/lib/wallet\",
+            "ca_folders": [
+                \""""+var_dir+"""/lib/ca\"
+            ],
+            "dap_global_db_path": \""""+var_dir+"""/lib/global_db\",
+            "dap_global_db_driver": "cdb"
+        },
+        "networks":{
+            "devnet": {
+                "general":{
+                    "id": "0xFF00000000000003",
+                    "name": "devnet",
+                    "type": "development",
+                    "node-role": "root",
+                    "gdb_groups_prefix": "devnet"
+                },
+                "name_cfg_files": ["chain-gdb"],
+                "conf_files":{
+                    "chain-gdb": {
+                        "general": {
+                            "id": "0xf00000000000000f",
+                            "name": "gdb",
+                            "consensus": "gdb",
+                            "class": "gdb",
+                            "datum_types": ["token", "emission", "shard", "ca", "transaction"]
+                        },
+                        "gdb":{
+                            "celled": false
+                        }
+                    }
+                }
+            }
+        }
+    },
+    "Stream" : {
+        "DebugDumpStreamHeaders": false
+    },
+    "ServerCore" : {
+        "thread_cnt": 0,
+        "conn": 0
+    }
+    }"""
+
+init(json_string)
+setLogLevel(DEBUG)
+
+server_host_name = configGetItem("server", "listen_address")
+server_port = int(configGetItem("server", "listen_port_tcp"))
+sr = ServerCore.listen(server_host_name, server_port, 0)
+Http.new(sr, app_name)
+EncHttp.addProc(sr, "/enc_http")
+Stream.addProcHttp(sr, "/stream")
+StreamCtl.addProcHttp(sr, "/stream_ctl")
+
+if (configGetItem("mempool", "accept") == "true"):
+    Mempool.addProc(sr, "/mempool")
+
+ev = Events()
+ev.start()
+
+rc = ServerCore.loop(sr)
+
+
+
+deinit()
diff --git a/include/wrapping_dap_enc_http.h b/include/wrapping_dap_enc_http.h
index 1c2f26fa434b8aaa5e098bde149981985c5399ad..85fe17288f3a3fb5104f1e0a123e59f584ebd77f 100644
--- a/include/wrapping_dap_enc_http.h
+++ b/include/wrapping_dap_enc_http.h
@@ -3,6 +3,8 @@
 
 #include <Python.h>
 #include "dap_server_python.h"
+#include "dap_enc_http.h"
+#include "dap_http.h"
 
 typedef struct PyDapEncHttp{
     PyObject_HEAD
diff --git a/include/wrapping_dap_mempool.h b/include/wrapping_dap_mempool.h
index 8487d6aaef4677883f095dbe875579752b54f2e0..8b637e344979f070249d8b9efb386458ea87b523 100644
--- a/include/wrapping_dap_mempool.h
+++ b/include/wrapping_dap_mempool.h
@@ -13,6 +13,7 @@ typedef struct PyDapMempool{
 PyObject *dap_chain_mempool_add_proc_py(PyObject *self, PyObject *args);
 
 static PyMethodDef  DapMempoolMethods[] = {
+        {"addProc", dap_chain_mempool_add_proc_py, METH_VARARGS | METH_STATIC, ""},
         {NULL,NULL,0,NULL}
 };
 
diff --git a/libdap b/libdap
index 9c1afb9e17817deb61ecafdddd415d249b6b6547..ae9fc9008d66e6d3bb4c3f12b707fbd26e32b0bf 160000
--- a/libdap
+++ b/libdap
@@ -1 +1 @@
-Subproject commit 9c1afb9e17817deb61ecafdddd415d249b6b6547
+Subproject commit ae9fc9008d66e6d3bb4c3f12b707fbd26e32b0bf
diff --git a/libdap-chain b/libdap-chain
index 777394aa9c175db4e6245c95c990a6f2c5717a58..d790628d8f9a77d46e0a233892f196a4d69a3739 160000
--- a/libdap-chain
+++ b/libdap-chain
@@ -1 +1 @@
-Subproject commit 777394aa9c175db4e6245c95c990a6f2c5717a58
+Subproject commit d790628d8f9a77d46e0a233892f196a4d69a3739
diff --git a/libdap-chain-common b/libdap-chain-common
new file mode 160000
index 0000000000000000000000000000000000000000..dde4bb6403957dcbd2e0a983b36661ad303f5756
--- /dev/null
+++ b/libdap-chain-common
@@ -0,0 +1 @@
+Subproject commit dde4bb6403957dcbd2e0a983b36661ad303f5756
diff --git a/libdap-chain-common/.gitignore b/libdap-chain-common/.gitignore
deleted file mode 100755
index 90acde565b3bee7df8e29d2d9c7ae607b901fe20..0000000000000000000000000000000000000000
--- a/libdap-chain-common/.gitignore
+++ /dev/null
@@ -1,5 +0,0 @@
-*.autosave
-*.user
-*.o
-*.obj
-Makefile
diff --git a/libdap-chain-common/CMakeLists.txt b/libdap-chain-common/CMakeLists.txt
deleted file mode 100755
index 5c27bc98d17c1d5fb441457140ab4948d50919a5..0000000000000000000000000000000000000000
--- a/libdap-chain-common/CMakeLists.txt
+++ /dev/null
@@ -1,37 +0,0 @@
-cmake_minimum_required(VERSION 2.8)
-project (dap_chain_common)
-  
-set(DAP_CHAIN_COMMON_SRCS 
-        src/dap_chain_common.c
-        src/dap_chain_datum.c
-        src/dap_chain_datum_token.c
-        src/dap_chain_datum_hashtree_roots.c
-        src/dap_chain_datum_tx_items.c
-        src/dap_chain_datum_tx.c
-        src/dap_chain_datum_tx_out_cond.c
-        src/dap_chain_datum_tx_token.c
-        src/dap_chain_datum_tx_receipt.c
-        )
-
-set(DAP_CHAIN_COMMON_HEADERS
-        include/dap_chain_common.h
-        include/dap_chain_datum.h
-        include/dap_chain_datum_token.h
-        include/dap_chain_datum_hashtree_roots.h
-        include/dap_chain_datum_tx_items.h
-        include/dap_chain_datum_tx.h
-        include/dap_chain_datum_tx_in.h
-        include/dap_chain_datum_tx_in_cond.h
-        include/dap_chain_datum_tx_out.h
-        include/dap_chain_datum_tx_out_cond.h
-        include/dap_chain_datum_tx_pkey.h
-        include/dap_chain_datum_tx_sig.h
-        include/dap_chain_datum_tx_token.h
-        include/dap_chain_datum_tx_receipt.h
-    )
-
-
-add_library(${PROJECT_NAME} STATIC ${DAP_CHAIN_COMMON_SRCS} ${DAP_CHAIN_COMMON_HEADERS})
-
-target_link_libraries(dap_chain_common dap_core dap_crypto )
-target_include_directories(dap_chain_common PUBLIC include/ )
diff --git a/libdap-chain-common/README.md b/libdap-chain-common/README.md
deleted file mode 100644
index f773810486a52bd97a1f27f3d22f101f3fe19278..0000000000000000000000000000000000000000
--- a/libdap-chain-common/README.md
+++ /dev/null
@@ -1,2 +0,0 @@
-# libdap-chain-common
-
diff --git a/libdap-chain-common/include/dap_chain_common.h b/libdap-chain-common/include/dap_chain_common.h
deleted file mode 100755
index f83c4836b0c78f0d7c155907bfa6c3dae304e2cd..0000000000000000000000000000000000000000
--- a/libdap-chain-common/include/dap_chain_common.h
+++ /dev/null
@@ -1,257 +0,0 @@
-/*
- * Authors:
- * Dmitriy A. Gearasimov <gerasimov.dmitriy@demlabs.net>
- * DeM Labs Inc.   https://demlabs.net    https:/gitlab.com/demlabs
- * Kelvin Project https://github.com/kelvinblockchain
- * Copyright  (c) 2017-2018
- * All rights reserved.
-
- This file is part of DAP (Deus Applications Prototypes) the open source project
-
-    DAP (Deus Applicaions Prototypes) is free software: you can redistribute it and/or modify
-    it under the terms of the GNU General Public License as published by
-    the Free Software Foundation, either version 3 of the License, or
-    (at your option) any later version.
-
-    DAP is distributed in the hope that it will be useful,
-    but WITHOUT ANY WARRANTY; without even the implied warranty of
-    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-    GNU General Public License for more details.
-
-    You should have received a copy of the GNU General Public License
-    along with any DAP based project.  If not, see <http://www.gnu.org/licenses/>.
-*/
-
-#pragma once
-#include <stdint.h>
-#include <stdio.h>
-
-#include "dap_common.h"
-#include "dap_math_ops.h"
-#include "dap_enc_key.h"
-#include "dap_pkey.h"
-#include "dap_sign.h"
-#include "dap_hash.h"
-
-#define DAP_CHAIN_ADDR_VERSION_CURRENT 1
-
-#define DAP_CHAIN_ID_SIZE           8
-#define DAP_CHAIN_SHARD_ID_SIZE     8
-#define DAP_CHAIN_NET_ID_SIZE       8
-#define DAP_CHAIN_NODE_ROLE_SIZE    2
-#define DAP_CHAIN_HASH_SLOW_SIZE    32
-#define DAP_CHAIN_TIMESTAMP_SIZE    8
-#define DAP_CHAIN_TICKER_SIZE_MAX   10
-
-#define DATOSHI_LD 1000000000.0L
-
-// Chain ID of the whole system
-typedef union dap_chain_id {
-    uint8_t raw[DAP_CHAIN_ID_SIZE];
-    uint64_t uint64;
-} DAP_ALIGN_PACKED dap_chain_id_t;
-
-// Shard ID
-typedef union dap_chain_cell_id {
-    uint8_t raw[DAP_CHAIN_SHARD_ID_SIZE];
-    uint64_t uint64;
-} DAP_ALIGN_PACKED dap_chain_cell_id_t;
-
-
-/**
-  * @struct Node address
-  *
-  */
-typedef union dap_chain_node_addr {
-    uint64_t uint64;
-    uint16_t words[sizeof(uint64_t)/2];
-    uint8_t raw[sizeof(uint64_t)];  // Access to selected octects
-} DAP_ALIGN_PACKED dap_chain_node_addr_t;
-
-#if __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
-#define NODE_ADDR_FP_STR      "%04hX::%04hX::%04hX::%04hX"
-#define NODE_ADDR_FP_ARGS(a)  a->words[2],a->words[3],a->words[0],a->words[1]
-#define NODE_ADDR_FPS_ARGS(a)  &a->words[2],&a->words[3],&a->words[0],&a->words[1]
-#define NODE_ADDR_FP_ARGS_S(a)  a.words[2],a.words[3],a.words[0],a.words[1]
-#define NODE_ADDR_FPS_ARGS_S(a)  &a.words[2],&a.words[3],&a.words[0],&a.words[1]
-#else
-#define NODE_ADDR_FP_STR      "%04hX::%04hX::%04hX::%04hX"
-#define NODE_ADDR_FP_ARGS(a)  a->words[3],a->words[2],a->words[1],a->words[0]
-#define NODE_ADDR_FPS_ARGS(a)  &a->words[3],&a->words[2],&a->words[1],&a->words[0]
-#define NODE_ADDR_FP_ARGS_S(a)  a.words[3],a.words[2],a.words[1],a.words[0]
-#define NODE_ADDR_FPS_ARGS_S(a)  &a.words[3],&a.words[2],&a.words[1],&a.words[0]
-
-#endif
-
-inline static int dap_chain_node_addr_from_str( dap_chain_node_addr_t * a_addr, const char * a_addr_str){
-    return (int) sscanf(a_addr_str,NODE_ADDR_FP_STR,NODE_ADDR_FPS_ARGS(a_addr) )-4;
-}
-/**
-  *
-  *
-  *
-  *
-  */
-typedef union dap_chain_node_role{
-    enum {
-        NODE_ROLE_ROOT_MASTER=0x00,
-        NODE_ROLE_ROOT=0x01,
-        NODE_ROLE_ARCHIVE=0x02,
-        NODE_ROLE_CELL_MASTER=0x10,
-        NODE_ROLE_MASTER = 0x20,
-        NODE_ROLE_FULL=0xf0,
-        NODE_ROLE_LIGHT=0xff } enums;
-    uint8_t raw[DAP_CHAIN_NODE_ROLE_SIZE];
-} DAP_ALIGN_PACKED dap_chain_node_role_t;
-
-
-typedef union dap_chain_net_id{
-    uint64_t uint64;
-    uint8_t raw[DAP_CHAIN_NET_ID_SIZE];
-} DAP_ALIGN_PACKED dap_chain_net_id_t;
-
-typedef union dap_chain_hash_slow{
-    uint8_t raw[DAP_CHAIN_HASH_SLOW_SIZE];
-}  dap_chain_hash_slow_t;
-
-
-
-typedef enum dap_chain_hash_slow_kind {
-    HASH_GOLD = 0, HASH_SILVER, HASH_COPPER, HASH_USELESS = -1
-} dap_chain_hash_slow_kind_t;
-
-
-typedef struct dap_chain_addr{
-    uint8_t addr_ver; // 0 for default
-    dap_chain_net_id_t net_id;  // Testnet, mainnet or alternet
-    dap_sign_type_t sig_type;
-    union{
-        //dap_chain_hash_fast_t hash;
-        struct {
-            uint8_t key_spend[sizeof(dap_chain_hash_fast_t)/2];
-            uint8_t key_view[sizeof(dap_chain_hash_fast_t)/2];
-        } key_sv;
-        uint8_t key[sizeof(dap_chain_hash_fast_t)];
-        uint8_t hash[sizeof(dap_chain_hash_fast_t)];
-        dap_chain_hash_fast_t hash_fast;
-    } data;
-    dap_chain_hash_fast_t checksum;
-}  DAP_ALIGN_PACKED dap_chain_addr_t;
-
-typedef uint64_t dap_chain_time_t;
-static inline dap_chain_time_t dap_chain_time_now() { return (dap_chain_time_t) time(NULL); }
-
-#define DAP_CHAIN_NET_SRV_UID_SIZE 8
-
-typedef union {
-    uint8_t raw[DAP_CHAIN_NET_SRV_UID_SIZE];
-#if DAP_CHAIN_NET_SRV_UID_SIZE == 8
-    uint64_t raw_ui64[1];
-    uint64_t uint64;
-#elif DAP_CHAIN_NET_SRV_UID_SIZE == 16
-    uint64_t raw_ui64[1];
-    uint128_t uint128;
-#endif
-} dap_chain_net_srv_uid_t;
-
-
-typedef union {
-    uint8_t raw[4];
-    uint32_t raw_ui32[1];
-    uint32_t uint32;
-    enum {
-        SERV_UNIT_UNDEFINED = 0 ,
-        SERV_UNIT_MB = 0x00000001, // megabytes
-        SERV_UNIT_SEC = 0x00000002, // seconds
-        SERV_UNIT_DAY = 0x00000003,  // days
-        SERV_UNIT_KB = 0x00000010,  // kilobytes
-        SERV_UNIT_B = 0x00000011,   // bytes
-    } enm;
-} dap_chain_net_srv_price_unit_uid_t;
-
-typedef enum dap_chain_tx_item_type {
-    TX_ITEM_TYPE_IN = 0x00, /// @brief  Transaction: inputs
-    TX_ITEM_TYPE_OUT = 0x10, /// @brief  Transaction: outputs
-    TX_ITEM_TYPE_PKEY = 0x20,
-    TX_ITEM_TYPE_SIG = 0x30,
-    TX_ITEM_TYPE_TOKEN = 0x40,
-    TX_ITEM_TYPE_IN_COND = 0x50, /// @brief  Transaction: conditon inputs
-    TX_ITEM_TYPE_OUT_COND = 0x60, /// @brief  Transaction: conditon outputs
-    TX_ITEM_TYPE_RECEIPT = 0x70,
-
-    TX_ITEM_TYPE_ANY = 0xff,
-} dap_chain_tx_item_type_t;
-
-
-typedef struct dap_chain_receipt{
-    dap_chain_net_srv_uid_t srv_uid; // Service UID
-    dap_chain_net_srv_price_unit_uid_t units_type;
-    uint64_t units; // Unit of service (seconds, megabytes, etc.) Only for SERV_CLASS_PERMANENT
-    uint64_t value_datoshi; // Receipt value
-} dap_chain_receipt_info_t;
-
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-size_t dap_chain_hash_slow_to_str(dap_chain_hash_slow_t * a_hash, char * a_str, size_t a_str_max);
-
-char* dap_chain_addr_to_str(const dap_chain_addr_t *a_addr);
-dap_chain_addr_t* dap_chain_addr_from_str(const char *str);
-
-dap_chain_net_id_t dap_chain_net_id_from_str(const char* a_str);
-dap_chain_net_srv_uid_t dap_chain_net_srv_uid_from_str(const char* a_str);
-
-void dap_chain_addr_fill(dap_chain_addr_t *a_addr, dap_enc_key_t *a_key, dap_chain_net_id_t *a_net_id);
-
-int dap_chain_addr_check_sum(const dap_chain_addr_t *a_addr);
-
-static inline long double dap_chain_balance_to_coins( uint128_t a_balance){
-    return (long double) a_balance / DATOSHI_LD;
-}
-
-static inline uint128_t dap_chain_coins_to_balance( long double a_balance){
-    return (uint128_t)( a_balance * DATOSHI_LD) ;
-}
-
-/**
- * @brief dap_chain_hash_to_str
- * @param a_hash
- * @return
- */
-
-static inline char * dap_chain_hash_slow_to_str_new(dap_chain_hash_slow_t * a_hash)
-{
-    const size_t c_hash_str_size = sizeof(*a_hash)*2 +1 /*trailing zero*/ +2 /* heading 0x */  ;
-    char * ret = DAP_NEW_Z_SIZE(char, c_hash_str_size);
-    dap_chain_hash_slow_to_str(a_hash,ret,c_hash_str_size);
-    return ret;
-}
-
-
-
-/**
- * @brief dap_chain_hash_kind_check
- * @param a_hash
- * @details
- */
-static inline dap_chain_hash_slow_kind_t dap_chain_hash_slow_kind_check(dap_chain_hash_slow_t * a_hash, const uint8_t a_valuable_head  )
-{
-    register uint8_t i;
-    register uint8_t l_hash_first = a_hash->raw[0];
-    register uint8_t * l_hash_data = a_hash->raw;
-    for ( i = 1; i < a_valuable_head; ++i ){
-        if ( l_hash_data[i] != l_hash_first  )
-            return HASH_USELESS;
-    }
-    if( l_hash_first == 0 )
-        return HASH_GOLD;
-    else
-        return HASH_SILVER;
-}
-
-
-#ifdef __cplusplus
-}
-#endif
diff --git a/libdap-chain-common/include/dap_chain_datum.h b/libdap-chain-common/include/dap_chain_datum.h
deleted file mode 100755
index f5900f16ec0af22d1ca4cfbabc8c8d05d0c846c8..0000000000000000000000000000000000000000
--- a/libdap-chain-common/include/dap_chain_datum.h
+++ /dev/null
@@ -1,126 +0,0 @@
-/*
- * Authors:
- * Dmitriy A. Gearasimov <gerasimov.dmitriy@demlabs.net>
- * DeM Labs Inc.   https://demlabs.net
- * Kelvin Project https://github.com/kelvinblockchain
- * Copyright  (c) 2017-2018
- * All rights reserved.
-
- This file is part of DAP (Deus Applications Prototypes) the open source project
-
-    DAP (Deus Applicaions Prototypes) is free software: you can redistribute it and/or modify
-    it under the terms of the GNU General Public License as published by
-    the Free Software Foundation, either version 3 of the License, or
-    (at your option) any later version.
-
-    DAP is distributed in the hope that it will be useful,
-    but WITHOUT ANY WARRANTY; without even the implied warranty of
-    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-    GNU General Public License for more details.
-
-    You should have received a copy of the GNU General Public License
-    along with any DAP based project.  If not, see <http://www.gnu.org/licenses/>.
-*/
-
-#pragma once
-#include <stdint.h>
-#include "dap_common.h"
-#include "dap_math_ops.h"
-#include "dap_chain_common.h"
-
-#define DAP_CHAIN_DATUM_VERSION 0x00
-
-/// End section, means all the rest of the block is empty
-#define DAP_CHAIN_DATUM_BLOCK_END                 0x0000
-/// Section with additional roots, for example transaction roots
-#define DAP_CHAIN_DATUM_BLOCK_ROOTS 0x0001
-
-/// Transaction header section
-#define DAP_CHAIN_DATUM_TX                  0x0100
-
-/// Transaction request section
-#define DAP_CHAIN_DATUM_TX_REQUEST          0x0300
-
-/// Smart contract: DVM code section
-#define DAP_CHAIN_DATUM_WASM_CODE            0x0900
-/// Smart contract: DVM code section
-#define DAP_CHAIN_DATUM_WASM_DATA            0x0901
-
-/// Smart contract: EVM code section
-#define DAP_CHAIN_DATUM_EVM_CODE            0x0910
-
-/// Smart contract: EVM data section
-#define DAP_CHAIN_DATUM_EVM_DATA            0x0911
-
-/// Pub key section, with sign and address
-#define DAP_CHAIN_DATUM_PKEY                0x0c00
-
-
-/// Token
-#define DAP_CHAIN_DATUM_TOKEN_DECL                0xf000
-#define DAP_CHAIN_DATUM_TOKEN_EMISSION       0xf100
-
-static const char * c_datum_type_str[]={
-    [DAP_CHAIN_DATUM_TX]="DATUM_TX",
-    [DAP_CHAIN_DATUM_TX_REQUEST]="DATUM_TX_REQUEST",
-    [DAP_CHAIN_DATUM_WASM_CODE]="DATUM_WASM_CODE",
-    [DAP_CHAIN_DATUM_WASM_DATA]="DATUM_WASM_DATA",
-    [DAP_CHAIN_DATUM_EVM_CODE]="DATUM_EVM_CODE",
-    [DAP_CHAIN_DATUM_EVM_DATA]="DATUM_EVM_DATA",
-    [DAP_CHAIN_DATUM_PKEY]="DATUM_PKEY",
-    [DAP_CHAIN_DATUM_TOKEN_DECL]="DATUM_TOKEN_DECL",
-    [DAP_CHAIN_DATUM_TOKEN_EMISSION]="DATUM_TOKEN_EMISSION",
-};
-
-#define DAP_CHAIN_DATUM_ID_SIZE 4
-
-// Datum subchain type id
-typedef union dap_chain_datum_typeid{
-    uint8_t data[DAP_CHAIN_DATUM_ID_SIZE];
-} DAP_ALIGN_PACKED dap_chain_datum_typeid_t;
-
-
-/**
-  * @struct dap_chain_block_section
-  * @brief section inside the block
-  */
-typedef struct dap_chain_datum{
-    struct{
-        /// Datum version
-        uint8_t version_id;
-        /// Section type id
-        uint16_t type_id;
-        /// Data section size
-        uint32_t data_size;
-        /// Create timestamp (GM time)
-        uint64_t ts_create;
-    } DAP_ALIGN_PACKED header;
-    uint8_t data[]; /// Stored datum body
-} DAP_ALIGN_PACKED dap_chain_datum_t;
-
-
-struct dap_chain;
-typedef struct dap_chain dap_chain_t;
-
-typedef struct dap_chain_datum_iter{
-    dap_chain_t * chain;
-    dap_chain_datum_t * cur;
-    void * cur_item;
-    void * atom_iter;
-} dap_chain_datum_iter_t;
-
-typedef dap_chain_datum_iter_t* (*dap_chain_datum_callback_iter_create_t)(dap_chain_t * );
-typedef dap_chain_datum_t* (*dap_chain_datum_callback_iter_get_first_t)(dap_chain_datum_iter_t * );
-typedef dap_chain_datum_t* (*dap_chain_datum_callback_iter_get_next_t)(dap_chain_datum_iter_t *  );
-typedef void (*dap_chain_datum_callback_iter_delete_t)(dap_chain_datum_iter_t *  );
-
-
-static inline size_t dap_chain_datum_size(dap_chain_datum_t * a_datum)
-{
-    if(!a_datum)
-        return 0;
-    return  sizeof(a_datum->header) + a_datum->header.data_size;
-}
-
-dap_chain_datum_t * dap_chain_datum_create(uint16_t a_type_id, const void * a_data, size_t a_data_size);
-
diff --git a/libdap-chain-common/include/dap_chain_datum_hashtree_roots.h b/libdap-chain-common/include/dap_chain_datum_hashtree_roots.h
deleted file mode 100755
index 259060fbc263cace6de406591247e1fd0bd4b9ce..0000000000000000000000000000000000000000
--- a/libdap-chain-common/include/dap_chain_datum_hashtree_roots.h
+++ /dev/null
@@ -1,47 +0,0 @@
-/*
- * Authors:
- * Dmitriy A. Gearasimov <kahovski@gmail.com>
- * DeM Labs Inc.   https://demlabs.net
- * DeM Labs Open source community https://github.com/demlabsinc
- * Copyright  (c) 2017-2018
- * All rights reserved.
-
- This file is part of DAP (Deus Applications Prototypes) the open source project
-
-    DAP (Deus Applicaions Prototypes) is free software: you can redistribute it and/or modify
-    it under the terms of the GNU General Public License as published by
-    the Free Software Foundation, either version 3 of the License, or
-    (at your option) any later version.
-
-    DAP is distributed in the hope that it will be useful,
-    but WITHOUT ANY WARRANTY; without even the implied warranty of
-    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-    GNU General Public License for more details.
-
-    You should have received a copy of the GNU General Public License
-    along with any DAP based project.  If not, see <http://www.gnu.org/licenses/>.
-*/
-#pragma once
-
-#include "dap_common.h"
-#include "dap_chain_common.h"
-
-/**
-  * @struct dap_chain_datum_hashtree_roots_v1
-  * @brief Hash tree roots for block, version 1
-  */
-typedef struct dap_chain_datum_hashtree_roots_v1{
-    dap_chain_hash_fast_t main;
-} DAP_ALIGN_PACKED dap_chain_block_roots_v1_t;
-
-/**
-  * @struct dap_chain_datum_hashtree_roots_v2
-  * @brief Hash tree roots for block, version 2
-  */
-typedef struct dap_chain_datum_hashtree_roots_v2{
-    dap_chain_hash_fast_t main;
-    dap_chain_hash_fast_t txs;
-} DAP_ALIGN_PACKED dap_chain_datum_hashtree_roots_v2_t;
-
-typedef dap_chain_datum_hashtree_roots_v2_t dap_chain_datum_hashtree_roots_t;
-
diff --git a/libdap-chain-common/include/dap_chain_datum_token.h b/libdap-chain-common/include/dap_chain_datum_token.h
deleted file mode 100755
index d6de4abac568b9f97599b26d0e2439c244b219a0..0000000000000000000000000000000000000000
--- a/libdap-chain-common/include/dap_chain_datum_token.h
+++ /dev/null
@@ -1,79 +0,0 @@
-/*
- * Authors:
- * Dmitriy A. Gearasimov <gerasimov.dmitriy@demlabs.net>
- * DeM Labs Inc.   https://demlabs.net
- * CellFrame       https://cellframe.net
- * Sources         https://gitlab.demlabs.net/cellframe
- * Copyright  (c) 2017-2019
- * All rights reserved.
-
- This file is part of CellFrame SDK the open source project
-
-    CellFrame SDK is free software: you can redistribute it and/or modify
-    it under the terms of the GNU General Public License as published by
-    the Free Software Foundation, either version 3 of the License, or
-    (at your option) any later version.
-
-    CellFrame SDK is distributed in the hope that it will be useful,
-    but WITHOUT ANY WARRANTY; without even the implied warranty of
-    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-    GNU General Public License for more details.
-
-    You should have received a copy of the GNU General Public License
-    along with any CellFrame SDK based project.  If not, see <http://www.gnu.org/licenses/>.
-*/
-#pragma once
-#include "dap_chain_common.h"
-#include "dap_sign.h"
-
-// Token declaration
-
-typedef struct dap_chain_datum_token{
-    struct {
-        uint16_t version;
-        char ticker[DAP_CHAIN_TICKER_SIZE_MAX];
-        uint64_t total_supply;
-        uint16_t signs_valid; // Emission auth signs
-        uint16_t signs_total; // Emission auth signs
-    } DAP_ALIGN_PACKED header;
-    uint8_t signs[]; // Signs if exists
-
-} DAP_ALIGN_PACKED dap_chain_datum_token_t;
-
-
-#define DAP_CHAIN_DATUM_TOKEN_EMISSION_TYPE_UNDEFINED         0x00
-#define DAP_CHAIN_DATUM_TOKEN_EMISSION_TYPE_AUTH              0x01
-#define DAP_CHAIN_DATUM_TOKEN_EMISSION_TYPE_ALGO              0x02
-#define DAP_CHAIN_DATUM_TOKEN_EMISSION_TYPE_ATOM_OWNER        0x03
-#define DAP_CHAIN_DATUM_TOKEN_EMISSION_TYPE_SMART_CONTRACT    0x04
-extern const char *c_dap_chain_datum_token_emission_type_str[];
-
-// Token emission
-typedef struct dap_chain_datum_token_emission{
-    struct  {
-        uint8_t version;
-        uint8_t type; // Emission Type
-        char ticker[DAP_CHAIN_TICKER_SIZE_MAX];
-        dap_chain_addr_t address; // Emission holder's address
-        uint64_t value;
-    } DAP_ALIGN_PACKED hdr;
-    union {
-        struct {
-            dap_chain_addr_t addr;
-            int flags;
-            uint64_t lock_time;
-        } DAP_ALIGN_PACKED type_smart_contract;
-        struct {
-            uint64_t value_start;// Default value. Static if nothing else is defined
-            char value_change_algo_codename[32];
-        } DAP_ALIGN_PACKED type_atom_owner;
-        struct {
-            char codename[32];
-        } DAP_ALIGN_PACKED type_algo;
-        struct {
-            uint16_t signs_count;
-            uint8_t  signs[];
-        } DAP_ALIGN_PACKED type_auth;// Signs if exists
-    } data;
-} DAP_ALIGN_PACKED dap_chain_datum_token_emission_t;
-
diff --git a/libdap-chain-common/include/dap_chain_datum_tx.h b/libdap-chain-common/include/dap_chain_datum_tx.h
deleted file mode 100755
index ac384233cb7426d4c27109da166e7f7277bb5e38..0000000000000000000000000000000000000000
--- a/libdap-chain-common/include/dap_chain_datum_tx.h
+++ /dev/null
@@ -1,122 +0,0 @@
-/*
- * Authors:
- * Dmitriy A. Gearasimov <kahovski@gmail.com>
- * DeM Labs Inc.   https://demlabs.net
- * DeM Labs Open source community https://github.com/demlabsinc
- * Copyright  (c) 2017-2018
- * All rights reserved.
-
- This file is part of DAP (Deus Applications Prototypes) the open source project
-
-    DAP (Deus Applicaions Prototypes) is free software: you can redistribute it and/or modify
-    it under the terms of the GNU General Public License as published by
-    the Free Software Foundation, either version 3 of the License, or
-    (at your option) any later version.
-
-    DAP is distributed in the hope that it will be useful,
-    but WITHOUT ANY WARRANTY; without even the implied warranty of
-    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-    GNU General Public License for more details.
-
-    You should have received a copy of the GNU General Public License
-    along with any DAP based project.  If not, see <http://www.gnu.org/licenses/>.
-*/
-#pragma once
-
-#include "dap_enc_key.h"
-#include "dap_chain_common.h"
-#include "dap_chain_datum.h"
-
-
-typedef enum dap_chain_tx_cond_type {
-    COND_SERVICE_PROVIDE = 0x20, //
-    COND_SERVICE_BILL = 0x30, //
-
-} dap_chain_tx_cond_type_t;
-
-/**
-  * @struct dap_chain_datum_tx
-  * @brief Transaction section, consists from lot of tx_items
-  */
-typedef struct dap_chain_datum_tx{
-    struct {
-        uint64_t ts_created;
-        uint32_t tx_items_size; // size of next sequencly lying tx_item sections would be decided to belong this transaction
-    } DAP_ALIGN_PACKED header;
-    uint8_t tx_items[];
-} DAP_ALIGN_PACKED dap_chain_datum_tx_t;
-
-
-/**
- * Create empty transaction
- *
- * return transaction, 0 Error
- */
-dap_chain_datum_tx_t* dap_chain_datum_tx_create(void);
-
-/**
- * Delete transaction
- */
-void dap_chain_datum_tx_delete(dap_chain_datum_tx_t *a_tx);
-
-/**
- * Get size of transaction
- *
- * return size, 0 Error
- */
-size_t dap_chain_datum_tx_get_size(dap_chain_datum_tx_t *a_tx);
-
-/**
- * Insert item to transaction
- *
- * return 1 Ok, -1 Error
- */
-int dap_chain_datum_tx_add_item(dap_chain_datum_tx_t **a_tx, const uint8_t *a_item);
-
-
-/**
- * Create 'in' item and insert to transaction
- *
- * return 1 Ok, -1 Error
- */
-int dap_chain_datum_tx_add_in_item(dap_chain_datum_tx_t **a_tx, dap_chain_hash_fast_t *a_tx_prev_hash,
-        uint32_t a_tx_out_prev_idx);
-
-
-/**
- * Create 'in_cond' item and insert to transaction
- *
- * return 0 Ok, -1 Error
- */
-int dap_chain_datum_tx_add_in_cond_item(dap_chain_datum_tx_t **a_tx, dap_chain_hash_fast_t *a_tx_prev_hash,
-                                        uint32_t a_tx_out_prev_idx,
-                                        uint32_t a_receipt_idx);
-
-/**
- * Create 'out' item and insert to transaction
- *
- * return 1 Ok, -1 Error
- */
-int dap_chain_datum_tx_add_out_item(dap_chain_datum_tx_t **a_tx, const dap_chain_addr_t *a_addr, uint64_t a_value);
-
-/**
- * Create 'out_cond' item and insert to transaction
- *
- * return 1 Ok, -1 Error
- */
-int dap_chain_datum_tx_add_out_cond_item(dap_chain_datum_tx_t **a_tx, dap_enc_key_t *a_key, dap_chain_net_srv_uid_t a_srv_uid,
-        uint64_t a_value, uint64_t a_value_max_per_unit, dap_chain_net_srv_price_unit_uid_t a_unit, const void *a_cond, size_t a_cond_size);
-
-/**
-* Sign a transaction (Create sign item and insert to transaction)
- *
- * return 1 Ok, -1 Error
- */
-int dap_chain_datum_tx_add_sign_item(dap_chain_datum_tx_t **a_tx, dap_enc_key_t *a_key);
-
-/**
- * Verify all sign item in transaction
- *
- * return 1 Ok, 0 Invalid sign, -1 Not found sing or other Error
- */
-int dap_chain_datum_tx_verify_sign(dap_chain_datum_tx_t *a_tx);
diff --git a/libdap-chain-common/include/dap_chain_datum_tx_in.h b/libdap-chain-common/include/dap_chain_datum_tx_in.h
deleted file mode 100755
index 7ce6fedac78789894eb416a53ef65b430f2fb69c..0000000000000000000000000000000000000000
--- a/libdap-chain-common/include/dap_chain_datum_tx_in.h
+++ /dev/null
@@ -1,45 +0,0 @@
-/*
- * Authors:
- * Dmitriy A. Gearasimov <kahovski@gmail.com>
- * DeM Labs Inc.   https://demlabs.net
- * DeM Labs Open source community https://github.com/demlabsinc
- * Copyright  (c) 2017-2018
- * All rights reserved.
-
- This file is part of DAP (Deus Applications Prototypes) the open source project
-
-    DAP (Deus Applicaions Prototypes) is free software: you can redistribute it and/or modify
-    it under the terms of the GNU General Public License as published by
-    the Free Software Foundation, either version 3 of the License, or
-    (at your option) any later version.
-
-    DAP is distributed in the hope that it will be useful,
-    but WITHOUT ANY WARRANTY; without even the implied warranty of
-    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-    GNU General Public License for more details.
-
-    You should have received a copy of the GNU General Public License
-    along with any DAP based project.  If not, see <http://www.gnu.org/licenses/>.
-*/
-#pragma once
-
-#include <stdint.h>
-#include "dap_common.h"
-#include "dap_chain_common.h"
-#include "dap_chain_datum_tx.h"
-/**
-  * @struct dap_chain_tx_item
-  * @brief Sections belongs to heading tx section, with inputs, outputs and others tx relatated items
-  */
-
-typedef struct dap_chain_tx_in{
-    struct {
-        dap_chain_tx_item_type_t type:8; /// @param    type            @brief Transaction item type
-        dap_chain_hash_fast_t tx_prev_hash; /// @param tx_prev_hash    @brief Hash of the previous transaction. 0 for generation TX
-        uint32_t tx_out_prev_idx; ///      @param   tx_prev_idx     @brief Previous tx_out index. 0 for generation TX
-//        dap_sign_type_t sig_type; /// Signature type
-//        uint32_t sig_size; /// Signature size
-    } header; /// Only header's hash is used for verification
-//    uint32_t seq_no; /// Sequence number, out of the header so could be changed during reorganization
-//    uint8_t sig[]; /// @param sig @brief raw signatura dat
-} DAP_ALIGN_PACKED dap_chain_tx_in_t;
diff --git a/libdap-chain-common/include/dap_chain_datum_tx_in_cond.h b/libdap-chain-common/include/dap_chain_datum_tx_in_cond.h
deleted file mode 100755
index eda89c996fde80af670ff82dfb6723343b6483e0..0000000000000000000000000000000000000000
--- a/libdap-chain-common/include/dap_chain_datum_tx_in_cond.h
+++ /dev/null
@@ -1,42 +0,0 @@
-/*
- * Authors:
- * Dmitriy A. Gearasimov <kahovski@gmail.com>
- * DeM Labs Inc.   https://demlabs.net
- * DeM Labs Open source community https://github.com/demlabsinc
- * Copyright  (c) 2017-2019
- * All rights reserved.
-
- This file is part of DAP (Deus Applications Prototypes) the open source project
-
- DAP (Deus Applicaions Prototypes) is free software: you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
-
- DAP is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with any DAP based project.  If not, see <http://www.gnu.org/licenses/>.
- */
-#pragma once
-
-#include <stdint.h>
-#include "dap_common.h"
-#include "dap_chain_common.h"
-#include "dap_chain_datum_tx.h"
-/**
- * @struct dap_chain_tx_item
- * @brief Sections belongs to heading tx section, with inputs, outputs and others tx relatated items
- */
-
-typedef struct dap_chain_tx_in_cond {
-    struct {
-        dap_chain_tx_item_type_t type :8; /// @param    type            @brief Transaction item type
-        dap_chain_hash_fast_t tx_prev_hash; /// @param tx_prev_hash    @brief Hash of the previous transaction. 0 for generation TX
-        uint32_t tx_out_prev_idx; ///      @param   tx_prev_idx     @brief Previous tx_out index. 0 for generation TX
-        uint32_t receipt_idx;
-    } header; /// Only header's hash is used for verification
-}DAP_ALIGN_PACKED dap_chain_tx_in_cond_t;
diff --git a/libdap-chain-common/include/dap_chain_datum_tx_items.h b/libdap-chain-common/include/dap_chain_datum_tx_items.h
deleted file mode 100755
index a01026be4c5faac7dc38e05308176015af5641a7..0000000000000000000000000000000000000000
--- a/libdap-chain-common/include/dap_chain_datum_tx_items.h
+++ /dev/null
@@ -1,118 +0,0 @@
-/*
- * Authors:
- * Dmitriy A. Gearasimov <kahovski@gmail.com>
- * DeM Labs Inc.   https://demlabs.net
- * DeM Labs Open source community https://github.com/demlabsinc
- * Copyright  (c) 2017-2018
- * All rights reserved.
-
- This file is part of DAP (Deus Applications Prototypes) the open source project
-
-    DAP (Deus Applicaions Prototypes) is free software: you can redistribute it and/or modify
-    it under the terms of the GNU General Public License as published by
-    the Free Software Foundation, either version 3 of the License, or
-    (at your option) any later version.
-
-    DAP is distributed in the hope that it will be useful,
-    but WITHOUT ANY WARRANTY; without even the implied warranty of
-    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-    GNU General Public License for more details.
-
-    You should have received a copy of the GNU General Public License
-    along with any DAP based project.  If not, see <http://www.gnu.org/licenses/>.
-*/
-#pragma once
-
-#include <stdint.h>
-#include <string.h>
-//#include <glib.h>
-
-#include "dap_common.h"
-#include "dap_list.h"
-#include "dap_chain_common.h"
-#include "dap_sign.h"
-#include "dap_chain_datum_tx.h"
-#include "dap_chain_datum_tx_in.h"
-#include "dap_chain_datum_tx_out.h"
-#include "dap_chain_datum_tx_in_cond.h"
-#include "dap_chain_datum_tx_out_cond.h"
-#include "dap_chain_datum_tx_sig.h"
-#include "dap_chain_datum_tx_pkey.h"
-#include "dap_chain_datum_tx_token.h"
-#include "dap_chain_datum_tx_receipt.h"
-
-/**
- * Get item type
- *
- * return type, or TX_ITEM_TYPE_ANY if error
- */
-dap_chain_tx_item_type_t dap_chain_datum_tx_item_get_type(const uint8_t *a_item);
-
-/**
- * Get item size
- *
- * return size, 0 Error
- */
-size_t dap_chain_datum_item_tx_get_size(const uint8_t *a_item);
-
-/**
- * Create item dap_chain_tx_token_t
- *
- * return item, NULL Error
- */
-dap_chain_tx_token_t* dap_chain_datum_tx_item_token_create(dap_chain_hash_fast_t * a_datum_token_hash,const char * a_ticker);
-
-/**
- * Create item dap_chain_tx_out_t
- *
- * return item, NULL Error
- */
-dap_chain_tx_in_t* dap_chain_datum_tx_item_in_create(dap_chain_hash_fast_t *a_tx_prev_hash, uint32_t a_tx_out_prev_idx);
-
-
-dap_chain_tx_in_cond_t* dap_chain_datum_tx_item_in_cond_create(dap_chain_hash_fast_t *a_tx_prev_hash, uint32_t a_tx_out_prev_idx,
-                                                               uint32_t a_receipt_idx);
-/**
- * Create item dap_chain_tx_out_t
- *
- * return item, NULL Error
- */
-dap_chain_tx_out_t* dap_chain_datum_tx_item_out_create(const dap_chain_addr_t *a_addr, uint64_t a_value);
-
-/**
- * Create item dap_chain_tx_out_cond_t
- *
- * return item, NULL Error
- */
-dap_chain_tx_out_cond_t* dap_chain_datum_tx_item_out_cond_create_srv_pay(dap_enc_key_t *a_key, dap_chain_net_srv_uid_t a_srv_uid,
-        uint64_t a_value, uint64_t a_value_max_per_unit, dap_chain_net_srv_price_unit_uid_t a_unit,
-                                                                 const void *a_cond, size_t a_cond_size);
-
-/**
- * Create item dap_chain_tx_sig_t
- *
- * return item, NULL Error
- */
-dap_chain_tx_sig_t* dap_chain_datum_tx_item_sign_create(dap_enc_key_t *a_key, const void *a_data, size_t a_data_size);
-
-/**
- * Get sign from sign item
- *
- * return sign, NULL Error
- */
-dap_sign_t* dap_chain_datum_tx_item_sign_get_sig(dap_chain_tx_sig_t *a_tx_sig);
-
-/**
- * Get item from transaction
- *
- * a_tx [in] transaction
- * a_item_idx_start[in/out] start index / found index of item in transaction, if 0 then from beginning
- * a_type[in] type of item being find, if TX_ITEM_TYPE_ANY - any item
- * a_item_out_size size[out] size of returned item
- * return item data, NULL Error index or bad format transaction
- */
-uint8_t* dap_chain_datum_tx_item_get( dap_chain_datum_tx_t *a_tx, int *a_item_idx_start,
-        dap_chain_tx_item_type_t a_type, int *a_item_out_size);
-
-// Get all item from transaction by type
-dap_list_t* dap_chain_datum_tx_items_get(dap_chain_datum_tx_t *a_tx, dap_chain_tx_item_type_t a_type, int *a_item_count);
diff --git a/libdap-chain-common/include/dap_chain_datum_tx_out.h b/libdap-chain-common/include/dap_chain_datum_tx_out.h
deleted file mode 100755
index 24f8240a6fc37aaf163783b7700dc7d71323e00f..0000000000000000000000000000000000000000
--- a/libdap-chain-common/include/dap_chain_datum_tx_out.h
+++ /dev/null
@@ -1,41 +0,0 @@
-/*
- * Authors:
- * Dmitriy A. Gearasimov <kahovski@gmail.com>
- * DeM Labs Inc.   https://demlabs.net
- * DeM Labs Open source community https://github.com/demlabsinc
- * Copyright  (c) 2017-2018
- * All rights reserved.
-
- This file is part of DAP (Deus Applications Prototypes) the open source project
-
-    DAP (Deus Applicaions Prototypes) is free software: you can redistribute it and/or modify
-    it under the terms of the GNU General Public License as published by
-    the Free Software Foundation, either version 3 of the License, or
-    (at your option) any later version.
-
-    DAP is distributed in the hope that it will be useful,
-    but WITHOUT ANY WARRANTY; without even the implied warranty of
-    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-    GNU General Public License for more details.
-
-    You should have received a copy of the GNU General Public License
-    along with any DAP based project.  If not, see <http://www.gnu.org/licenses/>.
-*/
-#pragma once
-
-#include <stdint.h>
-#include "dap_common.h"
-#include "dap_chain_common.h"
-#include "dap_chain_datum_tx.h"
-
-/**
-  * @struct dap_chain_tx_out
-  * @brief Transaction item outout
-  */
-typedef struct dap_chain_tx_out{
-    struct {
-        dap_chain_tx_item_type_t type:8; ///           @param    type            @brief  Transaction item type
-        uint64_t value; ///                       @param    value           @brief  Number of Datoshis ( DAP/10^9 ) to be transfered
-    } header; /// Only header's hash is used for verification
-    dap_chain_addr_t addr; ////
-} DAP_ALIGN_PACKED dap_chain_tx_out_t;
diff --git a/libdap-chain-common/include/dap_chain_datum_tx_out_cond.h b/libdap-chain-common/include/dap_chain_datum_tx_out_cond.h
deleted file mode 100755
index 188d5a124c7339b89eddc8490718f34c7a72684d..0000000000000000000000000000000000000000
--- a/libdap-chain-common/include/dap_chain_datum_tx_out_cond.h
+++ /dev/null
@@ -1,71 +0,0 @@
-/*
- * Authors:
- * Dmitriy A. Gearasimov <gerasimov.dmitriy@demlabs.net>
- * Alexander Lysikov <alexander.lysikov@demlabs.net>
- * DeM Labs Inc.   https://demlabs.net
- * DeM Labs Open source community https://github.com/demlabsinc
- * Copyright  (c) 2017-2019
- * All rights reserved.
-
- This file is part of DAP (Deus Applications Prototypes) the open source project
-
- DAP (Deus Applicaions Prototypes) is free software: you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
-
- DAP is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with any DAP based project.  If not, see <http://www.gnu.org/licenses/>.
- */
-#pragma once
-
-#include <stdint.h>
-#include "dap_common.h"
-#include "dap_chain_common.h"
-#include "dap_chain_datum_tx.h"
-
-
-#define DAP_CHAIN_TX_OUT_COND_SUBTYPE_SRV_PAY     0x01
-/**
- * @struct dap_chain_tx_out
- * @brief Transaction item out_cond
- */
-typedef struct dap_chain_tx_out_cond {
-    struct {
-        /// Transaction item type
-        dap_chain_tx_item_type_t item_type :8;
-        /// Condition subtype
-        uint8_t subtype;
-        /// Number of Datoshis ( DAP/10^9 ) to be reserver for service
-        uint64_t value;
-        /// When time expires this output could be used only by transaction owner
-        dap_chain_time_t ts_expires;
-    } header;
-    union {
-        struct {
-            /// Structure with specific for service pay condition subtype
-            struct {
-                /// Public key hash that could use this conditioned outout
-                dap_chain_hash_fast_t pkey_hash;
-                /// Service uid that only could be used for this outout
-                dap_chain_net_srv_uid_t srv_uid;
-                /// Price unit thats used to check price max
-                dap_chain_net_srv_price_unit_uid_t unit;
-                /// Maximum price per unit
-                uint64_t unit_price_max_datoshi;
-                 /// Condition parameters size
-                uint32_t params_size;
-            } DAP_ALIGN_PACKED header;
-            uint8_t params[]; // condition parameters, pkey, hash or smth like this
-        } DAP_ALIGN_PACKED srv_pay;
-    } subtype;
-}DAP_ALIGN_PACKED dap_chain_tx_out_cond_t;
-
-uint8_t* dap_chain_datum_tx_out_cond_item_get_params(dap_chain_tx_out_cond_t *a_tx_out_cond, size_t *a_params_size_out);
-
-
diff --git a/libdap-chain-common/include/dap_chain_datum_tx_pkey.h b/libdap-chain-common/include/dap_chain_datum_tx_pkey.h
deleted file mode 100755
index 58a92b631a850e40e1ff1127cf51bab2678bd53f..0000000000000000000000000000000000000000
--- a/libdap-chain-common/include/dap_chain_datum_tx_pkey.h
+++ /dev/null
@@ -1,42 +0,0 @@
-/*
- * Authors:
- * Dmitriy A. Gearasimov <kahovski@gmail.com>
- * DeM Labs Inc.   https://demlabs.net
- * DeM Labs Open source community https://github.com/demlabsinc
- * Copyright  (c) 2017-2018
- * All rights reserved.
-
- This file is part of DAP (Deus Applications Prototypes) the open source project
-
-    DAP (Deus Applicaions Prototypes) is free software: you can redistribute it and/or modify
-    it under the terms of the GNU General Public License as published by
-    the Free Software Foundation, either version 3 of the License, or
-    (at your option) any later version.
-
-    DAP is distributed in the hope that it will be useful,
-    but WITHOUT ANY WARRANTY; without even the implied warranty of
-    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-    GNU General Public License for more details.
-
-    You should have received a copy of the GNU General Public License
-    along with any DAP based project.  If not, see <http://www.gnu.org/licenses/>.
-*/
-#pragma once
-
-#include <stdint.h>
-#include "dap_common.h"
-#include "dap_chain_common.h"
-#include "dap_chain_datum_tx.h"
-/**
-  * @struct dap_chain_tx_pkey
-  * @brief TX item with one of the transaction's public keys
-  */
-typedef struct dap_chain_tx_pkey{
-    struct {
-        dap_chain_tx_item_type_t type:8; /// @param    type            @brief Transaction item type
-        dap_sign_type_t sig_type; /// Signature type
-        uint32_t sig_size; /// Signature size
-    } header; /// Only header's hash is used for verification
-    uint32_t seq_no; /// Sequence number, out of the header so could be changed during reorganization
-    uint8_t pkey[]; /// @param sig @brief raw pkey dat
-} DAP_ALIGN_PACKED dap_chain_tx_pkey_t;
diff --git a/libdap-chain-common/include/dap_chain_datum_tx_receipt.h b/libdap-chain-common/include/dap_chain_datum_tx_receipt.h
deleted file mode 100644
index 4390c7fcf215dc5cc5bc9b4425a3a69f0733f800..0000000000000000000000000000000000000000
--- a/libdap-chain-common/include/dap_chain_datum_tx_receipt.h
+++ /dev/null
@@ -1,63 +0,0 @@
-/*
- * Authors:
- * Dmitriy A. Gearasimov <gerasimov.dmitriy@demlabs.net>
- * DeM Labs Inc.   https://demlabs.net
- * CellFrame       https://cellframe.net
- * Sources         https://gitlab.demlabs.net/cellframe
- * Copyright  (c) 2017-2019
- * All rights reserved.
-
- This file is part of CellFrame SDK the open source project
-
-    CellFrame SDK is free software: you can redistribute it and/or modify
-    it under the terms of the GNU General Public License as published by
-    the Free Software Foundation, either version 3 of the License, or
-    (at your option) any later version.
-
-    CellFrame SDK is distributed in the hope that it will be useful,
-    but WITHOUT ANY WARRANTY; without even the implied warranty of
-    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-    GNU General Public License for more details.
-
-    You should have received a copy of the GNU General Public License
-    along with any CellFrame SDK based project.  If not, see <http://www.gnu.org/licenses/>.
-*/
-#pragma once
-
-#include <stdint.h>
-#include "dap_chain_common.h"
-
-/**
- * @struct dap_chain_tx_out
- * @brief Transaction item out_cond
- */
-typedef struct dap_chain_datum_tx_receipt {
-    dap_chain_tx_item_type_t type :8; // Transaction item type
-    dap_chain_receipt_info_t receipt_info; // Receipt itself
-    uint16_t size;
-    uint16_t exts_size;
-    byte_t exts_n_signs[]; // Signatures, first from provider, second from client
-}DAP_ALIGN_PACKED dap_chain_datum_tx_receipt_t;
-
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-static inline size_t dap_chain_datum_tx_receipt_get_size_hdr(){ return 1+sizeof (dap_chain_receipt_info_t)+sizeof (uint16_t) +sizeof (uint16_t); }
-
-dap_chain_datum_tx_receipt_t * dap_chain_datum_tx_receipt_create( dap_chain_net_srv_uid_t srv_uid,
-                                                                  dap_chain_net_srv_price_unit_uid_t units_type,
-                                                                    uint64_t units, uint64_t value_datoshi, const void * a_ext, size_t a_ext_size);
-size_t dap_chain_datum_tx_receipt_sign_add(dap_chain_datum_tx_receipt_t * a_receipt, size_t a_receipt_size, dap_enc_key_t *a_key );
-dap_sign_t* dap_chain_datum_tx_receipt_sign_get(dap_chain_datum_tx_receipt_t * l_receipt, size_t l_receipt_size , uint16_t sign_position);
-uint16_t dap_chain_datum_tx_receipt_signs_count(dap_chain_datum_tx_receipt_t * l_receipt, size_t l_receipt_size);
-static inline uint16_t dap_chain_datum_tx_receipt_get_size(const dap_chain_datum_tx_receipt_t * l_receipt)
-{
-    return l_receipt->size;
-}
-
-
-#ifdef __cplusplus
-}
-#endif
diff --git a/libdap-chain-common/include/dap_chain_datum_tx_sig.h b/libdap-chain-common/include/dap_chain_datum_tx_sig.h
deleted file mode 100755
index 8265348babd74220775f53d5f38317ec6ca24b4a..0000000000000000000000000000000000000000
--- a/libdap-chain-common/include/dap_chain_datum_tx_sig.h
+++ /dev/null
@@ -1,43 +0,0 @@
-/*
- * Authors:
- * Dmitriy A. Gearasimov <kahovski@gmail.com>
- * DeM Labs Inc.   https://demlabs.net
- * DeM Labs Open source community https://github.com/demlabsinc
- * Copyright  (c) 2017-2018
- * All rights reserved.
-
- This file is part of DAP (Deus Applications Prototypes) the open source project
-
-    DAP (Deus Applicaions Prototypes) is free software: you can redistribute it and/or modify
-    it under the terms of the GNU General Public License as published by
-    the Free Software Foundation, either version 3 of the License, or
-    (at your option) any later version.
-
-    DAP is distributed in the hope that it will be useful,
-    but WITHOUT ANY WARRANTY; without even the implied warranty of
-    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-    GNU General Public License for more details.
-
-    You should have received a copy of the GNU General Public License
-    along with any DAP based project.  If not, see <http://www.gnu.org/licenses/>.
-*/
-#pragma once
-
-#include <stdint.h>
-#include "dap_common.h"
-#include "dap_chain_common.h"
-#include "dap_chain_datum_tx.h"
-
-
-/**
-  * @struct dap_chain_tx_sig
-  * @brief Section with set of transaction signatures
-  */
-typedef struct dap_chain_tx_sig{
-    struct {
-        dap_chain_tx_item_type_t type:8; /// @param    type            @brief Transaction item type
-//        dap_sign_type_t sig_type; /// Signature type
-        uint32_t sig_size; /// Signature size
-    } header; /// Only header's hash is used for verification
-    uint8_t sig[]; /// @param sig @brief raw signature data
-} DAP_ALIGN_PACKED dap_chain_tx_sig_t;
diff --git a/libdap-chain-common/include/dap_chain_datum_tx_token.h b/libdap-chain-common/include/dap_chain_datum_tx_token.h
deleted file mode 100755
index ffb3c19437a2624f6da63f9b8cbd654bcde80eb0..0000000000000000000000000000000000000000
--- a/libdap-chain-common/include/dap_chain_datum_tx_token.h
+++ /dev/null
@@ -1,43 +0,0 @@
-/*
- * Authors:
- * Dmitriy A. Gearasimov <kahovski@gmail.com>
- * DeM Labs Inc.   https://demlabs.net
- * DeM Labs Open source community https://github.com/demlabsinc
- * Copyright  (c) 2017-2019
- * All rights reserved.
-
- This file is part of DAP (Deus Applications Prototypes) the open source project
-
-    DAP (Deus Applicaions Prototypes) is free software: you can redistribute it and/or modify
-    it under the terms of the GNU General Public License as published by
-    the Free Software Foundation, either version 3 of the License, or
-    (at your option) any later version.
-
-    DAP is distributed in the hope that it will be useful,
-    but WITHOUT ANY WARRANTY; without even the implied warranty of
-    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-    GNU General Public License for more details.
-
-    You should have received a copy of the GNU General Public License
-    along with any DAP based project.  If not, see <http://www.gnu.org/licenses/>.
-*/
-#pragma once
-
-#include <stdint.h>
-#include "dap_common.h"
-#include "dap_chain_common.h"
-#include "dap_chain_datum_tx.h"
-
-/**
-  * @struct dap_chain_tx_token
-  * @brief Token item
-  */
-typedef struct dap_chain_tx_token{
-    struct {
-        dap_chain_tx_item_type_t type:8;
-        char ticker[DAP_CHAIN_TICKER_SIZE_MAX];
-        uint8_t padding; // Padding
-        dap_chain_id_t token_emission_chain_id;
-        dap_chain_hash_fast_t token_emission_hash;
-    } header; /// Only header's hash is used for verification
-} DAP_ALIGN_PACKED dap_chain_tx_token_t;
diff --git a/libdap-chain-common/libdap-chain-common.pri b/libdap-chain-common/libdap-chain-common.pri
deleted file mode 100755
index 3e3a55553f1d7000b08e2acac7920a83838d1572..0000000000000000000000000000000000000000
--- a/libdap-chain-common/libdap-chain-common.pri
+++ /dev/null
@@ -1,26 +0,0 @@
-HEADERS +=  $$PWD/include/dap_chain_common.h                 \
-	    $$PWD/include/dap_chain_datum.h                  \
-	    $$PWD/include/dap_chain_datum_hashtree_roots.h   \ 
-	    $$PWD/include/dap_chain_datum_token.h            \
-	    $$PWD/include/dap_chain_datum_tx.h               \ 
-	    $$PWD/include/dap_chain_datum_tx_in_cond.h       \
-	    $$PWD/include/dap_chain_datum_tx_in.h            \
-	    $$PWD/include/dap_chain_datum_tx_items.h         \
-	    $$PWD/include/dap_chain_datum_tx_out_cond.h      \
-	    $$PWD/include/dap_chain_datum_tx_out.h           \
-	    $$PWD/include/dap_chain_datum_tx_pkey.h          \
-	    $$PWD/include/dap_chain_datum_tx_receipt.h       \
-	    $$PWD/include/dap_chain_datum_tx_sig.h           \
-	    $$PWD/include/dap_chain_datum_tx_token.h 
-
-SOURCES +=  $$PWD/src/dap_chain_common.c                     \
-	    $$PWD/src/dap_chain_datum.c                      \
-	    $$PWD/src/dap_chain_datum_hashtree_roots.c       \
-	    $$PWD/src/dap_chain_datum_token.c                \
-	    $$PWD/src/dap_chain_datum_tx.c                   \
-	    $$PWD/src/dap_chain_datum_tx_items.c             \
-	    $$PWD/src/dap_chain_datum_tx_out_cond.c          \
-	    $$PWD/src/dap_chain_datum_tx_receipt.c           \
-	    $$PWD/src/dap_chain_datum_tx_token.c 
-
-INCLUDEPATH += $$PWD/include 
diff --git a/libdap-chain-common/src/dap_chain_common.c b/libdap-chain-common/src/dap_chain_common.c
deleted file mode 100755
index b33a03e0bd40db3cec8ad07a42186dbf2fd6fb8d..0000000000000000000000000000000000000000
--- a/libdap-chain-common/src/dap_chain_common.c
+++ /dev/null
@@ -1,259 +0,0 @@
-/*
- * Authors:
- * Dmitriy A. Gearasimov <gerasimov.dmitriy@demlabs.net>
- * DeM Labs Inc.   https://demlabs.net
- * Kelvin Project https://github.com/kelvinblockchain
- * Copyright  (c) 2017-2018
- * All rights reserved.
-
- This file is part of DAP (Deus Applications Prototypes) the open source project
-
-    DAP (Deus Applicaions Prototypes) is free software: you can redistribute it and/or modify
-    it under the terms of the GNU General Public License as published by
-    the Free Software Foundation, either version 3 of the License, or
-    (at your option) any later version.
-
-    DAP is distributed in the hope that it will be useful,
-    but WITHOUT ANY WARRANTY; without even the implied warranty of
-    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-    GNU General Public License for more details.
-
-    You should have received a copy of the GNU General Public License
-    along with any DAP based project.  If not, see <http://www.gnu.org/licenses/>.
-*/
-
-#include <string.h>
-#include "dap_common.h"
-#include "dap_sign.h"
-#include "dap_chain_common.h"
-#include "dap_enc_base58.h"
-#include "dap_hash.h"
-
-#define LOG_TAG "dap_chain_common"
-
-/**
- * @brief dap_chain_hash_to_str
- * @param a_hash
- * @param a_str
- * @param a_str_max
- * @return
- */
-size_t dap_chain_hash_slow_to_str( dap_chain_hash_slow_t *a_hash, char *a_str, size_t a_str_max )
-{
-    const size_t c_hash_str_size = sizeof(*a_hash) * 2 + 1 /*trailing zero*/+ 2 /* heading 0x */;
-
-    if(a_str_max < c_hash_str_size) {
-        log_it(L_ERROR, "String for hash too small, need %u but have only %u", c_hash_str_size, a_str_max);
-    }
-    size_t i;
-    dap_snprintf(a_str, 3, "0x");
-
-    for(i = 0; i < sizeof(a_hash->raw); ++i)
-        dap_snprintf( a_str + i * 2 + 2, 3, "%02x", a_hash->raw[i] );
-
-    a_str[c_hash_str_size] = '\0';
-
-//#define dap_htoa64( out, in, len ) \
-
-
-    return strlen(a_str);
-}
-
-/**
- * @brief dap_chain_hash_fast_to_str
- * @param a_hash
- * @param a_str
- * @param a_str_max
- * @return
- */
-#if 0
-size_t dap_chain_hash_fast_to_str( dap_chain_hash_fast_t *a_hash, char *a_str, size_t a_str_max )
-{
-    const size_t c_hash_str_size = sizeof(*a_hash) * 2 + 1 /*trailing zero*/+ 2 /* heading 0x */;
-
-    if ( a_str_max < c_hash_str_size ) {
-      log_it( L_ERROR, "String for hash too small, need %u but have only %u", c_hash_str_size, a_str_max );
-    }
-
-//    size_t i;
-    // faster conversion to string
-
-    dap_snprintf( a_str, 3, "0x" );
-
-    size_t l_ret = dap_bin2hex(a_str + 2, a_hash->raw, sizeof(a_hash->raw));
-
-    //for(i = 0; i < sizeof(a_hash->raw); ++i)
-    //    dap_snprintf(a_str + i * 2 + 2, 3, "%02x", (a_hash->raw[i]));
-
-    a_str[c_hash_str_size - 1] = '\0';
-
-    if(!l_ret)
-        return 0;
-
-    return c_hash_str_size - 1; //strlen(a_str);
-}
-#endif
-
-
-
-/**
- * @brief dap_chain_addr_to_str
- * @param a_addr
- * @return
- */
-char* dap_chain_addr_to_str(const dap_chain_addr_t *a_addr)
-{
-    if ( a_addr ==NULL)
-        return  NULL;
-
-    size_t l_ret_size = DAP_ENC_BASE58_ENCODE_SIZE(sizeof(dap_chain_addr_t));
-    char * l_ret = DAP_NEW_SIZE(char, l_ret_size);
-    if(dap_enc_base58_encode(a_addr, sizeof(dap_chain_addr_t), l_ret) > 0)
-        return l_ret;
-    else {
-        DAP_DELETE(l_ret);
-        return NULL;
-    }
-}
-
-/**
- * @brief dap_chain_str_to_addr
- * @param a_addr
- * @return
- */
-dap_chain_addr_t* dap_chain_addr_from_str(const char *a_str)
-{
-    size_t l_str_len = (a_str) ? strlen(a_str) : 0;
-    if(l_str_len <= 0)
-        return NULL;
-    size_t l_ret_size = DAP_ENC_BASE58_DECODE_SIZE(l_str_len);
-    dap_chain_addr_t * l_addr = DAP_NEW_Z_SIZE(dap_chain_addr_t, l_ret_size);
-    if(dap_enc_base58_decode(a_str, l_addr) == sizeof(dap_chain_addr_t) &&
-            dap_chain_addr_check_sum(l_addr)==1)
-        return l_addr;
-    else
-        DAP_DELETE(l_addr);
-    return NULL;
-}
-
-/**
- * @brief dap_chain_net_id_from_str
- * @param a_net_str
- * @return
- */
-dap_chain_net_id_t dap_chain_net_id_from_str( const char * a_net_str)
-{
-    dap_chain_net_id_t l_ret={0};
-    size_t l_net_str_len = strlen( a_net_str);
-    if (l_net_str_len >2){
-        a_net_str+=2;
-        l_net_str_len-=2;
-        if (l_net_str_len == sizeof (l_ret)/2 ){
-            size_t l_pos =0;
-            char l_byte[3];
-            while(l_net_str_len){
-                // Copy two characters for bytes
-                memcpy(l_byte,a_net_str,2);
-                l_byte[2]='\0';
-                // Read byte chars
-                if ( sscanf(l_byte,"%02hhx",&l_ret.raw[l_pos] ) != 1)
-                    if( sscanf(l_byte,"%02hhX",&l_ret.raw[l_pos] ) ==1 )
-                        break;
-
-                // Update pos
-                l_pos++;
-                // Reduce in two steps to not to break if input will have bad input
-                l_net_str_len-=1;
-                if(l_net_str_len)
-                    l_net_str_len-=1;
-            }
-        }else
-            log_it(L_WARNING,"Wrong input string \"%s\" not recognized as network id", a_net_str);
-    }
-    return  l_ret;
-}
-
-/**
- * @brief dap_chain_net_srv_uid_from_str
- * @param a_net_str
- * @return
- */
-dap_chain_net_srv_uid_t dap_chain_net_srv_uid_from_str( const char * a_net_srv_uid_str)
-{
-    dap_chain_net_srv_uid_t l_ret={{0}};
-    size_t l_net_srv_uid_str_len = strlen( a_net_srv_uid_str);
-    if (l_net_srv_uid_str_len >2){
-        a_net_srv_uid_str+=2;
-        l_net_srv_uid_str_len-=2;
-        if (l_net_srv_uid_str_len == sizeof (l_ret)/2 ){
-            size_t l_pos =0;
-            char l_byte[3];
-            while(l_net_srv_uid_str_len){
-
-                // Copy two characters for bytes
-                memcpy(l_byte,a_net_srv_uid_str,2);
-                l_byte[2]='\0';
-
-                // Read byte chars
-                if ( sscanf(l_byte,"%02hhx",&l_ret.raw[l_pos] ) != 1)
-                    if( sscanf(l_byte,"%02hhX",&l_ret.raw[l_pos] ) ==1 )
-                        break;
-
-                // Update pos
-                l_pos++;
-                // Reduce in two steps to not to break if input will have bad input
-                l_net_srv_uid_str_len-=1;
-                if(l_net_srv_uid_str_len)
-                    l_net_srv_uid_str_len-=1;
-            }
-        }else
-            log_it(L_WARNING,"Wrong input string \"%s\" not recognized as network id", a_net_srv_uid_str);
-    }
-    return  l_ret;
-}
-
-
-
-/**
- * @brief dap_chain_addr_fill
- * @param a_addr
- * @param a_key
- * @param a_net_id
- * @return
- */
-void dap_chain_addr_fill(dap_chain_addr_t *a_addr, dap_enc_key_t *a_key, dap_chain_net_id_t *a_net_id)
-{
-    if(!a_addr || !a_key || !a_net_id)
-        return;
-    a_addr->addr_ver = DAP_CHAIN_ADDR_VERSION_CURRENT;
-    a_addr->net_id.uint64 = a_net_id->uint64;
-    a_addr->sig_type.raw = dap_sign_type_from_key_type(a_key->type).raw;
-    // key -> serialized key
-    dap_chain_hash_fast_t l_hash_public_key;
-    size_t l_pub_key_data_size;
-    uint8_t *l_pub_key_data = dap_enc_key_serealize_pub_key(a_key, &l_pub_key_data_size);
-    // serialized key -> key hash
-
-    if(dap_hash_fast(l_pub_key_data, l_pub_key_data_size, &l_hash_public_key))
-        memcpy(a_addr->data.hash, l_hash_public_key.raw, sizeof(l_hash_public_key.raw));
-    DAP_DELETE(l_pub_key_data);
-    // calc checksum
-    dap_hash_fast(a_addr, sizeof(dap_chain_addr_t) - sizeof(dap_chain_hash_fast_t), &a_addr->checksum);
-}
-
-/**
- * @brief dap_chain_addr_check_sum
- * @param a_addr
- * @return 1 Ok, -1 Invalid a_addr or checksum
- */
-int dap_chain_addr_check_sum(const dap_chain_addr_t *a_addr)
-{
-    if(!a_addr)
-        return -1;
-    dap_chain_hash_fast_t l_checksum;
-    // calc checksum
-    dap_hash_fast(a_addr, sizeof(dap_chain_addr_t) - sizeof(dap_chain_hash_fast_t), &l_checksum);
-    if(!memcmp(a_addr->checksum.raw, l_checksum.raw, sizeof(l_checksum.raw)))
-        return 1;
-    return -1;
-}
diff --git a/libdap-chain-common/src/dap_chain_datum.c b/libdap-chain-common/src/dap_chain_datum.c
deleted file mode 100755
index 6298637ed9231fba48e293aad737dec9417635de..0000000000000000000000000000000000000000
--- a/libdap-chain-common/src/dap_chain_datum.c
+++ /dev/null
@@ -1,51 +0,0 @@
-/*
- * Authors:
- * Dmitriy A. Gearasimov <gerasimov.dmitriy@demlabs.net>
- * DeM Labs Inc.   https://demlabs.net
- * Kelvin Project https://github.com/kelvinblockchain
- * Copyright  (c) 2017-2018
- * All rights reserved.
-
- This file is part of DAP (Deus Applications Prototypes) the open source project
-
-    DAP (Deus Applicaions Prototypes) is free software: you can redistribute it and/or modify
-    it under the terms of the GNU General Public License as published by
-    the Free Software Foundation, either version 3 of the License, or
-    (at your option) any later version.
-
-    DAP is distributed in the hope that it will be useful,
-    but WITHOUT ANY WARRANTY; without even the implied warranty of
-    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-    GNU General Public License for more details.
-
-    You should have received a copy of the GNU General Public License
-    along with any DAP based project.  If not, see <http://www.gnu.org/licenses/>.
-*/
-#include <string.h>
-
-#include "dap_common.h"
-#include "dap_chain_datum.h"
-#include "dap_chain_datum_tx.h"
-#include "dap_chain_datum_hashtree_roots.h"
-#include "dap_chain_datum_token.h"
-
-#define LOG_TAG "dap_chain_datum"
-
-/**
- * @brief dap_chain_datum_create
- * @param a_type_id
- * @param a_data
- * @param a_data_size
- * @return
- */
-dap_chain_datum_t * dap_chain_datum_create(uint16_t a_type_id, const void * a_data, size_t a_data_size)
-{
-   dap_chain_datum_t * l_datum = DAP_NEW_Z_SIZE(dap_chain_datum_t, sizeof(l_datum->header)+ a_data_size);
-   memcpy (l_datum->data,a_data,a_data_size);
-   l_datum->header.type_id = a_type_id;
-   l_datum->header.data_size = (uint32_t) a_data_size;
-   l_datum->header.version_id = DAP_CHAIN_DATUM_VERSION;
-   l_datum->header.ts_create =(uint64_t) time(NULL);
-   return  l_datum;
-}
-
diff --git a/libdap-chain-common/src/dap_chain_datum_hashtree_roots.c b/libdap-chain-common/src/dap_chain_datum_hashtree_roots.c
deleted file mode 100755
index e31522d20815833d803763aaf9f1db9a2bfa56c5..0000000000000000000000000000000000000000
--- a/libdap-chain-common/src/dap_chain_datum_hashtree_roots.c
+++ /dev/null
@@ -1,29 +0,0 @@
-/*
- * Authors:
- * Dmitriy A. Gearasimov <kahovski@gmail.com>
- * DeM Labs Inc.   https://demlabs.net
- * DeM Labs Open source community https://github.com/demlabsinc
- * Copyright  (c) 2017-2018
- * All rights reserved.
-
- This file is part of DAP (Deus Applications Prototypes) the open source project
-
-    DAP (Deus Applicaions Prototypes) is free software: you can redistribute it and/or modify
-    it under the terms of the GNU General Public License as published by
-    the Free Software Foundation, either version 3 of the License, or
-    (at your option) any later version.
-
-    DAP is distributed in the hope that it will be useful,
-    but WITHOUT ANY WARRANTY; without even the implied warranty of
-    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-    GNU General Public License for more details.
-
-    You should have received a copy of the GNU General Public License
-    along with any DAP based project.  If not, see <http://www.gnu.org/licenses/>.
-*/
-
-
-#include "dap_common.h"
-#include "dap_chain_datum_hashtree_roots.h"
-
-#define LOG_TAG "dap_chain_datum_hashtree_roots"
diff --git a/libdap-chain-common/src/dap_chain_datum_token.c b/libdap-chain-common/src/dap_chain_datum_token.c
deleted file mode 100755
index 58edc370c30c75ccfbd8ee3d6cb0adbb17f44872..0000000000000000000000000000000000000000
--- a/libdap-chain-common/src/dap_chain_datum_token.c
+++ /dev/null
@@ -1,34 +0,0 @@
-/*
- * Authors:
- * Dmitriy A. Gearasimov <kahovski@gmail.com>
- * DeM Labs Inc.   https://demlabs.net
- * DeM Labs Open source community https://github.com/demlabsinc
- * Copyright  (c) 2017-2018
- * All rights reserved.
-
- This file is part of DAP (Deus Applications Prototypes) the open source project
-
-    DAP (Deus Applicaions Prototypes) is free software: you can redistribute it and/or modify
-    it under the terms of the GNU General Public License as published by
-    the Free Software Foundation, either version 3 of the License, or
-    (at your option) any later version.
-
-    DAP is distributed in the hope that it will be useful,
-    but WITHOUT ANY WARRANTY; without even the implied warranty of
-    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-    GNU General Public License for more details.
-
-    You should have received a copy of the GNU General Public License
-    along with any DAP based project.  If not, see <http://www.gnu.org/licenses/>.
-*/
-#include <stdio.h>
-#include <string.h>
-#include "dap_chain_datum_token.h"
-
-const char *c_dap_chain_datum_token_emission_type_str[]={
-    [DAP_CHAIN_DATUM_TOKEN_EMISSION_TYPE_UNDEFINED] = "DAP_CHAIN_DATUM_TOKEN_EMISSION_TYPE_UNDEFINED",
-    [DAP_CHAIN_DATUM_TOKEN_EMISSION_TYPE_AUTH] = "DAP_CHAIN_DATUM_TOKEN_EMISSION_TYPE_AUTH",
-    [DAP_CHAIN_DATUM_TOKEN_EMISSION_TYPE_ALGO] = "DAP_CHAIN_DATUM_TOKEN_EMISSION_TYPE_ALGO",
-    [DAP_CHAIN_DATUM_TOKEN_EMISSION_TYPE_ATOM_OWNER] = "DAP_CHAIN_DATUM_TOKEN_EMISSION_TYPE_ATOM_OWNER",
-    [DAP_CHAIN_DATUM_TOKEN_EMISSION_TYPE_SMART_CONTRACT] = "DAP_CHAIN_DATUM_TOKEN_EMISSION_TYPE_SMART_CONTRACT",
-};
diff --git a/libdap-chain-common/src/dap_chain_datum_tx.c b/libdap-chain-common/src/dap_chain_datum_tx.c
deleted file mode 100755
index adfe3a695fdadeea6ca9403754879f0d95221f85..0000000000000000000000000000000000000000
--- a/libdap-chain-common/src/dap_chain_datum_tx.c
+++ /dev/null
@@ -1,217 +0,0 @@
-/*
- * Authors:
- * Dmitriy A. Gearasimov <kahovski@gmail.com>
- * DeM Labs Inc.   https://demlabs.net
- * DeM Labs Open source community https://github.com/demlabsinc
- * Copyright  (c) 2017-2018
- * All rights reserved.
-
- This file is part of DAP (Deus Applications Prototypes) the open source project
-
- DAP (Deus Applicaions Prototypes) is free software: you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
-
- DAP is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with any DAP based project.  If not, see <http://www.gnu.org/licenses/>.
- */
-
-#include <memory.h>
-#include <assert.h>
-#include "dap_common.h"
-#include "dap_sign.h"
-#include "dap_chain_datum_tx_items.h"
-#include "dap_chain_datum_tx.h"
-
-#define LOG_TAG "dap_chain_datum_tx"
-
-/**
- * Create empty transaction
- *
- * return transaction, 0 Error
- */
-dap_chain_datum_tx_t* dap_chain_datum_tx_create(void)
-{
-    dap_chain_datum_tx_t *tx = DAP_NEW_Z(dap_chain_datum_tx_t);
-    tx->header.ts_created = time(NULL);
-    return tx;
-}
-
-/**
- * Delete transaction
- */
-void dap_chain_datum_tx_delete(dap_chain_datum_tx_t *a_tx)
-{
-    if(a_tx)
-        DAP_DELETE(a_tx);
-}
-
-/**
- * Get size of transaction
- *
- * return size, 0 Error
- */
-size_t dap_chain_datum_tx_get_size(dap_chain_datum_tx_t *a_tx)
-{
-    if(!a_tx)
-        return 0;
-    return (sizeof(dap_chain_datum_tx_t) + a_tx->header.tx_items_size);
-}
-
-/**
- * Insert item to transaction
- *
- * return 1 Ok, -1 Error
- */
-int dap_chain_datum_tx_add_item(dap_chain_datum_tx_t **a_tx, const uint8_t *a_item)
-{
-    size_t size = dap_chain_datum_item_tx_get_size(a_item);
-    if(!size)
-        return -1;
-    dap_chain_datum_tx_t *tx_cur = *a_tx;
-    tx_cur = (dap_chain_datum_tx_t*) realloc(tx_cur, dap_chain_datum_tx_get_size(tx_cur) + size);
-    memcpy((uint8_t*) tx_cur->tx_items + tx_cur->header.tx_items_size, a_item, size);
-    tx_cur->header.tx_items_size += size;
-    *a_tx = tx_cur;
-    return 1;
-}
-
-/**
- * Create 'in' item and insert to transaction
- *
- * return 1 Ok, -1 Error
- */
-int dap_chain_datum_tx_add_in_item(dap_chain_datum_tx_t **a_tx, dap_chain_hash_fast_t *a_tx_prev_hash,
-        uint32_t a_tx_out_prev_idx)
-{
-    dap_chain_tx_in_t *l_tx_in = dap_chain_datum_tx_item_in_create(a_tx_prev_hash, a_tx_out_prev_idx);
-    if(l_tx_in) {
-        dap_chain_datum_tx_add_item(a_tx, (const uint8_t *)l_tx_in);
-        DAP_DELETE(l_tx_in);
-        return 1;
-    }
-    return -1;
-}
-
-
-/**
- * @brief dap_chain_datum_tx_add_in_cond_item
- * @param a_tx
- * @param a_pkey_serialized
- * @param a_pkey_serialized_size
- * @param a_receipt_idx
- * @return
- */
-int dap_chain_datum_tx_add_in_cond_item(dap_chain_datum_tx_t **a_tx, dap_chain_hash_fast_t *a_tx_prev_hash,
-                                        uint32_t a_tx_out_prev_idx,
-                                        uint32_t a_receipt_idx)
-{
-    dap_chain_tx_in_cond_t *l_tx_in_cond = dap_chain_datum_tx_item_in_cond_create( a_tx_prev_hash, a_tx_out_prev_idx,
-                a_receipt_idx);
-    if(l_tx_in_cond) {
-        dap_chain_datum_tx_add_item(a_tx, (uint8_t *)l_tx_in_cond);
-        DAP_DELETE(l_tx_in_cond);
-        return 0;
-    }
-    return -1;
-
-}
-/**
- * Create 'out' item and insert to transaction
- *
- * return 1 Ok, -1 Error
- */
-int dap_chain_datum_tx_add_out_item(dap_chain_datum_tx_t **a_tx, const dap_chain_addr_t *a_addr, uint64_t a_value)
-{
-    dap_chain_tx_out_t *l_tx_out = dap_chain_datum_tx_item_out_create(a_addr, a_value);
-    if(l_tx_out) {
-        dap_chain_datum_tx_add_item(a_tx, (const uint8_t *)l_tx_out);
-        DAP_DELETE(l_tx_out);
-        return 1;
-    }
-    return -1;
-}
-
-/**
- * Create 'out_cond' item and insert to transaction
- *
- * return 1 Ok, -1 Error
- */
-int dap_chain_datum_tx_add_out_cond_item(dap_chain_datum_tx_t **a_tx, dap_enc_key_t *a_key, dap_chain_net_srv_uid_t a_srv_uid,
-        uint64_t a_value, uint64_t a_value_max_per_unit, dap_chain_net_srv_price_unit_uid_t a_unit, const void *a_cond, size_t a_cond_size)
-{
-    dap_chain_tx_out_cond_t *l_tx_out = dap_chain_datum_tx_item_out_cond_create_srv_pay(
-                a_key, a_srv_uid,a_value, a_value_max_per_unit, a_unit, a_cond, a_cond_size );
-    if(l_tx_out) {
-        dap_chain_datum_tx_add_item(a_tx, (const uint8_t *) l_tx_out);
-        DAP_DELETE(l_tx_out);
-        return 1;
-    }
-    return -1;
-}
-
-/**
- * Sign a transaction (Add sign item to transaction)
- *
- * return 1 Ok, -1 Error
- */
-int dap_chain_datum_tx_add_sign_item(dap_chain_datum_tx_t **a_tx, dap_enc_key_t *a_key)
-{
-    if(!a_tx || !a_key)
-        return -1;
-    // sign all previous items in transaction
-    const void *l_data = (*a_tx)->tx_items;
-    const size_t l_data_size = (*a_tx)->header.tx_items_size;
-    dap_chain_tx_sig_t *l_tx_sig = dap_chain_datum_tx_item_sign_create(a_key, l_data, l_data_size);
-    if(l_tx_sig) {
-        int l_ret = dap_chain_datum_tx_add_item(a_tx, (const uint8_t*) l_tx_sig);
-        DAP_DELETE(l_tx_sig);
-        return l_ret;
-    }
-    return -1;
-}
-
-/**
- * Verify all sign item in transaction
- *
- * return 1 Ok, 0 Invalid signature, -1 Not found signature or other Error
- */
-int dap_chain_datum_tx_verify_sign(dap_chain_datum_tx_t *tx)
-{
-    int ret = -1;
-    if(!tx)
-        return -1;
-    uint32_t tx_items_pos = 0, tx_items_size = tx->header.tx_items_size;
-    while(tx_items_pos < tx_items_size) {
-        uint8_t *item = tx->tx_items + tx_items_pos;
-        int item_size = dap_chain_datum_item_tx_get_size(item);
-        if(!item_size)
-            return -1;
-        if(dap_chain_datum_tx_item_get_type(item) == TX_ITEM_TYPE_SIG) {
-            dap_chain_tx_sig_t *item_tx_sig = (dap_chain_tx_sig_t*) item;
-            dap_sign_t *a_chain_sign = (dap_sign_t*) item_tx_sig->sig;
-            if(dap_sign_verify(a_chain_sign, tx->tx_items, tx_items_pos) != 1) {
-                // invalid signature
-                ret = 0;
-                tx_items_pos += item_size;
-                break;
-            }
-            // signature verify successfully
-            ret = 1;
-        }
-        // sign item or items must be at the end, therefore ret will be changed later anyway
-        else
-            ret = -1;
-        // go to text item
-        tx_items_pos += item_size;
-    }
-    assert(tx_items_pos == tx_items_size);
-    return ret;
-}
-
diff --git a/libdap-chain-common/src/dap_chain_datum_tx_items.c b/libdap-chain-common/src/dap_chain_datum_tx_items.c
deleted file mode 100755
index d5a627ba84096b0665babc2cc05f70601d055283..0000000000000000000000000000000000000000
--- a/libdap-chain-common/src/dap_chain_datum_tx_items.c
+++ /dev/null
@@ -1,340 +0,0 @@
-/*
- * Authors:
- * Dmitriy A. Gearasimov <kahovski@gmail.com>
- * DeM Labs Inc.   https://demlabs.net
- * DeM Labs Open source community https://github.com/demlabsinc
- * Copyright  (c) 2017-2018
- * All rights reserved.
-
- This file is part of DAP (Deus Applications Prototypes) the open source project
-
- DAP (Deus Applicaions Prototypes) is free software: you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
-
- DAP is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with any DAP based project.  If not, see <http://www.gnu.org/licenses/>.
- */
-
-#include <stdint.h>
-#include <string.h>
-
-#include "dap_common.h"
-#include "dap_enc_key.h"
-#include "dap_chain_common.h"
-#include "dap_sign.h"
-#include "dap_hash.h"
-#include "dap_chain_datum_tx.h"
-#include "dap_chain_datum_tx_in.h"
-#include "dap_chain_datum_tx_out.h"
-#include "dap_chain_datum_tx_in_cond.h"
-#include "dap_chain_datum_tx_out_cond.h"
-#include "dap_chain_datum_tx_items.h"
-
-static size_t dap_chain_tx_in_get_size(const dap_chain_tx_in_t *a_item)
-{
-    (void) a_item;
-    size_t size = sizeof(dap_chain_tx_in_t); // + item->header.sig_size;
-    return size;
-}
-
-static size_t dap_chain_tx_in_cond_get_size(const dap_chain_tx_in_cond_t *a_item)
-{
-    size_t size = sizeof(dap_chain_tx_in_cond_t);
-    return size;
-}
-
-static size_t dap_chain_tx_out_get_size(const dap_chain_tx_out_t *a_item)
-{
-    (void) a_item;
-    size_t size = sizeof(dap_chain_tx_out_t);
-    return size;
-}
-
-static size_t dap_chain_tx_out_cond_get_size(const dap_chain_tx_out_cond_t *a_item)
-{
-    switch (a_item->header.subtype) {
-        case DAP_CHAIN_TX_OUT_COND_SUBTYPE_SRV_PAY:
-            return sizeof (a_item->header) + sizeof (a_item->subtype.srv_pay.header) + a_item->subtype.srv_pay.header.params_size;
-        default:
-                return 0;
-    }
-}
-
-static size_t dap_chain_tx_pkey_get_size(const dap_chain_tx_pkey_t *a_item)
-{
-    size_t size = sizeof(dap_chain_tx_pkey_t) + a_item->header.sig_size;
-    return size;
-}
-
-static size_t dap_chain_tx_sig_get_size(const dap_chain_tx_sig_t *item)
-{
-    size_t size = sizeof(dap_chain_tx_sig_t) + item->header.sig_size;
-    return size;
-}
-
-static size_t dap_chain_tx_token_get_size(const dap_chain_tx_token_t *a_item)
-{
-    (void) a_item;
-    size_t size = sizeof(dap_chain_tx_token_t);
-    return size;
-}
-
-/**
- * Get item type
- *
- * return type, or TX_ITEM_TYPE_ANY if error
- */
-dap_chain_tx_item_type_t dap_chain_datum_tx_item_get_type(const uint8_t *a_item)
-{
-    const dap_chain_tx_in_t *l_item_tx_in = (const dap_chain_tx_in_t*) a_item;
-    dap_chain_tx_item_type_t type = (l_item_tx_in) ? l_item_tx_in->header.type : TX_ITEM_TYPE_ANY;
-    return type;
-}
-
-/**
- * Get item size
- *
- * return size, 0 Error
- */
-size_t dap_chain_datum_item_tx_get_size(const uint8_t *a_item)
-{
-    dap_chain_tx_item_type_t type = dap_chain_datum_tx_item_get_type(a_item);
-    size_t size = 0;
-    switch (type) {
-    case TX_ITEM_TYPE_IN: // Transaction inputs
-        size = dap_chain_tx_in_get_size((const dap_chain_tx_in_t*) a_item);
-        break;
-    case TX_ITEM_TYPE_OUT: // Transaction outputs
-        size = dap_chain_tx_out_get_size((const dap_chain_tx_out_t*) a_item);
-        break;
-    case TX_ITEM_TYPE_RECEIPT: // Receipt
-        size = dap_chain_datum_tx_receipt_get_size((const dap_chain_datum_tx_receipt_t*) a_item);
-    case TX_ITEM_TYPE_IN_COND: // Transaction inputs with condition
-        size = dap_chain_tx_in_cond_get_size((const dap_chain_tx_in_cond_t*) a_item);
-        break;
-    case TX_ITEM_TYPE_OUT_COND: // Transaction output with condition
-        size = dap_chain_tx_out_cond_get_size((const dap_chain_tx_out_cond_t*) a_item);
-        break;
-    case TX_ITEM_TYPE_PKEY: // Transaction public keys
-        size = dap_chain_tx_pkey_get_size((const dap_chain_tx_pkey_t*) a_item);
-        break;
-    case TX_ITEM_TYPE_SIG: // Transaction signatures
-        size = dap_chain_tx_sig_get_size((const dap_chain_tx_sig_t*) a_item);
-        break;
-    case TX_ITEM_TYPE_TOKEN: // token item
-        size = dap_chain_tx_token_get_size((const dap_chain_tx_token_t*) a_item);
-        break;
-    default:
-        return 0;
-    }
-    return size;
-}
-
-/**
- * Create item dap_chain_tx_token_t
- *
- * return item, NULL Error
- */
-dap_chain_tx_token_t* dap_chain_datum_tx_item_token_create(dap_chain_hash_fast_t * a_datum_token_hash,const char * a_ticker)
-{
-    if(!a_ticker)
-        return NULL;
-    size_t a_ticker_len = strlen(a_ticker);
-    dap_chain_tx_token_t *l_item = DAP_NEW_Z(dap_chain_tx_token_t);
-    l_item->header.type = TX_ITEM_TYPE_TOKEN;
-    memcpy (& l_item->header.token_emission_hash, a_datum_token_hash, sizeof ( *a_datum_token_hash ) );
-    if(a_ticker_len >= sizeof(l_item->header.ticker))
-        a_ticker_len = sizeof(l_item->header.ticker) - 1;
-    strncpy(l_item->header.ticker, a_ticker, a_ticker_len);
-
-    return l_item;
-}
-
-/**
- * Create item dap_chain_tx_out_t
- *
- * return item, NULL Error
- */
-dap_chain_tx_in_t* dap_chain_datum_tx_item_in_create(dap_chain_hash_fast_t *a_tx_prev_hash, uint32_t a_tx_out_prev_idx)
-{
-    if(!a_tx_prev_hash)
-        return NULL;
-    dap_chain_tx_in_t *l_item = DAP_NEW_Z(dap_chain_tx_in_t);
-    l_item->header.type = TX_ITEM_TYPE_IN;
-    l_item->header.tx_out_prev_idx = a_tx_out_prev_idx;
-    memcpy(&l_item->header.tx_prev_hash, a_tx_prev_hash, sizeof(dap_chain_hash_fast_t));
-    return l_item;
-}
-
-/**
- * @brief dap_chain_datum_tx_item_in_cond_create
- * @param a_pkey_serialized
- * @param a_pkey_serialized_size
- * @param a_receipt_idx
- * @return
- */
-dap_chain_tx_in_cond_t* dap_chain_datum_tx_item_in_cond_create(dap_chain_hash_fast_t *a_tx_prev_hash, uint32_t a_tx_out_prev_idx,
-                                                               uint32_t a_receipt_idx)
-{
-    if(!a_tx_prev_hash )
-        return NULL;
-    dap_chain_tx_in_cond_t *l_item = DAP_NEW_Z(dap_chain_tx_in_cond_t);
-    l_item->header.type = TX_ITEM_TYPE_IN;
-    l_item->header.receipt_idx = a_receipt_idx;
-    l_item->header.tx_out_prev_idx = a_tx_out_prev_idx;
-    memcpy(&l_item->header.tx_prev_hash, a_tx_prev_hash,sizeof(l_item->header.tx_prev_hash) );
-    return l_item;
-}
-
-/**
- * Create item dap_chain_tx_out_t
- *
- * return item, NULL Error
- */
-dap_chain_tx_out_t* dap_chain_datum_tx_item_out_create(const dap_chain_addr_t *a_addr, uint64_t a_value)
-{
-    if(!a_addr)
-        return NULL;
-    dap_chain_tx_out_t *l_item = DAP_NEW_Z(dap_chain_tx_out_t);
-    l_item->header.type = TX_ITEM_TYPE_OUT;
-    l_item->header.value = a_value;
-    memcpy(&l_item->addr, a_addr, sizeof(dap_chain_addr_t));
-    return l_item;
-}
-
-/**
- * Create item dap_chain_tx_out_cond_t
- *
- * return item, NULL Error
- */
-dap_chain_tx_out_cond_t* dap_chain_datum_tx_item_out_cond_create_srv_pay(dap_enc_key_t *a_key, dap_chain_net_srv_uid_t a_srv_uid,
-        uint64_t a_value,uint64_t a_value_max_per_unit, dap_chain_net_srv_price_unit_uid_t a_unit,
-                                                                 const void *a_params, size_t a_params_size)
-{
-    if(!a_key || !a_params)
-        return NULL;
-    size_t l_pub_key_size = 0;
-    uint8_t *l_pub_key = dap_enc_key_serealize_pub_key(a_key, &l_pub_key_size);
-
-
-    dap_chain_tx_out_cond_t *l_item = DAP_NEW_Z_SIZE(dap_chain_tx_out_cond_t,
-            sizeof(l_item->header)+sizeof (l_item->subtype.srv_pay.header) + a_params_size);
-    l_item->header.item_type = TX_ITEM_TYPE_OUT_COND;
-    l_item->header.value = a_value;
-    l_item->header.subtype = DAP_CHAIN_TX_OUT_COND_SUBTYPE_SRV_PAY; // By default creatre cond for service pay. Rework with smth more flexible
-    l_item->subtype.srv_pay.header.srv_uid = a_srv_uid;
-    l_item->subtype.srv_pay.header.params_size = (uint32_t) a_params_size;
-    l_item->subtype.srv_pay.header.unit = a_unit;
-    l_item->subtype.srv_pay.header.unit_price_max_datoshi = a_value_max_per_unit;
-    dap_hash_fast( l_pub_key, l_pub_key_size, & l_item->subtype.srv_pay.header.pkey_hash);
-    memcpy(l_item->subtype.srv_pay.params, a_params, a_params_size);
-    return l_item;
-}
-
-
-/**
- * Create item dap_chain_tx_sig_t
- *
- * return item, NULL Error
- */
-dap_chain_tx_sig_t* dap_chain_datum_tx_item_sign_create(dap_enc_key_t *a_key, const void *a_data, size_t a_data_size)
-{
-    if(!a_key || !a_data || !a_data_size)
-        return NULL;
-    dap_sign_t *l_chain_sign = dap_sign_create(a_key, a_data, a_data_size, 0);
-    size_t l_chain_sign_size = dap_sign_get_size(l_chain_sign); // sign data
-    if(!l_chain_sign) {
-        return NULL;
-    }
-    dap_chain_tx_sig_t *l_tx_sig = DAP_NEW_Z_SIZE(dap_chain_tx_sig_t,
-            sizeof(dap_chain_tx_sig_t) + l_chain_sign_size);
-    l_tx_sig->header.type = TX_ITEM_TYPE_SIG;
-    l_tx_sig->header.sig_size =(uint32_t) l_chain_sign_size;
-    memcpy(l_tx_sig->sig, l_chain_sign, l_chain_sign_size);
-    DAP_DELETE(l_chain_sign);
-    return l_tx_sig;
-}
-
-/**
- * Get sign from sign item
- *
- * return sign, NULL Error
- */
-dap_sign_t* dap_chain_datum_tx_item_sign_get_sig(dap_chain_tx_sig_t *a_tx_sig)
-{
-    if(!a_tx_sig || !a_tx_sig->header.sig_size)
-        return NULL;
-    return (dap_sign_t*) a_tx_sig->sig;
-}
-
-/**
- * Get item from transaction
- *
- * a_tx [in] transaction
- * a_item_idx_start[in/out] start index / found index of item in transaction, if 0 then from beginning
- * a_type[in] type of item being find, if TX_ITEM_TYPE_ANY - any item
- * a_item_out_size size[out] size of returned item
- * return item data, NULL Error index or bad format transaction
- */
-uint8_t* dap_chain_datum_tx_item_get( dap_chain_datum_tx_t *a_tx, int *a_item_idx_start,
-        dap_chain_tx_item_type_t a_type, int *a_item_out_size)
-{
-    if(!a_tx)
-        return NULL;
-    uint32_t l_tx_items_pos = 0, l_tx_items_size = a_tx->header.tx_items_size;
-    int l_item_idx = 0;
-    while(l_tx_items_pos < l_tx_items_size) {
-         uint8_t *l_item = a_tx->tx_items + l_tx_items_pos;
-        int l_item_size = dap_chain_datum_item_tx_get_size(l_item);
-        if(!l_item_size)
-            return NULL;
-        // check index
-        if(!a_item_idx_start || l_item_idx >= *a_item_idx_start) {
-            // check type
-            if(a_type == TX_ITEM_TYPE_ANY || a_type == dap_chain_datum_tx_item_get_type(l_item)) {
-                if(a_item_idx_start)
-                    *a_item_idx_start = l_item_idx;
-                if(a_item_out_size)
-                    *a_item_out_size = l_item_size;
-                return l_item;
-            }
-        }
-        l_tx_items_pos += l_item_size;
-        l_item_idx++;
-    }
-    return NULL;
-}
-
-/**
- * Get all item from transaction by type
- *
- * a_tx [in] transaction
- * a_item_idx_start[in/out] start index / found index of item in transaction, if 0 then from beginning
- * a_type[in] type of item being find, if TX_ITEM_TYPE_ANY - any item
- * a_item_count[out] count of returned item
- * return item data, NULL Error index or bad format transaction
- */
-dap_list_t* dap_chain_datum_tx_items_get(dap_chain_datum_tx_t *a_tx, dap_chain_tx_item_type_t a_type, int *a_item_count)
-{
-    dap_list_t *items_list = NULL;
-    int l_items_count = 0, l_item_idx_start = 0;
-    // Get sign item from transaction
-    while(1) {
-        uint8_t *l_tx_item = dap_chain_datum_tx_item_get(a_tx, &l_item_idx_start, a_type, NULL);
-        if(!l_tx_item)
-            break;
-        items_list = dap_list_append(items_list, l_tx_item);
-        l_items_count++;
-        l_item_idx_start++;
-    }
-    if(a_item_count)
-        *a_item_count = l_items_count;
-    return items_list;
-}
diff --git a/libdap-chain-common/src/dap_chain_datum_tx_out_cond.c b/libdap-chain-common/src/dap_chain_datum_tx_out_cond.c
deleted file mode 100755
index 543fd32bd209bf7d86865234846d7400347139fe..0000000000000000000000000000000000000000
--- a/libdap-chain-common/src/dap_chain_datum_tx_out_cond.c
+++ /dev/null
@@ -1,45 +0,0 @@
-/*
- * Authors:
- * Dmitriy A. Gearasimov <gerasimov.dmitriy@demlabs.net>
- * Alexander Lysikov <alexander.lysikov@demlabs.net>
- * DeM Labs Inc.   https://demlabs.net
- * DeM Labs Open source community https://github.com/demlabsinc
- * Copyright  (c) 2017-2019
- * All rights reserved.
-
- This file is part of DAP (Deus Applications Prototypes) the open source project
-
- DAP (Deus Applicaions Prototypes) is free software: you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
-
- DAP is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with any DAP based project.  If not, see <http://www.gnu.org/licenses/>.
- */
-
-#include <stdint.h>
-#include "dap_common.h"
-#include "dap_chain_common.h"
-#include "dap_chain_datum_tx_out_cond.h"
-
-uint8_t* dap_chain_datum_tx_out_cond_item_get_params(dap_chain_tx_out_cond_t *a_tx_out_cond, size_t *a_cond_size_out)
-{
-    if(a_tx_out_cond) {
-        switch (a_tx_out_cond->header.subtype ) {
-            case DAP_CHAIN_TX_OUT_COND_SUBTYPE_SRV_PAY:{
-                if(a_cond_size_out)
-                    *a_cond_size_out = a_tx_out_cond->subtype.srv_pay.header.params_size;
-                return a_tx_out_cond->subtype.srv_pay.params;
-            }
-            default: return NULL;
-        }
-    }
-    return NULL;
-}
-
diff --git a/libdap-chain-common/src/dap_chain_datum_tx_receipt.c b/libdap-chain-common/src/dap_chain_datum_tx_receipt.c
deleted file mode 100644
index a51f8f877ec2cb42c64e35633ac881586c73655f..0000000000000000000000000000000000000000
--- a/libdap-chain-common/src/dap_chain_datum_tx_receipt.c
+++ /dev/null
@@ -1,115 +0,0 @@
-/*
- * Authors:
- * Dmitriy A. Gearasimov <gerasimov.dmitriy@demlabs.net>
- * DeM Labs Inc.   https://demlabs.net
- * CellFrame       https://cellframe.net
- * Sources         https://gitlab.demlabs.net/cellframe
- * Copyright  (c) 2017-2019
- * All rights reserved.
-
- This file is part of CellFrame SDK the open source project
-
-    CellFrame SDK is free software: you can redistribute it and/or modify
-    it under the terms of the GNU General Public License as published by
-    the Free Software Foundation, either version 3 of the License, or
-    (at your option) any later version.
-
-    CellFrame SDK is distributed in the hope that it will be useful,
-    but WITHOUT ANY WARRANTY; without even the implied warranty of
-    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-    GNU General Public License for more details.
-
-    You should have received a copy of the GNU General Public License
-    along with any CellFrame SDK based project.  If not, see <http://www.gnu.org/licenses/>.
-*/
-
-#include "dap_common.h"
-#include "dap_enc_key.h"
-#include "dap_sign.h"
-#include "dap_chain_datum_tx_receipt.h"
-
-#define LOG_TAG "dap_chain_datum_tx_receipt"
-
-/**
- * @brief dap_chain_datum_tx_receipt_create
- * @param a_srv_uid
- * @param a_units_type
- * @param a_units
- * @param a_value_datoshi
- * @param a_ext
- * @param a_ext_size
- * @return
- */
-dap_chain_datum_tx_receipt_t * dap_chain_datum_tx_receipt_create( dap_chain_net_srv_uid_t a_srv_uid,
-                                                                  dap_chain_net_srv_price_unit_uid_t a_units_type,
-                                                                    uint64_t a_units, uint64_t a_value_datoshi,
-                                                                  const void * a_ext, size_t a_ext_size)
-{
-    dap_chain_datum_tx_receipt_t * l_ret = DAP_NEW_Z_SIZE(dap_chain_datum_tx_receipt_t, dap_chain_datum_tx_receipt_get_size_hdr() +a_ext_size );
-    l_ret->type = TX_ITEM_TYPE_RECEIPT;
-    l_ret->receipt_info.units_type = a_units_type;
-    l_ret->receipt_info.srv_uid = a_srv_uid;
-    l_ret->receipt_info.units = a_units;
-    l_ret->receipt_info.value_datoshi = a_value_datoshi;
-    l_ret->size = dap_chain_datum_tx_receipt_get_size_hdr()+a_ext_size;
-
-    if( a_ext_size && a_ext){
-        l_ret->exts_size = a_ext_size;
-        memcpy(l_ret->exts_n_signs, a_ext, a_ext_size);
-    }
-    return  l_ret;
-}
-
-size_t dap_chain_datum_tx_receipt_sign_add(dap_chain_datum_tx_receipt_t * a_receipt, size_t a_receipt_size, dap_enc_key_t *a_key )
-{
-    if ( ! a_receipt ){
-        log_it( L_ERROR, "NULL receipt, can't add sign");
-        return 0;
-    }
-    dap_sign_t * l_sign = dap_sign_create(a_key,&a_receipt->receipt_info,sizeof (a_receipt->receipt_info),0);
-    size_t l_sign_size = l_sign? dap_sign_get_size( l_sign ) : 0;
-    if ( ! l_sign || ! l_sign_size ){
-        log_it( L_ERROR, "Can't sign the receipt, may be smth with key?");
-        return 0;
-    }
-    a_receipt= (dap_chain_datum_tx_receipt_t*) DAP_REALLOC(a_receipt, a_receipt_size+l_sign_size);
-    memcpy(a_receipt->exts_n_signs+a_receipt_size+a_receipt->exts_size, l_sign, l_sign_size);
-    a_receipt_size += l_sign_size;
-    a_receipt->size = a_receipt_size;
-    DAP_DELETE( l_sign );
-    return a_receipt_size;
-}
-
-/**
- * @brief dap_chain_datum_tx_receipt_sign_get
- * @param l_receipt
- * @param a_sign_position
- * @return
- */
-dap_sign_t* dap_chain_datum_tx_receipt_sign_get(dap_chain_datum_tx_receipt_t * l_receipt,  size_t l_receipt_size,uint16_t a_sign_position  )
-{
-    if ( l_receipt_size <= sizeof (l_receipt->receipt_info)+1)
-        return NULL;
-    dap_sign_t * l_sign = (dap_sign_t *) (l_receipt->exts_n_signs+l_receipt->exts_size);
-    for ( ; a_sign_position && l_receipt_size > (size_t) ( (byte_t *) l_sign - (byte_t *) l_receipt ) ; a_sign_position-- ){
-        l_sign =(dap_sign_t *) (((byte_t*) l_sign)+  dap_sign_get_size( l_sign ));
-    }
-    return l_sign;
-}
-
-/**
- * @brief dap_chain_datum_tx_receipt_signs_count
- * @param a_receipt
- * @param a_receipt_size
- * @return
- */
-uint16_t dap_chain_datum_tx_receipt_signs_count(dap_chain_datum_tx_receipt_t * a_receipt, size_t a_receipt_size)
-{
-    uint16_t l_ret = 0;
-    for (dap_sign_t * l_sign = (dap_sign_t *) (a_receipt->exts_n_signs +a_receipt->exts_size); a_receipt_size > (size_t) ( (byte_t *) l_sign - (byte_t *) a_receipt ) ;
-        l_sign =(dap_sign_t *) (((byte_t*) l_sign)+  dap_sign_get_size( l_sign )) ){
-        l_ret++;
-    }
-    return l_ret;
-
-}
diff --git a/libdap-chain-common/src/dap_chain_datum_tx_token.c b/libdap-chain-common/src/dap_chain_datum_tx_token.c
deleted file mode 100755
index 0379c5ae4640d3faf766f20becfde6e5139dd81a..0000000000000000000000000000000000000000
--- a/libdap-chain-common/src/dap_chain_datum_tx_token.c
+++ /dev/null
@@ -1,24 +0,0 @@
-/*
- * Authors:
- * Dmitriy A. Gearasimov <kahovski@gmail.com>
- * DeM Labs Inc.   https://demlabs.net
- * DeM Labs Open source community https://github.com/demlabsinc
- * Copyright  (c) 2017-2019
- * All rights reserved.
-
- This file is part of DAP (Deus Applications Prototypes) the open source project
-
-    DAP (Deus Applicaions Prototypes) is free software: you can redistribute it and/or modify
-    it under the terms of the GNU General Public License as published by
-    the Free Software Foundation, either version 3 of the License, or
-    (at your option) any later version.
-
-    DAP is distributed in the hope that it will be useful,
-    but WITHOUT ANY WARRANTY; without even the implied warranty of
-    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-    GNU General Public License for more details.
-
-    You should have received a copy of the GNU General Public License
-    along with any DAP based project.  If not, see <http://www.gnu.org/licenses/>.
-*/
-#include <dap_chain_datum_tx_token.h>
diff --git a/libdap-chain-cs-dag b/libdap-chain-cs-dag
index 1319d136f54fa65962a73881680df6216ce78086..080fee36472e800c5d3db1bea46b5de90d91e0db 160000
--- a/libdap-chain-cs-dag
+++ b/libdap-chain-cs-dag
@@ -1 +1 @@
-Subproject commit 1319d136f54fa65962a73881680df6216ce78086
+Subproject commit 080fee36472e800c5d3db1bea46b5de90d91e0db
diff --git a/libdap-chain-cs-dag-poa b/libdap-chain-cs-dag-poa
index 810db1b64905477cde62e981d6f160da501660c7..6a56f7c0f6d9c618f98a053ad7701476c529ed2c 160000
--- a/libdap-chain-cs-dag-poa
+++ b/libdap-chain-cs-dag-poa
@@ -1 +1 @@
-Subproject commit 810db1b64905477cde62e981d6f160da501660c7
+Subproject commit 6a56f7c0f6d9c618f98a053ad7701476c529ed2c
diff --git a/libdap-chain-global-db b/libdap-chain-global-db
index 71b87bfae6cc5d9c44e1f15478d71476cbfdd432..ed828cf1519ce0f2d77ef691a5cf3a909397d82a 160000
--- a/libdap-chain-global-db
+++ b/libdap-chain-global-db
@@ -1 +1 @@
-Subproject commit 71b87bfae6cc5d9c44e1f15478d71476cbfdd432
+Subproject commit ed828cf1519ce0f2d77ef691a5cf3a909397d82a
diff --git a/libdap-chain-mempool b/libdap-chain-mempool
index 6230d941f19b67f208793fa4c321a785e0df8760..6c5e89c119aa98456026c3cc564029619470df4b 160000
--- a/libdap-chain-mempool
+++ b/libdap-chain-mempool
@@ -1 +1 @@
-Subproject commit 6230d941f19b67f208793fa4c321a785e0df8760
+Subproject commit 6c5e89c119aa98456026c3cc564029619470df4b
diff --git a/libdap-chain-net b/libdap-chain-net
index c3c5901b40ad4aa5cd6babca83d5b8ec2f23050a..0c4b45ab2f3b8ac5cd432727af36225bd1c0643c 160000
--- a/libdap-chain-net
+++ b/libdap-chain-net
@@ -1 +1 @@
-Subproject commit c3c5901b40ad4aa5cd6babca83d5b8ec2f23050a
+Subproject commit 0c4b45ab2f3b8ac5cd432727af36225bd1c0643c
diff --git a/libdap-chain-net-srv b/libdap-chain-net-srv
index ea8d445e4a92d615d71112e41121af064aeed14f..c28d683b226c8d39cd898609eb15a4049e74cf4e 160000
--- a/libdap-chain-net-srv
+++ b/libdap-chain-net-srv
@@ -1 +1 @@
-Subproject commit ea8d445e4a92d615d71112e41121af064aeed14f
+Subproject commit c28d683b226c8d39cd898609eb15a4049e74cf4e
diff --git a/libdap-chain-net-srv-vpn b/libdap-chain-net-srv-vpn
index b67f362e974daf9980d1832357d59030ef45952a..d532852fd138e47498e62a16c5b3b7b139bda549 160000
--- a/libdap-chain-net-srv-vpn
+++ b/libdap-chain-net-srv-vpn
@@ -1 +1 @@
-Subproject commit b67f362e974daf9980d1832357d59030ef45952a
+Subproject commit d532852fd138e47498e62a16c5b3b7b139bda549
diff --git a/libdap-crypto b/libdap-crypto
index 0c0c9cd65736c4f129fb477cf4ddec2ecfe51add..481374beab4e51b7d95d518ac49e3bafb4f124a5 160000
--- a/libdap-crypto
+++ b/libdap-crypto
@@ -1 +1 @@
-Subproject commit 0c0c9cd65736c4f129fb477cf4ddec2ecfe51add
+Subproject commit 481374beab4e51b7d95d518ac49e3bafb4f124a5
diff --git a/libdap-server b/libdap-server
index bc2eeb22af9852cce12079b755b6afa277d5be4e..e2902a5cc17f517fd27bf31640c9ef2e08a2968b 160000
--- a/libdap-server
+++ b/libdap-server
@@ -1 +1 @@
-Subproject commit bc2eeb22af9852cce12079b755b6afa277d5be4e
+Subproject commit e2902a5cc17f517fd27bf31640c9ef2e08a2968b
diff --git a/libdap-server-http-db-auth b/libdap-server-http-db-auth
index d1e5f6abc9d394b53beb06a2566dd3ae52be92e8..a765ab9943f3716469223e4073068b0948fa587b 160000
--- a/libdap-server-http-db-auth
+++ b/libdap-server-http-db-auth
@@ -1 +1 @@
-Subproject commit d1e5f6abc9d394b53beb06a2566dd3ae52be92e8
+Subproject commit a765ab9943f3716469223e4073068b0948fa587b
diff --git a/libdap-stream-ch-chain-net-srv b/libdap-stream-ch-chain-net-srv
index fdf6603ba778bee50131ec3cfacfbabe79d1651b..001b68d44aa11bbeb28b473e1ba41364497a6d6a 160000
--- a/libdap-stream-ch-chain-net-srv
+++ b/libdap-stream-ch-chain-net-srv
@@ -1 +1 @@
-Subproject commit fdf6603ba778bee50131ec3cfacfbabe79d1651b
+Subproject commit 001b68d44aa11bbeb28b473e1ba41364497a6d6a
diff --git a/setup.py b/setup.py
index 5446eb80a36396d8e06ab6bae1e8529e2ac6e944..c4cb61b17fe537a300f899d81f557f7c1d73b466 100644
--- a/setup.py
+++ b/setup.py
@@ -11,7 +11,7 @@ from skbuild import setup
 
 setup(
     name="CellFrame",
-    version="0.5-1",
+    version="0.6.1",
     description="SDK CellFrame network",
     author='DEMLABS Inc. (2017-2019)',
     license="GNU GPL",
diff --git a/src/wrapping_dap_enc_http.c b/src/wrapping_dap_enc_http.c
index 54ddc8caf2c4d8a5d53a5f8a8d61057ff62d0741..e20c26f57eea73df6c3ea492d50157b4dbdd0f32 100644
--- a/src/wrapping_dap_enc_http.c
+++ b/src/wrapping_dap_enc_http.c
@@ -5,6 +5,6 @@ PyObject *enc_http_add_proc_py(PyObject *self, PyObject *args){
     const char *HTTP_URL;
     if (!PyArg_ParseTuple(args, "O|s", &obj_server, &HTTP_URL))
         return NULL;
-    enc_http_add_proc_py(((PyDapServerObject*)obj_server)->t_server, HTTP_URL);
+    enc_http_add_proc(DAP_HTTP(((PyDapServerObject*)obj_server)->t_server), HTTP_URL);
     return PyLong_FromLong(0);
 }