@arcadiasystems/morse-sdk 0.7.0 → 0.7.2
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 +20 -0
- package/README.md +7 -2
- package/dist/compatibility.d.ts +9 -1
- package/dist/compatibility.d.ts.map +1 -1
- package/dist/compatibility.js +10 -2
- package/dist/compatibility.js.map +1 -1
- package/dist/config.d.ts.map +1 -1
- package/dist/config.js +10 -0
- package/dist/config.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,26 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to `morse-sdk` will be documented in this file. Format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/) and the project follows [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
4
4
|
|
|
5
|
+
## [0.7.2] - 2026-09-10
|
|
6
|
+
|
|
7
|
+
Documentation accuracy pass. No behaviour changes.
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
|
|
11
|
+
- **`getRecipientFileSealPrefix` was absent from the API reference.** It shipped in 0.7.0 as the only reliable way to tell an encrypted `RecipientFile` from a public one, added precisely because `members` cannot serve that purpose (the contract auto-includes the owner, so it is never empty). A reader of the README had no way to discover it, which is how the same trap reached morse-cli in the first place. Now listed under the reader table.
|
|
12
|
+
- **Compatibility table stopped at 0.5.x** and the pin example still suggested `~0.4.0`. Adds 0.6.x and 0.7.x rows and corrects the pin.
|
|
13
|
+
- **The note under that table explained the `Sui network` column with reasoning that predated the mainnet smokes.** It said the column reads `testnet` "even though mainnet addresses ship", implying mainnet was simply unverified. It now says what is actually true: publications, publisher caps, collections, Walrus blob and quilt uploads, and the entry lifecycle in both collection modes were verified against live mainnet on 2026-09-09, and the column reads testnet only because the two Seal phases cannot run on mainnet without commercial credentials, so no fully green mainnet run exists to record.
|
|
14
|
+
- `TESTED_SUBSTRATE.verifiedOn` was four months stale at `2026-05-10`; it is now `2026-09-09`. `suiNetwork` stays `"testnet"` and its doc comment now explains that this records where the suite passes in full, not that mainnet is untested.
|
|
15
|
+
- `CONTRIBUTING.md` described the smoke suite as testnet-only, predating `MORSE_NETWORK`, `MORSE_ALLOW_MAINNET` and `WALRUS_UPLOAD_RELAY`. It now documents all three and states why phases 7 and 8 cannot pass on mainnet.
|
|
16
|
+
|
|
17
|
+
## [0.7.1] - 2026-09-10
|
|
18
|
+
|
|
19
|
+
### Fixed
|
|
20
|
+
|
|
21
|
+
- **A misspelled network now says so.** `morseConfig({ network: "mainet" })` fell through to the missing-deployment path and answered "Supply packageId, originalPackageId, and registryId for a custom deployment", which is wrong advice for a typo: it points the caller at configuring a fork when they meant `mainnet`. Unrecognised networks are now rejected up front with `Unknown network "mainet". Use one of: mainnet, testnet, localnet.`
|
|
22
|
+
|
|
23
|
+
Typed callers were already protected by the `Network` union, so this only ever bit JavaScript consumers and anyone passing a network read from an environment variable or config file, which is exactly where a typo is most likely and least visible.
|
|
24
|
+
|
|
5
25
|
## [0.7.0] - 2026-09-09
|
|
6
26
|
|
|
7
27
|
### Added
|
package/README.md
CHANGED
|
@@ -40,13 +40,17 @@ morse-sdk is built and tested against specific minor versions of its Mysten subs
|
|
|
40
40
|
|
|
41
41
|
| morse-sdk | `@mysten/sui` | `@mysten/walrus` | `@mysten/seal` | Sui network | Verified |
|
|
42
42
|
| --------- | ------------- | ---------------- | -------------- | ----------- | --------- |
|
|
43
|
+
| 0.7.x | 2.16.2-2.16.x | 1.1.6-1.1.x | 1.1.3-1.1.x | testnet | 2026-09-09 |
|
|
44
|
+
| 0.6.x | 2.16.2-2.16.x | 1.1.6-1.1.x | 1.1.3-1.1.x | testnet | 2026-09-09 |
|
|
43
45
|
| 0.5.x | 2.16.2-2.16.x | 1.1.6-1.1.x | 1.1.3-1.1.x | testnet | 2026-06-05 |
|
|
44
46
|
| 0.4.x | 2.16.2-2.16.x | 1.1.6-1.1.x | 1.1.3-1.1.x | testnet | 2026-06-05 |
|
|
45
47
|
| 0.1.x | 2.16.2-2.16.x | 1.1.6-1.1.x | 1.1.3-1.1.x | testnet | 2026-05-10 |
|
|
46
48
|
|
|
47
|
-
Mysten ships breaking changes inside major version boundaries. Newer minors (e.g. `@mysten/walrus@1.2.x`, `@mysten/sui@2.17+`) are outside the verified ranges and may produce runtime errors; morse-sdk needs a coordinated bump and re-verification before a new Mysten minor is supported. Pin via `bun add @arcadiasystems/morse-sdk@~0.
|
|
49
|
+
Mysten ships breaking changes inside major version boundaries. Newer minors (e.g. `@mysten/walrus@1.2.x`, `@mysten/sui@2.17+`) are outside the verified ranges and may produce runtime errors; morse-sdk needs a coordinated bump and re-verification before a new Mysten minor is supported. Pin via `bun add @arcadiasystems/morse-sdk@~0.7.0` if you want patch updates without surprise minors.
|
|
48
50
|
|
|
49
|
-
The verification protocol is documented in [`CONTRIBUTING.md`](https://github.com/arcadiasystems/morse-dcms/blob/main/morse-sdk/CONTRIBUTING.md): every Mysten dep bump runs the full `scripts/phase-N-*.ts` smoke suite
|
|
51
|
+
The verification protocol is documented in [`CONTRIBUTING.md`](https://github.com/arcadiasystems/morse-dcms/blob/main/morse-sdk/CONTRIBUTING.md): every Mysten dep bump runs the full `scripts/phase-N-*.ts` smoke suite before the bump lands.
|
|
52
|
+
|
|
53
|
+
The `Sui network` column records where the suite passes **in full**, which is testnet. Most of it also passes on mainnet: publications, publisher caps, collections, Walrus blob and quilt uploads, and the entry lifecycle in both collection modes were all verified against live mainnet on 2026-09-09. The two Seal phases cannot run there, because mainnet has no key servers this SDK can reach without commercial credentials, so mainnet has no fully green run to record. `TESTED_SUBSTRATE.suiNetwork` reports the same thing programmatically.
|
|
50
54
|
|
|
51
55
|
### Runtime requirements
|
|
52
56
|
|
|
@@ -270,6 +274,7 @@ The full public surface, grouped by concern. Every export carries a JSDoc on its
|
|
|
270
274
|
| `reader.scanEntries` | Async-iterator over every entry in a collection. |
|
|
271
275
|
| `RpcRecipientFilesReader.fromMorseConfig(config, client)` | Construct a reader for the `recipient_file` module. |
|
|
272
276
|
| `filesReader.getRecipientFile(id)` | Live single-object read (parses embedded `members`, blob refs). |
|
|
277
|
+
| `filesReader.getRecipientFileSealPrefix(id)` | The file's Seal id prefix, or `null`. The only reliable "is this encrypted" signal. Costs an extra round trip, so it is a separate call. |
|
|
273
278
|
| `buildRecipientFileEventTypes(originPackageId)` | Fully-qualified event type strings for the `RecipientFile*` events; pass `config.recipientFileEventOriginPackageId`. |
|
|
274
279
|
| `reconcileRecipientFilesOwnedBy(events, address, eventTypes)` / `reconcileRecipientFilesAccessibleBy(...)` | Pure event-reconciliation helpers — bring your own indexer, get current file sets back. |
|
|
275
280
|
|
package/dist/compatibility.d.ts
CHANGED
|
@@ -11,7 +11,15 @@
|
|
|
11
11
|
* their own diagnostics, log it during initialization, or compare it
|
|
12
12
|
* against bundler-resolved versions in CI.
|
|
13
13
|
*/
|
|
14
|
-
/**
|
|
14
|
+
/**
|
|
15
|
+
* Mysten substrate library versions the smoke suite passes against in full.
|
|
16
|
+
*
|
|
17
|
+
* `suiNetwork` stays `"testnet"` deliberately, and is not a claim that mainnet
|
|
18
|
+
* is unverified. Most of the suite does pass on mainnet; the two Seal phases
|
|
19
|
+
* cannot run there, because mainnet has no key servers this SDK can reach
|
|
20
|
+
* without commercial credentials. So testnet is the only network with a fully
|
|
21
|
+
* green run, and that is what this records.
|
|
22
|
+
*/
|
|
15
23
|
export declare const TESTED_SUBSTRATE: {
|
|
16
24
|
readonly "@mysten/sui": string;
|
|
17
25
|
readonly "@mysten/seal": string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"compatibility.d.ts","sourceRoot":"","sources":["../src/compatibility.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;GAYG;AAEH
|
|
1
|
+
{"version":3,"file":"compatibility.d.ts","sourceRoot":"","sources":["../src/compatibility.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;GAYG;AAEH;;;;;;;;GAQG;AACH,eAAO,MAAM,gBAAgB,EAAE;IAC9B,QAAQ,CAAC,aAAa,EAAE,MAAM,CAAC;IAC/B,QAAQ,CAAC,cAAc,EAAE,MAAM,CAAC;IAChC,QAAQ,CAAC,gBAAgB,EAAE,MAAM,CAAC;IAClC,QAAQ,CAAC,UAAU,EAAE,MAAM,CAAC;IAC5B,QAAQ,CAAC,UAAU,EAAE,SAAS,CAAC;CAO/B,CAAC"}
|
package/dist/compatibility.js
CHANGED
|
@@ -11,12 +11,20 @@
|
|
|
11
11
|
* their own diagnostics, log it during initialization, or compare it
|
|
12
12
|
* against bundler-resolved versions in CI.
|
|
13
13
|
*/
|
|
14
|
-
/**
|
|
14
|
+
/**
|
|
15
|
+
* Mysten substrate library versions the smoke suite passes against in full.
|
|
16
|
+
*
|
|
17
|
+
* `suiNetwork` stays `"testnet"` deliberately, and is not a claim that mainnet
|
|
18
|
+
* is unverified. Most of the suite does pass on mainnet; the two Seal phases
|
|
19
|
+
* cannot run there, because mainnet has no key servers this SDK can reach
|
|
20
|
+
* without commercial credentials. So testnet is the only network with a fully
|
|
21
|
+
* green run, and that is what this records.
|
|
22
|
+
*/
|
|
15
23
|
export const TESTED_SUBSTRATE = {
|
|
16
24
|
"@mysten/sui": "2.16.2",
|
|
17
25
|
"@mysten/seal": "1.1.3",
|
|
18
26
|
"@mysten/walrus": "1.1.6",
|
|
19
|
-
verifiedOn: "2026-
|
|
27
|
+
verifiedOn: "2026-09-09",
|
|
20
28
|
suiNetwork: "testnet",
|
|
21
29
|
};
|
|
22
30
|
//# sourceMappingURL=compatibility.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"compatibility.js","sourceRoot":"","sources":["../src/compatibility.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;GAYG;AAEH
|
|
1
|
+
{"version":3,"file":"compatibility.js","sourceRoot":"","sources":["../src/compatibility.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;GAYG;AAEH;;;;;;;;GAQG;AACH,MAAM,CAAC,MAAM,gBAAgB,GAMzB;IACH,aAAa,EAAE,QAAQ;IACvB,cAAc,EAAE,OAAO;IACvB,gBAAgB,EAAE,OAAO;IACzB,UAAU,EAAE,YAAY;IACxB,UAAU,EAAE,SAAS;CACrB,CAAC"}
|
package/dist/config.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../src/config.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,cAAc,CAAC;AAIpD,OAAO,KAAK,EAAE,SAAS,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAIxD,8BAA8B;AAC9B,eAAO,MAAM,OAAO;;;;CAIV,CAAC;AACX,MAAM,MAAM,OAAO,GAAG,CAAC,OAAO,OAAO,CAAC,CAAC,MAAM,OAAO,OAAO,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../src/config.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,cAAc,CAAC;AAIpD,OAAO,KAAK,EAAE,SAAS,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAIxD,8BAA8B;AAC9B,eAAO,MAAM,OAAO;;;;CAIV,CAAC;AACX,MAAM,MAAM,OAAO,GAAG,CAAC,OAAO,OAAO,CAAC,CAAC,MAAM,OAAO,OAAO,CAAC,CAAC;AAO7D,2FAA2F;AAC3F,eAAO,MAAM,gBAAgB,EAAE,QAAQ,CAAC,MAAM,CAAC,OAAO,EAAE,MAAM,CAAC,CAI9D,CAAC;AAIF;;;;;;;;;;;GAWG;AACH;;;;;;;;GAQG;AACH,MAAM,WAAW,eAAe;IAC/B,6DAA6D;IAC7D,QAAQ,CAAC,UAAU,EAAE,MAAM,CAAC;IAC5B,sEAAsE;IACtE,QAAQ,CAAC,SAAS,CAAC,EAAE,MAAM,CAAC;CAC5B;AAED,MAAM,WAAW,aAAa;IAC7B,QAAQ,CAAC,OAAO,EAAE,OAAO,CAAC;IAC1B,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAC;IACxB,QAAQ,CAAC,SAAS,EAAE,SAAS,CAAC;IAC9B,QAAQ,CAAC,iBAAiB,CAAC,EAAE,SAAS,CAAC;IACvC;;;;;;;;OAQG;IACH,QAAQ,CAAC,iCAAiC,CAAC,EAAE,SAAS,CAAC;IACvD,QAAQ,CAAC,UAAU,EAAE,UAAU,CAAC;IAChC;;;;;;;;;;;;;;;;;OAiBG;IACH,QAAQ,CAAC,cAAc,EAAE,SAAS,eAAe,EAAE,CAAC;IACpD;;;;;;OAMG;IACH,QAAQ,CAAC,eAAe,EAAE,eAAe,CAAC;CAC1C;AAED;;;;GAIG;AACH,MAAM,MAAM,kBAAkB,GAAG,IAAI,CACpC,aAAa,EACb,WAAW,GAAG,mBAAmB,CACjC,CAAC;AAEF;;;;;;;;GAQG;AACH,MAAM,MAAM,wBAAwB,GAAG,kBAAkB,GACxD,IAAI,CAAC,aAAa,EAAE,mCAAmC,CAAC,CAAC;AAI1D;;;;;;;;;;;;;;;;;;;;;;GAsBG;AACH,eAAO,MAAM,sBAAsB,EAAE,SAAS,eAAe,EAO5D,CAAC;AA0GF;;;;GAIG;AACH,MAAM,WAAW,kBAAkB;IAClC,QAAQ,CAAC,OAAO,EAAE,OAAO,CAAC;IAC1B,QAAQ,CAAC,MAAM,CAAC,EAAE,MAAM,CAAC;IACzB,QAAQ,CAAC,SAAS,CAAC,EAAE,SAAS,CAAC;IAC/B,QAAQ,CAAC,iBAAiB,CAAC,EAAE,SAAS,CAAC;IACvC,QAAQ,CAAC,iCAAiC,CAAC,EAAE,SAAS,CAAC;IACvD,QAAQ,CAAC,UAAU,CAAC,EAAE,UAAU,CAAC;IACjC,QAAQ,CAAC,cAAc,CAAC,EAAE,SAAS,eAAe,EAAE,CAAC;IACrD,QAAQ,CAAC,eAAe,CAAC,EAAE,eAAe,CAAC;CAC3C;AAED;;;;;GAKG;AACH,wBAAgB,WAAW,CAAC,OAAO,EAAE,kBAAkB,GAAG,aAAa,CAuCtE"}
|
package/dist/config.js
CHANGED
|
@@ -11,6 +11,8 @@ export const Network = {
|
|
|
11
11
|
Testnet: "testnet",
|
|
12
12
|
Localnet: "localnet",
|
|
13
13
|
};
|
|
14
|
+
/** The networks `morseConfig` accepts; anything else is a caller mistake. */
|
|
15
|
+
const KNOWN_NETWORKS = new Set(Object.values(Network));
|
|
14
16
|
// Default RPC endpoints
|
|
15
17
|
/** Public Sui RPC endpoints per network. Override via `NetworkConfig.rpcUrl` if needed. */
|
|
16
18
|
export const DEFAULT_RPC_URLS = {
|
|
@@ -129,6 +131,14 @@ const KNOWN_DEPLOYMENTS = {
|
|
|
129
131
|
* and `packageId` and `registryId` are not supplied as overrides.
|
|
130
132
|
*/
|
|
131
133
|
export function morseConfig(options) {
|
|
134
|
+
// Reject an unrecognised network before the deployment lookup. Without this
|
|
135
|
+
// a typo like "mainet" falls through to the missing-deployment error, which
|
|
136
|
+
// tells the caller to supply a custom packageId: actively wrong advice for
|
|
137
|
+
// what is really a spelling mistake. TypeScript catches it for typed
|
|
138
|
+
// callers, but not for JavaScript ones or a value read from env or config.
|
|
139
|
+
if (!KNOWN_NETWORKS.has(options.network)) {
|
|
140
|
+
throw new ConfigurationError(`Unknown network "${options.network}". Use one of: ${[...KNOWN_NETWORKS].join(", ")}.`);
|
|
141
|
+
}
|
|
132
142
|
const deployment = KNOWN_DEPLOYMENTS[options.network];
|
|
133
143
|
const packageId = options.packageId ?? deployment?.packageId;
|
|
134
144
|
const originalPackageId = options.originalPackageId ?? deployment?.originalPackageId;
|
package/dist/config.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"config.js","sourceRoot":"","sources":["../src/config.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"config.js","sourceRoot":"","sources":["../src/config.ts"],"names":[],"mappings":"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"}
|