@inversealtruism/csd-client 0.1.0 → 0.1.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.
Files changed (2) hide show
  1. package/README.md +11 -0
  2. package/package.json +5 -4
package/README.md ADDED
@@ -0,0 +1,11 @@
1
+ # @inversealtruism/csd-client
2
+
3
+ Typed HTTP RPC client for a Compute Substrate node (or the Cairn proxy / a discovered gateway): tip, block, tx, utxos, proposals, top, domains, mempool, submit, templates.
4
+
5
+ Part of the [Compute Substrate SDK](https://github.com/InverseAltruism/csd-sdk) (L0). Zero `Buffer` — runs in Node, browsers, and MV3 service workers. Deps: `@noble/*` only.
6
+
7
+ ```
8
+ npm i @inversealtruism/csd-client
9
+ ```
10
+
11
+ See the [repo README](https://github.com/InverseAltruism/csd-sdk#readme) and [examples/quickstart.mjs](https://github.com/InverseAltruism/csd-sdk/blob/master/examples/quickstart.mjs) for usage. MIT.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inversealtruism/csd-client",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "Typed HTTP RPC client for a Compute Substrate node (or the Cairn proxy / a discovered gateway) — tip/block/tx/utxos/proposals/top/domains/mempool/submit/templates.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
@@ -15,15 +15,16 @@
15
15
  },
16
16
  "files": [
17
17
  "dist",
18
- "LICENSE"
18
+ "LICENSE",
19
+ "README.md"
19
20
  ],
20
21
  "dependencies": {
21
- "@inversealtruism/csd-codec": "0.1.0"
22
+ "@inversealtruism/csd-codec": "0.1.2"
22
23
  },
23
24
  "license": "MIT",
24
25
  "sideEffects": false,
25
26
  "devDependencies": {
26
- "@inversealtruism/csd-vectors": "0.1.0"
27
+ "@inversealtruism/csd-vectors": "0.1.2"
27
28
  },
28
29
  "publishConfig": {
29
30
  "access": "public"