@ckb-ccc/udt 0.2.0 → 0.2.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 CHANGED
@@ -1,5 +1,23 @@
1
1
  # @ckb-ccc/udt
2
2
 
3
+ ## 0.2.2
4
+ ### Patch Changes
5
+
6
+
7
+
8
+ - [`b9cc002`](https://github.com/ckb-devrel/ccc/commit/b9cc0027121a5a857f13727965ce688440d2a61f) Thanks [@Hanssen0](https://github.com/Hanssen0)! - chore: move tsdown to devDependencies (PR: [#422](https://github.com/ckb-devrel/ccc/issues/422))
9
+
10
+ - Updated dependencies [[`209f332`](https://github.com/ckb-devrel/ccc/commit/209f3322ffc22860b1ad43f31cbf51322493b3d9), [`ac8dba2`](https://github.com/ckb-devrel/ccc/commit/ac8dba21ab899b707e46236aa40b9e12566f9c8a), [`52309a4`](https://github.com/ckb-devrel/ccc/commit/52309a442a48f1c376fa65813ba56bcceb405b90), [`b9cc002`](https://github.com/ckb-devrel/ccc/commit/b9cc0027121a5a857f13727965ce688440d2a61f)]:
11
+ - @ckb-ccc/core@1.16.0
12
+ - @ckb-ccc/ssri@0.3.2
13
+
14
+ ## 0.2.1
15
+ ### Patch Changes
16
+
17
+ - Updated dependencies [[`98597b5`](https://github.com/ckb-devrel/ccc/commit/98597b56eb6eeb029b72ea963649155dfe1f4215), [`bef9d0a`](https://github.com/ckb-devrel/ccc/commit/bef9d0a037fba045eab24d7ad55400fa26fbbffd), [`8067a08`](https://github.com/ckb-devrel/ccc/commit/8067a08de041ffd7a624adea0b594eb283e2634e), [`7019a1a`](https://github.com/ckb-devrel/ccc/commit/7019a1a7f765dfa7940cdfe51474bcd347f18ec6), [`9beee4d`](https://github.com/ckb-devrel/ccc/commit/9beee4d7f39e4b4b19919c5feb86e1c8be0e089d), [`2d4e701`](https://github.com/ckb-devrel/ccc/commit/2d4e701e54e9bf5247c2363490009acc5606c0ea), [`0eb8435`](https://github.com/ckb-devrel/ccc/commit/0eb8435d9694602fce3b7e6a95f04f793452a88d)]:
18
+ - @ckb-ccc/core@1.15.0
19
+ - @ckb-ccc/ssri@0.3.1
20
+
3
21
  ## 0.2.0
4
22
  ### Minor Changes
5
23
 
package/README.md CHANGED
@@ -96,6 +96,10 @@ await completedTx.completeFeeBy(signer);
96
96
  const transferTxHash = await signer.sendTransaction(completedTx);
97
97
  ```
98
98
 
99
+ ## Learn More?
100
+
101
+ Check the [package documentation](https://docs.ckbccc.com/docs/packages/protocol-sdks/udt) and [API reference](https://api.ckbccc.com/classes/_ckb-ccc_udt.udt) for more details.
102
+
99
103
  <h3 align="center">
100
104
  Read more about CCC on <a href="https://docs.ckbccc.com">our website</a> or <a href="https://github.com/ckb-devrel/ccc">GitHub Repo</a>.
101
105
  </h3>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ckb-ccc/udt",
3
- "version": "0.2.0",
3
+ "version": "0.2.2",
4
4
  "description": "UDT",
5
5
  "author": "Alive24 <xct24@live.com>",
6
6
  "license": "MIT",
@@ -31,6 +31,7 @@
31
31
  "eslint-plugin-prettier": "^5.5.6",
32
32
  "prettier": "^3.8.4",
33
33
  "prettier-plugin-organize-imports": "^4.3.0",
34
+ "tsdown": "^0.22.3",
34
35
  "typescript": "^6.0.3",
35
36
  "typescript-eslint": "^8.61.1"
36
37
  },
@@ -38,15 +39,14 @@
38
39
  "access": "public"
39
40
  },
40
41
  "dependencies": {
41
- "tsdown": "^0.22.3",
42
- "@ckb-ccc/ssri": "0.3.0",
43
- "@ckb-ccc/core": "1.14.0"
42
+ "@ckb-ccc/core": "1.16.0",
43
+ "@ckb-ccc/ssri": "0.3.2"
44
44
  },
45
45
  "types": "./dist.commonjs/index.d.ts",
46
46
  "scripts": {
47
47
  "test": "jest",
48
48
  "build": "tsdown",
49
- "lint": "eslint ./src",
49
+ "lint": "tsc --noEmit && eslint ./src",
50
50
  "format": "prettier --write . && eslint --fix ./src"
51
51
  }
52
52
  }