Problem
The default testnet DAPI addresses hardcoded in packages/wasm-sdk/src/sdk.rs are all stale. This causes requests in js-evo-sdk to time out, since the SDK attempts to connect to nodes that no longer exist at those IPs.
The 8 hardcoded IPs were sourced from https://quorums.testnet.networks.dash.org/masternodes but none appear in the current live response:
| Stale IP |
Status |
52.12.176.90 |
Not found |
35.82.197.197 |
Not found |
44.240.98.102 |
Not found |
52.34.144.50 |
Not found |
44.239.39.153 |
Not found |
34.214.48.68 |
Not found |
54.149.33.167 |
Not found |
52.24.124.162 |
Not found |
Symptom
SDK calls via js-evo-sdk time out when using the default testnet configuration, since all default addresses resolve to unreachable hosts.
Proposed Fix
Replace the stale IPs in default_testnet_addresses() with current enabled nodes from https://quorums.testnet.networks.dash.org/masternodes (DAPI port 1443). As of 2026-04-13, active nodes are in the 68.67.122.x range.
Problem
The default testnet DAPI addresses hardcoded in
packages/wasm-sdk/src/sdk.rsare all stale. This causes requests injs-evo-sdkto time out, since the SDK attempts to connect to nodes that no longer exist at those IPs.The 8 hardcoded IPs were sourced from
https://quorums.testnet.networks.dash.org/masternodesbut none appear in the current live response:52.12.176.9035.82.197.19744.240.98.10252.34.144.5044.239.39.15334.214.48.6854.149.33.16752.24.124.162Symptom
SDK calls via
js-evo-sdktime out when using the default testnet configuration, since all default addresses resolve to unreachable hosts.Proposed Fix
Replace the stale IPs in
default_testnet_addresses()with current enabled nodes fromhttps://quorums.testnet.networks.dash.org/masternodes(DAPI port1443). As of 2026-04-13, active nodes are in the68.67.122.xrange.