@uvrn/adapter 1.0.3 → 1.3.0

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 +3 -1
  2. package/package.json +14 -26
package/README.md CHANGED
@@ -1,9 +1,11 @@
1
1
  # @uvrn/adapter
2
2
 
3
- UVRN DRVC3 envelope adapter — wraps Delta Engine receipts in DRVC3 envelopes with EIP-191 signatures. Use this when you need to attach issuer identity and signing to core receipts without changing their deterministic hash.
3
+ UVRN DRVC3 envelope adapter — wraps Delta Engine receipts in DRVC3 envelopes with EIP-191 signatures. Use this when you need to attach issuer identity and signing to core receipts without changing their deterministic hash. **Release:** 1.3.0.
4
4
 
5
5
  **Disclaimer:** UVRN is in Alpha testing. The engine measures whether your sources agree with each other — not whether they’re correct. Final trust of output rests with the user. Use at your own risk. Have fun.
6
6
 
7
+ *UVRN makes no claims to "truth", the "verification" is the output of math — it is up to any user to decide if claim is actually "true" — Research and testing are absolutely recommended per use case and individual system!!*
8
+
7
9
  ## Install
8
10
 
9
11
  ```bash
package/package.json CHANGED
@@ -1,18 +1,11 @@
1
1
  {
2
2
  "name": "@uvrn/adapter",
3
- "version": "1.0.3",
4
- "publishConfig": {
5
- "access": "public"
6
- },
3
+ "version": "1.3.0",
4
+ "publishConfig": { "access": "public" },
7
5
  "description": "UVRN DRVC3 envelope adapter — wraps core receipts with EIP-191 signatures",
8
6
  "main": "dist/index.js",
9
7
  "types": "dist/index.d.ts",
10
- "keywords": [
11
- "uvrn",
12
- "drvc3",
13
- "eip191",
14
- "receipts"
15
- ],
8
+ "keywords": ["uvrn", "drvc3", "eip191", "receipts"],
16
9
  "license": "MIT",
17
10
  "repository": {
18
11
  "type": "git",
@@ -20,11 +13,17 @@
20
13
  "directory": "uvrn-adapter"
21
14
  },
22
15
  "homepage": "https://github.com/UVRN-org/uvrn-packages#readme",
16
+ "scripts": {
17
+ "build": "tsc",
18
+ "test": "jest",
19
+ "lint": "eslint src/**/*.ts",
20
+ "clean": "rm -rf dist"
21
+ },
23
22
  "dependencies": {
23
+ "@uvrn/core": "workspace:^",
24
24
  "ethers": "^6.0.0",
25
25
  "ajv": "^8.12.0",
26
- "ajv-formats": "^2.1.1",
27
- "@uvrn/core": "^1.0.3"
26
+ "ajv-formats": "^2.1.1"
28
27
  },
29
28
  "devDependencies": {
30
29
  "@types/jest": "^29.5.0",
@@ -33,17 +32,6 @@
33
32
  "ts-jest": "^29.1.0",
34
33
  "typescript": "^5.3.0"
35
34
  },
36
- "engines": {
37
- "node": ">=18.0.0"
38
- },
39
- "files": [
40
- "dist",
41
- "README.md"
42
- ],
43
- "scripts": {
44
- "build": "tsc",
45
- "test": "jest",
46
- "lint": "eslint src/**/*.ts",
47
- "clean": "rm -rf dist"
48
- }
49
- }
35
+ "engines": { "node": ">=18.0.0" },
36
+ "files": ["dist", "README.md"]
37
+ }