@pioneer-platform/pioneer-subscriptions 1.22.13 → 3.0.0

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.
@@ -1,5 +1,5 @@
1
1
 
2
2
  
3
- > @pioneer-platform/pioneer-subscriptions@1.22.13 build /Users/highlander/WebstormProjects/keepkey-stack/projects/pioneer/modules/pioneer/pioneer-subscriptions
3
+ > @pioneer-platform/pioneer-subscriptions@3.0.0 build /Users/highlander/WebstormProjects/keepkey-stack/projects/pioneer/modules/pioneer/pioneer-subscriptions
4
4
  > tsc -p .
5
5
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @pioneer-platform/pioneer-subscriptions
2
2
 
3
+ ## 3.0.0
4
+
5
+ ### Major Changes
6
+
7
+ - chore: fix: prevent $0 price death spiral for major cryptocurrencies
8
+
9
+ ## 2.0.0
10
+
11
+ ### Major Changes
12
+
13
+ - fix: prevent $0 price death spiral for major cryptocurrencies
14
+
3
15
  ## 1.22.13
4
16
 
5
17
  ### Patch Changes
package/IMPLEMENTATION.md CHANGED
@@ -181,7 +181,7 @@ await subscriptionManager.unsubscribe(socket.id);
181
181
 
182
182
  ```typescript
183
183
  // Connect to pioneer-server
184
- const socket = io('wss://pioneers.dev');
184
+ const socket = io('wss://api.keepkey.info');
185
185
 
186
186
  // Authenticate
187
187
  socket.emit('authenticate', { username: 'user123', queryKey: 'key...' });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pioneer-platform/pioneer-subscriptions",
3
- "version": "1.22.13",
3
+ "version": "3.0.0",
4
4
  "description": "Session-based blockchain address subscription manager for real-time payment notifications",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",