diff --git a/CHANGELOG.md b/CHANGELOG.md
index 9224832..75f68a2 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,7 @@
 	- Added `sf.xmr.support`
 	- Added `node.cryptocano.de`
 	- Added `bunkernet.ddns.net`
+	- Added `oracle.netrix.cc`
 	- Removed `xmr.aa78i2efsewr0neeknk.xyz`
 	- Removed `node.yeetin.me`
 	- Removed `monero2.10z.com.ar`
diff --git a/README.md b/README.md
index 352925b..5ed11da 100644
--- a/README.md
+++ b/README.md
@@ -567,6 +567,7 @@ These are the remote nodes used by Gupax in the `[P2Pool Simple]` tab. They are
 | monero.10z.com.ar                | 🇦🇷 AR - Buenos Aires F.D.         | 18089    | 18084       |
 | monero1.heitechsoft.com          | 🇨🇦 CA - Ontario                   | 18081    | 18084       |
 | node.monerodevs.org              | 🇨🇦 CA - Quebec                    | 18089    | 18084       |
+| oracle.netrix.cc                 | 🇨🇭 CH - Zurich                    | 18089    | 18083       |
 | p2pmd.xmrvsbeast.com             | 🇩🇪 DE - Hesse                     | 18081    | 18083       |
 | node.cryptocano.de               | 🇩🇪 DE - Lower Saxony              | 18089    | 18083       |
 | node2.monerodevs.org             | 🇫🇷 FR - Occitanie                 | 18089    | 18084       |
diff --git a/src/node.rs b/src/node.rs
index d4c5c22..8283b2e 100644
--- a/src/node.rs
+++ b/src/node.rs
@@ -34,10 +34,11 @@ use hyper::{
 // Remote Monero Nodes with ZMQ enabled, sourced from: [https://github.com/hinto-janai/monero-nodes]
 // The format is an array of tuples consisting of: (IP, LOCATION, RPC_PORT, ZMQ_PORT)
 
-pub const REMOTE_NODES: [(&str, &str, &str, &str); 16] = [
+pub const REMOTE_NODES: [(&str, &str, &str, &str); 19] = [
 	("monero.10z.com.ar",           "AR - Buenos Aires F.D.",         "18089", "18084"),
 	("monero1.heitechsoft.com",     "CA - Ontario",                   "18081", "18084"),
 	("node.monerodevs.org",         "CA - Quebec",                    "18089", "18084"),
+	("oracle.netrix.cc",            "CH - Zurich",                    "18089", "18083"),
 	("node.cryptocano.de",          "DE - Lower Saxony",              "18089", "18083"),
 	("p2pmd.xmrvsbeast.com",        "DE - Hesse",                     "18081", "18083"),
 	("node2.monerodevs.org",        "FR - Occitanie",                 "18089", "18084"),