@pioneer-platform/maya-network 8.12.3 → 8.12.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +10 -0
- package/lib/index.js +2 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# @pioneer-platform/maya-network
|
|
2
2
|
|
|
3
|
+
## 8.12.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Fix invalid RPC endpoint in multi-peer fallback
|
|
8
|
+
|
|
9
|
+
- Replace non-existent rpc.mayachain.info with rpc-maya.liquify.com
|
|
10
|
+
- All 3 node endpoints now verified and working
|
|
11
|
+
- Error messages showing all attempted endpoints (already working)
|
|
12
|
+
|
|
3
13
|
## 8.12.3
|
|
4
14
|
|
|
5
15
|
### Patch Changes
|
package/lib/index.js
CHANGED
|
@@ -80,10 +80,11 @@ axiosRetry(axiosInstance, {
|
|
|
80
80
|
// Unchained API endpoint (primary)
|
|
81
81
|
var UNCHAINED_API = 'https://api.mayachain.shapeshift.com';
|
|
82
82
|
// Multiple direct node peers for fallback (in priority order)
|
|
83
|
+
// Using verified public endpoints from Maya Protocol
|
|
83
84
|
var MAYA_NODES = [
|
|
84
85
|
'https://mayanode.mayachain.info',
|
|
85
86
|
'https://tendermint.mayachain.info',
|
|
86
|
-
'https://rpc.
|
|
87
|
+
'https://rpc-maya.liquify.com' // Community node (faster response)
|
|
87
88
|
];
|
|
88
89
|
// Fallback to Midgard for pool data (not available in Unchained)
|
|
89
90
|
var MIDGARD_API = 'https://midgard.mayachain.info/v2';
|