From bc9fa75d6d1674a43d4410ef3fb4629d893bf643 Mon Sep 17 00:00:00 2001 From: Sentinel-Autonomybuilder Date: Sat, 2 May 2026 13:38:07 -0700 Subject: [PATCH] chore: bump to 2.7.1 Patch release shipping the consensus-audited RPC + LCD endpoint defaults from #28 and #29 to npm consumers. - package.json: 2.7.0 -> 2.7.1 - defaults.js: SDK_VERSION 2.4.0 -> 2.7.1 (was lagging package.json) No API surface changes. Defaults-only update -- consumers calling createRpcQueryClientWithFallback() / SentinelClient with no overrides will now skip the stale rpc.sentinel.co / lcd.sentinel.co endpoints that were returning balance=0 for funded addresses. --- defaults.js | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/defaults.js b/defaults.js index 41d8126..a75e3cd 100644 --- a/defaults.js +++ b/defaults.js @@ -25,7 +25,7 @@ axios.defaults.adapter = 'http'; // This is the npm/semver version for consumers. Internal development iterations // (v20, v21, v22, etc.) track feature milestones and are not exposed as exports. -export const SDK_VERSION = '2.4.0'; +export const SDK_VERSION = '2.7.1'; // ─── Timestamps ────────────────────────────────────────────────────────────── diff --git a/package.json b/package.json index 8dc320e..1e7b228 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "blue-js-sdk", - "version": "2.7.0", + "version": "2.7.1", "description": "Decentralized VPN SDK for the Sentinel P2P bandwidth network. WireGuard + V2Ray tunnels, Cosmos blockchain, 900+ nodes. Tested on Windows. macOS/Linux support included but untested.", "type": "module", "main": "index.js",