@ckb-ccc/okx 1.1.1 → 1.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.
- package/CHANGELOG.md +12 -0
- package/README.md +2 -0
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @ckb-ccc/okx
|
|
2
2
|
|
|
3
|
+
## 1.1.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/nip07@1.1.2
|
|
13
|
+
- @ckb-ccc/uni-sat@1.1.2
|
|
14
|
+
|
|
3
15
|
## 1.1.1
|
|
4
16
|
### Patch Changes
|
|
5
17
|
|
package/README.md
CHANGED
|
@@ -36,6 +36,8 @@
|
|
|
36
36
|
Fully enabling CKB's Turing completeness and cryptographic freedom power.
|
|
37
37
|
</p>
|
|
38
38
|
|
|
39
|
+
Check the [package documentation](https://docs.ckbccc.com/docs/packages/wallet-integrations/okx) and [API reference](https://api.ckbccc.com/modules/_ckb-ccc_okx.index) for more details.
|
|
40
|
+
|
|
39
41
|
<h3 align="center">
|
|
40
42
|
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>.
|
|
41
43
|
</h3>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ckb-ccc/okx",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.2",
|
|
4
4
|
"description": "CCC - CKBer's Codebase. Common Chains Connector's support for OKX",
|
|
5
5
|
"author": "Hanssen0 <hanssen0@hanssen0.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -39,6 +39,7 @@
|
|
|
39
39
|
"eslint-plugin-prettier": "^5.5.6",
|
|
40
40
|
"prettier": "^3.8.4",
|
|
41
41
|
"prettier-plugin-organize-imports": "^4.3.0",
|
|
42
|
+
"tsdown": "^0.22.3",
|
|
42
43
|
"typescript": "^6.0.3",
|
|
43
44
|
"typescript-eslint": "^8.61.1"
|
|
44
45
|
},
|
|
@@ -46,15 +47,14 @@
|
|
|
46
47
|
"access": "public"
|
|
47
48
|
},
|
|
48
49
|
"dependencies": {
|
|
49
|
-
"
|
|
50
|
-
"@ckb-ccc/
|
|
51
|
-
"@ckb-ccc/
|
|
52
|
-
"@ckb-ccc/uni-sat": "1.1.1"
|
|
50
|
+
"@ckb-ccc/core": "1.16.0",
|
|
51
|
+
"@ckb-ccc/nip07": "1.1.2",
|
|
52
|
+
"@ckb-ccc/uni-sat": "1.1.2"
|
|
53
53
|
},
|
|
54
54
|
"types": "./dist.commonjs/index.d.ts",
|
|
55
55
|
"scripts": {
|
|
56
56
|
"build": "tsdown",
|
|
57
|
-
"lint": "eslint ./src",
|
|
57
|
+
"lint": "tsc --noEmit && eslint ./src",
|
|
58
58
|
"format": "prettier --write . && eslint --fix ./src"
|
|
59
59
|
}
|
|
60
60
|
}
|