diff --git a/routes/electrumjs/electrumServers.js b/routes/electrumjs/electrumServers.js
index 23a1520..2b29dc5 100644
--- a/routes/electrumjs/electrumServers.js
+++ b/routes/electrumjs/electrumServers.js
@@ -42,6 +42,17 @@ let electrumServers = {
       'electrum1.cipig.net:10011',
       'electrum2.cipig.net:10011'
     ],
+},
+   glxt: { // !estimatefee
+    address: 'electrum1.glx.co',
+    port: 60012,
+    proto: 'tcp',
+    txfee: 10000,
+    abbr: 'GLXT',
+    serverList: [
+      'electrum1.glx.co:60012',
+      'electrum2.glx.co:60012'
+    ],
   },
   revs: { // !estimatefee
     address: 'electrum1.cipig.net',
diff --git a/routes/ports.js b/routes/ports.js
index 9a930d5..748051d 100644
--- a/routes/ports.js
+++ b/routes/ports.js
@@ -21,6 +21,7 @@ const assetChainPorts = {
   'BOTS': '11964',
   'MGW': '12386',
   'COQUI': '14276',
+  'GLXT': '15723',
   'MVP': '11676',
   'KV': '8299',
   'CEAL': '11116',
diff --git a/routes/shepherd/electrum/network.js b/routes/shepherd/electrum/network.js
index aace093..9692855 100644
--- a/routes/shepherd/electrum/network.js
+++ b/routes/shepherd/electrum/network.js
@@ -75,6 +75,7 @@ module.exports = (shepherd) => {
         coin === 'BET' ||
         coin === 'CRYPTO' ||
         coin === 'COQUI' ||
+	coin === 'GLXT' ||
         coin === 'OOT' ||
         coin === 'HODL' ||
       	coin === 'EQL' ||
@@ -105,6 +106,7 @@ module.exports = (shepherd) => {
         coinUC === 'BET' ||
         coinUC === 'CRYPTO' ||
         coinUC === 'COQUI' ||
+	coinUC === 'GLXT' ||
         coinUC === 'OOT' ||
       	coinUC === 'EQL' ||
         coinUC === 'HODL' ||