@gvnrdao/dh-sdk 0.0.336 → 0.0.337
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/browser/dist/browser.js +1 -1
- package/dist/index.js +11 -1
- package/dist/index.mjs +11 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -5573,7 +5573,17 @@ function getSepoliaConfig() {
|
|
|
5573
5573
|
function getMainnetConfig() {
|
|
5574
5574
|
return {
|
|
5575
5575
|
mode: "service",
|
|
5576
|
-
|
|
5576
|
+
// Cutover 2026-09-08: the product's own domain. `ops.gvnr.xyz` still serves the same
|
|
5577
|
+
// broker and always will — every already-installed copy of this package calls it, so
|
|
5578
|
+
// it can never be retired. This changes what NEW installs default to, nothing else.
|
|
5579
|
+
//
|
|
5580
|
+
// Safe only because the server accepts the new audience ALREADY: the SDK derives the
|
|
5581
|
+
// login audience from this endpoint (`server-session.ts` — `loginAudience ??
|
|
5582
|
+
// serviceEndpoint`) and lit-ops-server FAILS CLOSED on an unknown one. Verified live
|
|
5583
|
+
// before this edit: DH_ACCEPTED_LOGIN_AUDIENCES on the deployed revision lists
|
|
5584
|
+
// https://ops.diamondhands.credit. Publishing this ahead of that would lock out every
|
|
5585
|
+
// client that installed it.
|
|
5586
|
+
serviceEndpoint: "https://ops.diamondhands.credit",
|
|
5577
5587
|
chainId: 1,
|
|
5578
5588
|
name: "mainnet",
|
|
5579
5589
|
// No default RPC: mainnet runs in service mode (serviceEndpoint above), so
|
package/dist/index.mjs
CHANGED
|
@@ -5579,7 +5579,17 @@ function getSepoliaConfig() {
|
|
|
5579
5579
|
function getMainnetConfig() {
|
|
5580
5580
|
return {
|
|
5581
5581
|
mode: "service",
|
|
5582
|
-
|
|
5582
|
+
// Cutover 2026-09-08: the product's own domain. `ops.gvnr.xyz` still serves the same
|
|
5583
|
+
// broker and always will — every already-installed copy of this package calls it, so
|
|
5584
|
+
// it can never be retired. This changes what NEW installs default to, nothing else.
|
|
5585
|
+
//
|
|
5586
|
+
// Safe only because the server accepts the new audience ALREADY: the SDK derives the
|
|
5587
|
+
// login audience from this endpoint (`server-session.ts` — `loginAudience ??
|
|
5588
|
+
// serviceEndpoint`) and lit-ops-server FAILS CLOSED on an unknown one. Verified live
|
|
5589
|
+
// before this edit: DH_ACCEPTED_LOGIN_AUDIENCES on the deployed revision lists
|
|
5590
|
+
// https://ops.diamondhands.credit. Publishing this ahead of that would lock out every
|
|
5591
|
+
// client that installed it.
|
|
5592
|
+
serviceEndpoint: "https://ops.diamondhands.credit",
|
|
5583
5593
|
chainId: 1,
|
|
5584
5594
|
name: "mainnet",
|
|
5585
5595
|
// No default RPC: mainnet runs in service mode (serviceEndpoint above), so
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gvnrdao/dh-sdk",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"description": "TypeScript SDK for Diamond Hands Protocol
|
|
3
|
+
"version": "0.0.337",
|
|
4
|
+
"description": "TypeScript SDK for Diamond Hands Protocol",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"module": "dist/index.mjs",
|