diff --git a/assets/scripts/atomicexplorer.js b/assets/scripts/atomicexplorer.js
index 703462c..a6b5391 100644
--- a/assets/scripts/atomicexplorer.js
+++ b/assets/scripts/atomicexplorer.js
@@ -74,6 +74,10 @@ var AtomicExplorer = function() {
ExplorerInputData = {'userpass':tmpIguanaRPCAuth,"agent":"dex","method":"alladdresses","symbol":atomic_explorer_select_coin_val};
console.log(ExplorerInputData);
}
+ if (atomic_explorer_select_command_val === 'dex_importaddress') {
+ ExplorerInputData = {'userpass':tmpIguanaRPCAuth,"agent":"dex","method":"importaddress","address":atomic_explorer_input_data_val,"symbol":atomic_explorer_select_coin_val};
+ console.log(ExplorerInputData);
+ }
if (atomic_explorer_select_command_val === 'dex_checkaddress') {
ExplorerInputData = {'userpass':tmpIguanaRPCAuth,"agent":"dex","method":"checkaddress","address":atomic_explorer_input_data_val,"symbol":atomic_explorer_select_coin_val};
console.log(ExplorerInputData);
diff --git a/assets/scripts/dashboard.js b/assets/scripts/dashboard.js
index 5bb4465..f52f816 100644
--- a/assets/scripts/dashboard.js
+++ b/assets/scripts/dashboard.js
@@ -686,6 +686,7 @@ function edexCoinBtnAction() {
$('#edexcoin_active_addr').text(coinmainaddr[0]);
$('#edexcoin_active_addr_clipboard').attr("data-clipboard-text",coinmainaddr[0])
var clipboard = new Clipboard('.btn');
+ $('#edexcoin_active_addr_clipboard').click(function(){alertify.success("Address Copied.");})
clipboard.on('success', function(e) {
console.info('Action:', e.action);
diff --git a/index.html b/index.html
index 58c7787..fdda8b9 100755
--- a/index.html
+++ b/index.html
@@ -1616,6 +1616,7 @@
+