diff --git a/KelvinDashboardGUI/DapServiceController.cpp b/KelvinDashboardGUI/DapServiceController.cpp
index e43d06d15b4c689645ae7ee7bf99723622efc99b..5a07927aa56a40309a57346710f9cc18c93cac70 100644
--- a/KelvinDashboardGUI/DapServiceController.cpp
+++ b/KelvinDashboardGUI/DapServiceController.cpp
@@ -61,6 +61,11 @@ void DapServiceController::getNodeLogs(int aiTimeStamp, int aiRowCount) const
     m_pDapCommandController->getNodeLogs(aiTimeStamp, aiRowCount);
 }
 
+void DapServiceController::addWallet(const QString &asName)
+{
+    qDebug() << "NAME WALLET " << asName;
+}
+
 /// Handling service response for receiving node logs.
 /// @param aNodeLogs List of node logs.
 void DapServiceController::processGetNodeLogs(const QStringList &aNodeLogs)
diff --git a/KelvinDashboardGUI/DapServiceController.h b/KelvinDashboardGUI/DapServiceController.h
index cc18d73129fa5d01e71ab90db37b05c47438eec6..e13547f91a3502a025aadfc90f1867351cc07f7e 100644
--- a/KelvinDashboardGUI/DapServiceController.h
+++ b/KelvinDashboardGUI/DapServiceController.h
@@ -61,6 +61,8 @@ public:
     DapLogModel getLogModel() const;
     void setLogModel(const DapLogModel &dapLogModel);
 
+    Q_INVOKABLE void addWallet(const QString& asName);
+
 signals:
     /// The signal is emitted when the Brand company property changes.
     void brandChanged(const QString &brand);
diff --git a/KelvinDashboardGUI/DapUiQmlScreenDialogAddWallet.qml b/KelvinDashboardGUI/DapUiQmlScreenDialogAddWallet.qml
new file mode 100644
index 0000000000000000000000000000000000000000..e40c42e6e8c8acb1be3de9e88a703bcb0c23347f
--- /dev/null
+++ b/KelvinDashboardGUI/DapUiQmlScreenDialogAddWallet.qml
@@ -0,0 +1,85 @@
+import QtQuick 2.9
+import QtQuick.Controls 2.4
+import KelvinDashboard 1.0
+
+Dialog {
+    id: dialogAddWallet
+    focus: true
+    modal: true
+    title: qsTr("Add wallet...")
+
+    width: parent.width/1.5
+    height: 150
+
+    x: parent.width / 2 - width / 2
+    y: parent.height / 2 - height / 2
+
+    function show() {
+            dialogAddWallet.open();
+        }
+    contentItem:
+
+        Rectangle
+        {
+            anchors.fill: parent
+
+            TextField
+                {
+                            background: Rectangle {
+                                radius: 2
+                                border.color: "gray"
+                                border.width: 1
+                            }
+
+                    id: textFieldNameWallet
+                    selectByMouse: true
+                    height: 35
+                    anchors.bottom: buttonOk.top
+                    anchors.bottomMargin: 20
+                    anchors.right: parent.right
+                    anchors.rightMargin: 10
+                    anchors.left: parent.left
+                    anchors.leftMargin: 10
+                    font.pixelSize: 20
+                    clip: true
+
+
+                }
+
+            Button
+            {
+                id: buttonCancle
+                text: "Cancel"
+                width: 100
+                height: 30
+                anchors.right: buttonOk.left
+                anchors.rightMargin: 10
+                anchors.bottom: parent.bottom
+                anchors.bottomMargin: 10
+                onClicked:
+                {
+                    textFieldNameWallet.clear()
+                    close()
+                }
+            }
+
+            Button
+            {
+                id: buttonOk
+                text: "OK"
+                width: 100
+                height: 30
+                anchors.right: parent.right
+                anchors.rightMargin: 10
+                anchors.bottom: parent.bottom
+                anchors.bottomMargin: 10
+                onClicked:
+                {
+                    dapServiceController.addWallet(textFieldNameWallet.text)
+                    textFieldNameWallet.clear()
+                    close()
+                }
+            }
+        }
+
+}
diff --git a/KelvinDashboardGUI/DapUiQmlWidgetChainWallet.qml b/KelvinDashboardGUI/DapUiQmlWidgetChainWallet.qml
new file mode 100644
index 0000000000000000000000000000000000000000..9767571a913c9d4378cbbfa7d617a6a08e00903d
--- /dev/null
+++ b/KelvinDashboardGUI/DapUiQmlWidgetChainWallet.qml
@@ -0,0 +1,13 @@
+import QtQuick 2.4
+
+DapUiQmlWidgetChainWalletForm {
+    id: dapQmlWidgetChainWallet
+
+
+
+    save.onClicked: {
+        dialogAddWallet.show()
+}
+
+
+}
diff --git a/KelvinDashboardGUI/DapUiQmlWidgetChainWallet.ui.qml b/KelvinDashboardGUI/DapUiQmlWidgetChainWalletForm.ui.qml
similarity index 81%
rename from KelvinDashboardGUI/DapUiQmlWidgetChainWallet.ui.qml
rename to KelvinDashboardGUI/DapUiQmlWidgetChainWalletForm.ui.qml
index 4128f6ee58d97070b497bdee1bdc70569cec66fd..386d3a68b6e8bd6b9aa0246bc889bbe8c4e88fcc 100644
--- a/KelvinDashboardGUI/DapUiQmlWidgetChainWallet.ui.qml
+++ b/KelvinDashboardGUI/DapUiQmlWidgetChainWalletForm.ui.qml
@@ -1,25 +1,28 @@
-import QtQuick 2.9
+import QtQuick 2.11
 import QtQuick.Controls 2.2
 
 Page {
     id: dapUiQmlWidgetChainWallet
-    
+
     title: qsTr("Wallet")
 
+    property alias save: save
+    property alias dialogAddWallet: dialogAddWallet
+
     ListView {
         id: listViewWallet
         anchors.fill: parent
         anchors.margins: 10
         spacing: 10
 
-        delegate: Item {
+       delegate: Item {
             width: parent.width
             height: 150
 
             Rectangle {
                 id: rectangleWallet
                 anchors.fill: parent
-                color: "lightgray"
+               color: "lightgray"
                 opacity: 0.5
                 radius: 5
                 border.color: "gray"
@@ -32,7 +35,7 @@ Page {
                     width: 140
                     border.color: "gray"
                     anchors.left: parent.left
-                    anchors.leftMargin: 5
+                   anchors.leftMargin: 5
                     anchors.verticalCenter: parent.verticalCenter
                     radius: 3.5
 
@@ -43,7 +46,7 @@ Page {
                     }
                 }
 
-                Column
+               Column
                 {
                     anchors.verticalCenter: parent.verticalCenter
                     anchors.left: iconWallet.right
@@ -62,7 +65,7 @@ Page {
 
                     Text {
                         id: lableAddress
-                        text: "Address:"
+                       text: "Address:"
                         font.pixelSize: 18
                         color: "gray"
                     }
@@ -74,7 +77,7 @@ Page {
                         font.pixelSize: 16
                         wrapMode: Text.Wrap
                         selectByMouse: true
-    //                    clip: true
+   //                    clip: true
     //                    elide: Text.ElideRight
                     }
                 }
@@ -84,12 +87,12 @@ Page {
         model: ListModel {
             ListElement {
                 name: "mywallet"
-                address: "RpiDC8c1SxrTNbxwSTVP6mAHhXvUAgCthoCfpVmUSm889M3zt5JfBxo6iRoAPmJkCPihSWNxhRtdTxnd7LXwcj1nbVd5NQyW1kCgXyM6"
+               address: "RpiDC8c1SxrTNbxwSTVP6mAHhXvUAgCthoCfpVmUSm889M3zt5JfBxo6iRoAPmJkCPihSWNxhRtdTxnd7LXwcj1nbVd5NQyW1kCgXyM6"
             }
 
             ListElement {
                 name: "mywallet"
-                address: "RpiDC8c1SxrTNbxwSTVP6mAHhXvUAgCthoCfpVmUSm889M3zt5JfBxo6iRoAPmJkCPihSWNxhRtdTxnd7LXwcj1nbVd5NQyW1kCgXyM6"
+               address: "RpiDC8c1SxrTNbxwSTVP6mAHhXvUAgCthoCfpVmUSm889M3zt5JfBxo6iRoAPmJkCPihSWNxhRtdTxnd7LXwcj1nbVd5NQyW1kCgXyM6"
             }
 
             ListElement {
@@ -103,8 +106,12 @@ Page {
             }
         }
     }
+    DapUiQmlScreenDialogAddWallet {
+        id: dialogAddWallet
+            }
 
     RoundButton {
+            id: save
            text: qsTr("+")
            highlighted: true
            anchors.margins: 10
@@ -112,3 +119,4 @@ Page {
            anchors.bottom: parent.bottom
     }
 }
+
diff --git a/KelvinDashboardGUI/DapUiQmlWidgetModel.cpp b/KelvinDashboardGUI/DapUiQmlWidgetModel.cpp
index 41c2b477eeb7d90cffe14421eef5328a1ebadfce..11ff0ae6fbe7f8152e01cc742eb28b9a97ac2a3c 100755
--- a/KelvinDashboardGUI/DapUiQmlWidgetModel.cpp
+++ b/KelvinDashboardGUI/DapUiQmlWidgetModel.cpp
@@ -7,7 +7,7 @@ DapUiQmlWidgetModel::DapUiQmlWidgetModel(QObject *parent) : QAbstractListModel(p
     m_dapUiQmlWidgets.append(new DapUiQmlWidget( "Services client", "DapUiQmlWidgetChainServicesClient.ui.qml", "qrc:/Resources/Icons/add.png"));
     m_dapUiQmlWidgets.append(new DapUiQmlWidget( "Services share control", "DapUiQmlWidgetChainServicesShareControl.ui.qml", "qrc:/Resources/Icons/add.png"));
     m_dapUiQmlWidgets.append(new DapUiQmlWidget( "Settings", "DapUiQmlWidgetChainSettings.ui.qml", "qrc:/Resources/Icons/add.png"));
-    m_dapUiQmlWidgets.append(new DapUiQmlWidget( "Wallet", "DapUiQmlWidgetChainWallet.ui.qml", "qrc:/Resources/Icons/add.png"));
+    m_dapUiQmlWidgets.append(new DapUiQmlWidget( "Wallet", "DapUiQmlWidgetChainWallet.qml", "qrc:/Resources/Icons/add.png"));
     m_dapUiQmlWidgets.append(new DapUiQmlWidget( "Logs", "DapUiQmlWidgetChainNodeLogs.ui.qml", "qrc:/Resources/Icons/add.png"));
 }
 
diff --git a/KelvinDashboardGUI/qml.qrc b/KelvinDashboardGUI/qml.qrc
index f4f9481febc4d04d7d668b1f807bf08458cf156f..4d465d5ce350680b684637f53e46c55395c2875c 100755
--- a/KelvinDashboardGUI/qml.qrc
+++ b/KelvinDashboardGUI/qml.qrc
@@ -9,7 +9,6 @@
         <file>DapUiQmlWidgetChainServicesClient.ui.qml</file>
         <file>DapUiQmlWidgetChainServicesShareControl.ui.qml</file>
         <file>DapUiQmlWidgetChainSettings.ui.qml</file>
-        <file>DapUiQmlWidgetChainWallet.ui.qml</file>
         <file>DapUiQmlScreenDialog.qml</file>
         <file>Resources/Icons/icon.png</file>
         <file>DapUiQmlScreenAbout.ui.qml</file>
@@ -27,5 +26,8 @@
         <file>Resources/Icons/settings.png</file>
         <file>Resources/Icons/dialog.png</file>
         <file>Resources/Icons/exit.png</file>
+        <file>DapUiQmlScreenDialogAddWallet.qml</file>
+        <file>DapUiQmlWidgetChainWallet.qml</file>
+        <file>DapUiQmlWidgetChainWalletForm.ui.qml</file>
     </qresource>
 </RCC>