diff --git a/CellFrameDashboardGUI/qml.qrc b/CellFrameDashboardGUI/qml.qrc
index 940d52a2f9a49fc166362b1dce5931890608d88a..7dea54a16891472e83ef1376a63c2de56cce1cd9 100755
--- a/CellFrameDashboardGUI/qml.qrc
+++ b/CellFrameDashboardGUI/qml.qrc
@@ -17,7 +17,6 @@
         <file>resources/icons/cellframe-logo-dashboard.png</file>
         <file>screen/DapMainApplicationWindow.qml</file>
         <file>screen/DapAbstractTab.qml</file>
-        <file>screen/DapAbstractTabForm.ui.qml</file>
         <file>screen/DapAbstractScreen.qml</file>
         <file>screen/DapAbstractScreenForm.ui.qml</file>
         <file>screen/DapAbstractRightPanel.qml</file>
@@ -173,5 +172,8 @@
         <file>screen/desktop/Certificates/CertificatesLogic.qml</file>
         <file>screen/desktop/Certificates/parts/TitleTextView.qml</file>
         <file>screen/desktop/Certificates/parts/Utils.qml</file>
+        <file>screen/desktop/Wallet/DapWalletTab.qml</file>
+        <file>screen/desktop/Wallet/DapWalletTopPanel.qml</file>
+        <file>screen/desktop/DapTokensListView.qml</file>
     </qresource>
 </RCC>
diff --git a/CellFrameDashboardGUI/screen/DapAbstractTab.qml b/CellFrameDashboardGUI/screen/DapAbstractTab.qml
index e51b4ba7f0265b5a56a163443b180d3843858766..886f205877c5c3efe39efd506a96986bbf39b420 100644
--- a/CellFrameDashboardGUI/screen/DapAbstractTab.qml
+++ b/CellFrameDashboardGUI/screen/DapAbstractTab.qml
@@ -1,7 +1,14 @@
 import QtQuick 2.4
+import "qrc:/widgets"
 
-DapAbstractTabForm
+DapTab
 {
+    ///@detalis Currently displayed right pane
+    property DapRightPanel currentRightPanel
+
+    dapSeparator.width: 1 * pt
+    dapSeparator.color: "#E3E2E6"
+
     Connections
     {
         target: dapRightPanel
diff --git a/CellFrameDashboardGUI/screen/DapAbstractTabForm.ui.qml b/CellFrameDashboardGUI/screen/DapAbstractTabForm.ui.qml
deleted file mode 100644
index c4b98ed4f8d0823209aae7824c56b85741a08885..0000000000000000000000000000000000000000
--- a/CellFrameDashboardGUI/screen/DapAbstractTabForm.ui.qml
+++ /dev/null
@@ -1,11 +0,0 @@
-import QtQuick 2.4
-import "qrc:/widgets"
-
-DapTab
-{
-    ///@detalis Currently displayed right pane
-    property DapRightPanel currentRightPanel
-
-    dapSeparator.width: 1 * pt
-    dapSeparator.color: "#E3E2E6"
-}
diff --git a/CellFrameDashboardGUI/screen/DapMainApplicationWindow.qml b/CellFrameDashboardGUI/screen/DapMainApplicationWindow.qml
index 850bf02c6f2db14587ffea0f0825d141de80b701..7bd3c8914e6995973a0817a548f4a4fc13a510d1 100644
--- a/CellFrameDashboardGUI/screen/DapMainApplicationWindow.qml
+++ b/CellFrameDashboardGUI/screen/DapMainApplicationWindow.qml
@@ -9,6 +9,8 @@ Item {
     id: dapMainWindow
     ///@detalis Path to the dashboard tab.
     readonly property string dashboardScreen: "qrc:/screen/" + device + "/Dashboard/DapDashboardTab.qml"
+    ///@detalis Path to the dashboard tab.
+    readonly property string walletScreen: "qrc:/screen/" + device + "/Wallet/DapWalletTab.qml"
     ///@detalis Path to the exchange tab.
     readonly property string exchangeScreen: "qrc:/screen/" + device + "/Exchange/DapExchangeTab.qml"
     ///@detalis Path to the history tab.
@@ -162,6 +164,12 @@ Item {
                 normalIcon: "qrc:/resources/icons/icon_dashboard.png",
                 hoverIcon: "qrc:/resources/icons/icon_dashboard_hover.png"
             })
+            append({
+                name: qsTr("Wallet"),
+                page: walletScreen,
+                normalIcon: "qrc:/resources/icons/icon_dashboard.png",
+                hoverIcon: "qrc:/resources/icons/icon_dashboard_hover.png"
+            })
 //TODO: The tab is disabled until the functional part is implemented
 //            append ({
 //                name: qsTr("Exchange"),
diff --git a/CellFrameDashboardGUI/screen/desktop/DapTokensListView.qml b/CellFrameDashboardGUI/screen/desktop/DapTokensListView.qml
new file mode 100644
index 0000000000000000000000000000000000000000..ff25aa1921bfb8634641d149c1f58df56bc82d28
--- /dev/null
+++ b/CellFrameDashboardGUI/screen/desktop/DapTokensListView.qml
@@ -0,0 +1,11 @@
+import QtQuick 2.0
+
+Rectangle
+{
+    anchors.left: parent.left
+    anchors.right: parent.right
+    anchors.bottom: parent.bottom
+    border.color: "#E2E1E6"
+    border.width: 1 * pt
+    radius: 8 * pt
+}
diff --git a/CellFrameDashboardGUI/screen/desktop/Wallet/DapWalletTab.qml b/CellFrameDashboardGUI/screen/desktop/Wallet/DapWalletTab.qml
new file mode 100644
index 0000000000000000000000000000000000000000..97e5cc2873f7662ccc5b20cdaf100b8027ecff39
--- /dev/null
+++ b/CellFrameDashboardGUI/screen/desktop/Wallet/DapWalletTab.qml
@@ -0,0 +1,27 @@
+import QtQuick 2.4
+import QtQuick.Controls 1.4
+import "qrc:/"
+import "../../"
+import "../"
+
+
+
+Item
+{
+//    // Install the top panel widget
+    id: tab
+//    Column
+//    {
+        anchors.fill: parent
+        DapWalletTopPanel
+        {
+            id: topPanel
+        }
+
+        DapTokensListView
+        {
+            anchors.top: topPanel.bottom
+            anchors.margins: 24*pt
+        }
+
+}
diff --git a/CellFrameDashboardGUI/screen/desktop/Wallet/DapWalletTopPanel.qml b/CellFrameDashboardGUI/screen/desktop/Wallet/DapWalletTopPanel.qml
new file mode 100644
index 0000000000000000000000000000000000000000..9cf6d75f18f3a7a9b47a4fdf3313a8bfaffe6acd
--- /dev/null
+++ b/CellFrameDashboardGUI/screen/desktop/Wallet/DapWalletTopPanel.qml
@@ -0,0 +1,10 @@
+import QtQuick 2.4
+import QtQuick.Controls 2.0
+import Demlabs 1.0
+import "../../"
+import "qrc:/widgets"
+
+DapTopPanel
+{
+
+}
diff --git a/CellFrameDashboardGUI/screen/mobile/Dashboard/DapDashboardTabForm.ui.qml b/CellFrameDashboardGUI/screen/mobile/Dashboard/DapDashboardTabForm.ui.qml
index 3da72e041496aad063f60922c40a4c83dc0228aa..233a196c9b5b4d160bbe8116b960ad6cec8f693b 100644
--- a/CellFrameDashboardGUI/screen/mobile/Dashboard/DapDashboardTabForm.ui.qml
+++ b/CellFrameDashboardGUI/screen/mobile/Dashboard/DapDashboardTabForm.ui.qml
@@ -2,7 +2,7 @@ import QtQuick 2.4
 import "qrc:/"
 import "../../"
 
-DapTabForm {
+DapTab {
     id: dapDashboardTab
 
     anchors.fill: parent
diff --git a/CellFrameDashboardGUI/screen/mobile/Exchange/DapExchangeTabForm.ui.qml b/CellFrameDashboardGUI/screen/mobile/Exchange/DapExchangeTabForm.ui.qml
index 1285c26f231c379e5aeda5aabac836ce5d92c554..882b7efc1d4947cc91c95214e3f9c980720b302c 100644
--- a/CellFrameDashboardGUI/screen/mobile/Exchange/DapExchangeTabForm.ui.qml
+++ b/CellFrameDashboardGUI/screen/mobile/Exchange/DapExchangeTabForm.ui.qml
@@ -2,7 +2,7 @@ import QtQuick 2.4
 import "qrc:/"
 import "../../"
 
-DapTabForm {
+DapTab {
     id: dapExchangeTab
 
     anchors.fill: parent
diff --git a/CellFrameDashboardGUI/screen/mobile/History/DapHistoryTabForm.ui.qml b/CellFrameDashboardGUI/screen/mobile/History/DapHistoryTabForm.ui.qml
index c9a741fccf9a8bd87a940bdd85f22f84cff8fe04..50490e137ed55e3368bb0f7f8ddd4eb348d7d445 100644
--- a/CellFrameDashboardGUI/screen/mobile/History/DapHistoryTabForm.ui.qml
+++ b/CellFrameDashboardGUI/screen/mobile/History/DapHistoryTabForm.ui.qml
@@ -2,7 +2,7 @@ import QtQuick 2.4
 import "qrc:/"
 import "../../"
 
-DapTabForm {
+DapTab {
     id: dapHistoryTab
 
     anchors.fill: parent