@neuraiproject/neurai-assets 1.4.0 → 1.4.1
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/README.md +5 -0
- package/dist/NeuraiAssets.global.js +5 -1
- package/dist/NeuraiAssets.global.js.map +1 -1
- package/dist/browser.js +5 -1
- package/dist/browser.js.map +1 -1
- package/dist/index.cjs +5 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +5 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,6 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
Complete asset management library for Neurai blockchain. Supports creation, reissuance, and queries for all asset types in a non-custodial way.
|
|
4
4
|
|
|
5
|
+
> **1.4.1**: fix — the constructor dropped `config.assetMarker`, so the
|
|
6
|
+
> wallet-level override documented in 1.4.0 never reached the builders
|
|
7
|
+
> (per-operation `params.assetMarker` was unaffected). Precedence is now
|
|
8
|
+
> effective: `params.assetMarker` > `config.assetMarker` > node.
|
|
9
|
+
>
|
|
5
10
|
> **1.4.0**: NIP-040 `assetMarker` in `localRawBuild` (see below); RPC
|
|
6
11
|
> rejection messages from `@neuraiproject/neurai-rpc` >= 0.5 are surfaced
|
|
7
12
|
> correctly (they carry no `.message`); name-length caps now mirror the node
|
|
@@ -7888,7 +7888,11 @@ var NeuraiAssetsBundle = (function (exports) {
|
|
|
7888
7888
|
network: config.network || 'xna',
|
|
7889
7889
|
addresses: config.addresses || [],
|
|
7890
7890
|
changeAddress: config.changeAddress || null,
|
|
7891
|
-
toAddress: config.toAddress || null
|
|
7891
|
+
toAddress: config.toAddress || null,
|
|
7892
|
+
// NIP-040: documented since 1.4.0 but dropped here until 1.4.1, which
|
|
7893
|
+
// made the config-level override silently inoperative (per-operation
|
|
7894
|
+
// params.assetMarker was unaffected).
|
|
7895
|
+
assetMarker: config.assetMarker
|
|
7892
7896
|
};
|
|
7893
7897
|
|
|
7894
7898
|
// Initialize query interface
|