@ckb-ccc/rei 0.0.14-alpha.0 → 0.0.14-alpha.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 (3) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/README.md +16 -3
  3. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # @ckb-ccc/rei
2
2
 
3
+ ## 0.0.14-alpha.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`7ba62a0`](https://github.com/ckb-ecofund/ccc/commit/7ba62a056f17808fe5684786c00c2dff80bb7d1d)]:
8
+ - @ckb-ccc/core@0.0.14-alpha.2
9
+
10
+ ## 0.0.14-alpha.1
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies [[`5e942f8`](https://github.com/ckb-ecofund/ccc/commit/5e942f8f1ed678abdb7ab9716f5449f0714cea53), [`e5bd2ad`](https://github.com/ckb-ecofund/ccc/commit/e5bd2ad5de4b42a22c422ecfc42056750f69b88b), [`aae3e06`](https://github.com/ckb-ecofund/ccc/commit/aae3e0679fb940dd8c12ac9be12a4b53277a339d)]:
15
+ - @ckb-ccc/core@0.0.14-alpha.1
16
+
3
17
  ## 0.0.14-alpha.0
4
18
 
5
19
  ### Patch Changes
package/README.md CHANGED
@@ -15,6 +15,9 @@
15
15
  <img alt="GitHub commit activity" src="https://img.shields.io/github/commit-activity/m/ckb-ecofund/ccc" />
16
16
  <img alt="GitHub last commit" src="https://img.shields.io/github/last-commit/ckb-ecofund/ccc/master" />
17
17
  <img alt="GitHub branch check runs" src="https://img.shields.io/github/check-runs/ckb-ecofund/ccc/master" />
18
+ <a href="https://live.ckbccc.com/"><img
19
+ alt="Playground" src="https://img.shields.io/website?url=https%3A%2F%2Flive.ckbccc.com%2F&label=Playground"
20
+ /></a>
18
21
  <a href="https://app.ckbccc.com/"><img
19
22
  alt="App" src="https://img.shields.io/website?url=https%3A%2F%2Fapp.ckbccc.com%2F&label=App"
20
23
  /></a>
@@ -33,15 +36,25 @@
33
36
  Fully enabling CKB's Turing completeness and cryptographic freedom power.
34
37
  </p>
35
38
 
36
- ## Preview
39
+ ## Playground
40
+
41
+ <p align="center">
42
+ <a href="https://live.ckbccc.com/">
43
+ <img src="https://raw.githubusercontent.com/ckb-ecofund/ccc/master/assets/preview.png" width="90%" />
44
+ </a>
45
+ </p>
46
+
47
+ This project is still under active development, and we are looking forward to your feedback. You can [experiment instantly in the playground](https://live.ckbccc.com/). If you are new to the CKB, we recommend checking [Nervos CKB Docs](https://docs.nervos.org/) for basic knowledge.
48
+
49
+ ## App
37
50
 
38
51
  <p align="center">
39
52
  <a href="https://app.ckbccc.com/">
40
- <img src="https://raw.githubusercontent.com/ckb-ecofund/ccc/master/assets/preview.png" width="30%" />
53
+ <img src="https://raw.githubusercontent.com/ckb-ecofund/ccc/master/assets/appPreview.png" width="50%" />
41
54
  </a>
42
55
  </p>
43
56
 
44
- This project is still under active development, and we are looking forward to your feedback. [Try its demo now here](https://app.ckbccc.com/). It showcases how to use CCC for some basic scenarios in CKB.
57
+ For non-developers, you can also [try CCC's app now here](https://app.ckbccc.com/). It showcases how to use CCC for some basic scenarios in CKB.
45
58
 
46
59
  <h3 align="center">
47
60
  Read more about CCC on <a href="https://docs.ckbccc.com">our website</a> or <a href="https://github.com/ckb-ecofund/ccc">GitHub Repo</a>.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ckb-ccc/rei",
3
- "version": "0.0.14-alpha.0",
3
+ "version": "0.0.14-alpha.2",
4
4
  "description": "CCC - CKBer's Codebase. Common Chains Connector's support for Rei",
5
5
  "license": "MIT",
6
6
  "private": false,
@@ -45,7 +45,7 @@
45
45
  "access": "public"
46
46
  },
47
47
  "dependencies": {
48
- "@ckb-ccc/core": "0.0.14-alpha.0"
48
+ "@ckb-ccc/core": "0.0.14-alpha.2"
49
49
  },
50
50
  "scripts": {
51
51
  "build": "rimraf ./dist && rimraf ./dist.commonjs && tsc && tsc --project tsconfig.commonjs.json && copyfiles -u 2 misc/basedirs/**/* .",