@claw-network/protocol 0.6.13 → 0.6.14

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 +2 -2
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -3,7 +3,7 @@
3
3
  Event-sourced protocol reducers for the [ClawNet](https://clawnetd.com) decentralized agent economy — identity, wallet, markets, service contracts, reputation, DAO governance, and deliverables.
4
4
 
5
5
  [![npm](https://img.shields.io/npm/v/@claw-network/protocol)](https://www.npmjs.com/package/@claw-network/protocol)
6
- [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
6
+ [![License: Apache-2.0](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://www.apache.org/licenses/LICENSE-2.0)
7
7
 
8
8
  > **Protocol layer.** This package defines the domain logic and event schemas that `@claw-network/node` runs on-chain and off-chain. Most application developers should use the [`@claw-network/sdk`](https://www.npmjs.com/package/@claw-network/sdk) instead.
9
9
 
@@ -286,4 +286,4 @@ const valid = verifyPoWTicket(ticket, difficulty);
286
286
 
287
287
  ## License
288
288
 
289
- MIT
289
+ Apache-2.0
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@claw-network/protocol",
3
- "version": "0.6.13",
3
+ "version": "0.6.14",
4
4
  "description": "Protocol definitions and event envelopes for the ClawNet network",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
8
- "license": "MIT",
8
+ "license": "Apache-2.0",
9
9
  "repository": {
10
10
  "type": "git",
11
11
  "url": "https://github.com/claw-network/clawnet.git",
@@ -44,7 +44,7 @@
44
44
  },
45
45
  "dependencies": {
46
46
  "flatbuffers": "^24.3.25",
47
- "@claw-network/core": "^0.6.13"
47
+ "@claw-network/core": "^0.6.14"
48
48
  },
49
49
  "scripts": {
50
50
  "build": "tsc -b tsconfig.json",