@ckb-ccc/ccc 0.0.13-alpha.4 → 0.0.13-alpha.6

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,39 @@
1
1
  # @ckb-ccc/ccc
2
2
 
3
+ ## 0.0.13-alpha.6
4
+
5
+ ### Patch Changes
6
+
7
+ - [#25](https://github.com/ckb-ecofund/ccc/pull/25) [`69c10fd`](https://github.com/ckb-ecofund/ccc/commit/69c10fdfcd507433c13b15d17015dca4687afb97) Thanks [@Hanssen0](https://github.com/Hanssen0)! - feat(utxo-global): switchNetwork
8
+
9
+ - [`44c7fee`](https://github.com/ckb-ecofund/ccc/commit/44c7feed37369836268fba21884418682f15254b) Thanks [@Hanssen0](https://github.com/Hanssen0)! - fix(core): completeInputs
10
+
11
+ - Updated dependencies [[`69c10fd`](https://github.com/ckb-ecofund/ccc/commit/69c10fdfcd507433c13b15d17015dca4687afb97), [`44c7fee`](https://github.com/ckb-ecofund/ccc/commit/44c7feed37369836268fba21884418682f15254b)]:
12
+ - @ckb-ccc/utxo-global@0.0.13-alpha.6
13
+ - @ckb-ccc/core@0.0.13-alpha.6
14
+ - @ckb-ccc/eip6963@0.0.13-alpha.6
15
+ - @ckb-ccc/joy-id@0.0.13-alpha.6
16
+ - @ckb-ccc/nip07@0.0.13-alpha.6
17
+ - @ckb-ccc/okx@0.0.13-alpha.6
18
+ - @ckb-ccc/rei@0.0.13-alpha.6
19
+ - @ckb-ccc/uni-sat@0.0.13-alpha.6
20
+
21
+ ## 0.0.13-alpha.5
22
+
23
+ ### Patch Changes
24
+
25
+ - [`6d62032`](https://github.com/ckb-ecofund/ccc/commit/6d620326f42f8c48eff9deb95578cf28d7bf5c97) Thanks [@Hanssen0](https://github.com/Hanssen0)! - fix(core): recordCells should not add usableCells
26
+
27
+ - Updated dependencies [[`6d62032`](https://github.com/ckb-ecofund/ccc/commit/6d620326f42f8c48eff9deb95578cf28d7bf5c97)]:
28
+ - @ckb-ccc/core@0.0.13-alpha.5
29
+ - @ckb-ccc/eip6963@0.0.13-alpha.5
30
+ - @ckb-ccc/joy-id@0.0.13-alpha.5
31
+ - @ckb-ccc/nip07@0.0.13-alpha.5
32
+ - @ckb-ccc/okx@0.0.13-alpha.5
33
+ - @ckb-ccc/rei@0.0.13-alpha.5
34
+ - @ckb-ccc/uni-sat@0.0.13-alpha.5
35
+ - @ckb-ccc/utxo-global@0.0.13-alpha.5
36
+
3
37
  ## 0.0.13-alpha.4
4
38
 
5
39
  ### Patch Changes
@@ -68,7 +68,7 @@ export class SignersController {
68
68
  }
69
69
  async addRealSigners(context) {
70
70
  const { appName, appIcon, client, preferredNetworks } = context;
71
- await this.addSigners("UTXO Global Wallet", UTXO_GLOBAL_SVG, UtxoGlobal.getUtxoGlobalSigners(client), context);
71
+ await this.addSigners("UTXO Global Wallet", UTXO_GLOBAL_SVG, UtxoGlobal.getUtxoGlobalSigners(client, preferredNetworks), context);
72
72
  await this.addSigners("Rei Wallet", REI_SVG, Rei.getReiSigners(client), context);
73
73
  await this.addSigners("JoyID Passkey", JOY_ID_SVG, JoyId.getJoyIdSigners(client, appName, appIcon, preferredNetworks), context);
74
74
  await this.addSigners("UniSat", UNI_SAT_SVG, UniSat.getUniSatSigners(client, preferredNetworks), context);
@@ -71,7 +71,7 @@ class SignersController {
71
71
  }
72
72
  async addRealSigners(context) {
73
73
  const { appName, appIcon, client, preferredNetworks } = context;
74
- await this.addSigners("UTXO Global Wallet", utxo_global_svg_js_1.UTXO_GLOBAL_SVG, utxo_global_1.UtxoGlobal.getUtxoGlobalSigners(client), context);
74
+ await this.addSigners("UTXO Global Wallet", utxo_global_svg_js_1.UTXO_GLOBAL_SVG, utxo_global_1.UtxoGlobal.getUtxoGlobalSigners(client, preferredNetworks), context);
75
75
  await this.addSigners("Rei Wallet", rei_svg_js_1.REI_SVG, rei_1.Rei.getReiSigners(client), context);
76
76
  await this.addSigners("JoyID Passkey", joy_id_svg_js_1.JOY_ID_SVG, joy_id_1.JoyId.getJoyIdSigners(client, appName, appIcon, preferredNetworks), context);
77
77
  await this.addSigners("UniSat", uni_sat_svg_js_1.UNI_SAT_SVG, uni_sat_1.UniSat.getUniSatSigners(client, preferredNetworks), context);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ckb-ccc/ccc",
3
- "version": "0.0.13-alpha.4",
3
+ "version": "0.0.13-alpha.6",
4
4
  "description": "CCC - CKBer's Codebase. Common Chains Connector.",
5
5
  "author": "Hanssen0 <hanssen0@hanssen0.com>",
6
6
  "license": "MIT",
@@ -46,14 +46,14 @@
46
46
  "access": "public"
47
47
  },
48
48
  "dependencies": {
49
- "@ckb-ccc/eip6963": "0.0.13-alpha.4",
50
- "@ckb-ccc/core": "0.0.13-alpha.4",
51
- "@ckb-ccc/nip07": "0.0.13-alpha.4",
52
- "@ckb-ccc/joy-id": "0.0.13-alpha.4",
53
- "@ckb-ccc/okx": "0.0.13-alpha.4",
54
- "@ckb-ccc/utxo-global": "0.0.13-alpha.4",
55
- "@ckb-ccc/uni-sat": "0.0.13-alpha.4",
56
- "@ckb-ccc/rei": "0.0.13-alpha.4"
49
+ "@ckb-ccc/core": "0.0.13-alpha.6",
50
+ "@ckb-ccc/eip6963": "0.0.13-alpha.6",
51
+ "@ckb-ccc/joy-id": "0.0.13-alpha.6",
52
+ "@ckb-ccc/nip07": "0.0.13-alpha.6",
53
+ "@ckb-ccc/okx": "0.0.13-alpha.6",
54
+ "@ckb-ccc/utxo-global": "0.0.13-alpha.6",
55
+ "@ckb-ccc/uni-sat": "0.0.13-alpha.6",
56
+ "@ckb-ccc/rei": "0.0.13-alpha.6"
57
57
  },
58
58
  "scripts": {
59
59
  "build": "rimraf ./dist && rimraf ./dist.commonjs && tsc && tsc --project tsconfig.commonjs.json && copyfiles -u 2 misc/basedirs/**/* .",
@@ -114,7 +114,7 @@ export class SignersController {
114
114
  await this.addSigners(
115
115
  "UTXO Global Wallet",
116
116
  UTXO_GLOBAL_SVG,
117
- UtxoGlobal.getUtxoGlobalSigners(client),
117
+ UtxoGlobal.getUtxoGlobalSigners(client, preferredNetworks),
118
118
  context,
119
119
  );
120
120