@ckb-ccc/ccc 0.0.13-alpha.5 → 0.0.13-alpha.7
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,41 @@
|
|
|
1
1
|
# @ckb-ccc/ccc
|
|
2
2
|
|
|
3
|
+
## 0.0.13-alpha.7
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`079e20e`](https://github.com/ckb-ecofund/ccc/commit/079e20ef14cf9a7c06bbaddf3e92cbfbb005da11) Thanks [@Hanssen0](https://github.com/Hanssen0)! - feat(core): more APIs. Since parsing.
|
|
8
|
+
|
|
9
|
+
- [`ed154d1`](https://github.com/ckb-ecofund/ccc/commit/ed154d189e239907ad686ec51ac8133b6d5eb895) Thanks [@Hanssen0](https://github.com/Hanssen0)! - feat(core): Signer.findCells
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [[`1043c2b`](https://github.com/ckb-ecofund/ccc/commit/1043c2bc211ec283b88dba3b81feef98e4185c0e), [`079e20e`](https://github.com/ckb-ecofund/ccc/commit/079e20ef14cf9a7c06bbaddf3e92cbfbb005da11), [`ed154d1`](https://github.com/ckb-ecofund/ccc/commit/ed154d189e239907ad686ec51ac8133b6d5eb895)]:
|
|
12
|
+
- @ckb-ccc/core@0.0.13-alpha.7
|
|
13
|
+
- @ckb-ccc/eip6963@0.0.13-alpha.7
|
|
14
|
+
- @ckb-ccc/joy-id@0.0.13-alpha.7
|
|
15
|
+
- @ckb-ccc/nip07@0.0.13-alpha.7
|
|
16
|
+
- @ckb-ccc/okx@0.0.13-alpha.7
|
|
17
|
+
- @ckb-ccc/rei@0.0.13-alpha.7
|
|
18
|
+
- @ckb-ccc/uni-sat@0.0.13-alpha.7
|
|
19
|
+
- @ckb-ccc/utxo-global@0.0.13-alpha.7
|
|
20
|
+
|
|
21
|
+
## 0.0.13-alpha.6
|
|
22
|
+
|
|
23
|
+
### Patch Changes
|
|
24
|
+
|
|
25
|
+
- [#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
|
|
26
|
+
|
|
27
|
+
- [`44c7fee`](https://github.com/ckb-ecofund/ccc/commit/44c7feed37369836268fba21884418682f15254b) Thanks [@Hanssen0](https://github.com/Hanssen0)! - fix(core): completeInputs
|
|
28
|
+
|
|
29
|
+
- Updated dependencies [[`69c10fd`](https://github.com/ckb-ecofund/ccc/commit/69c10fdfcd507433c13b15d17015dca4687afb97), [`44c7fee`](https://github.com/ckb-ecofund/ccc/commit/44c7feed37369836268fba21884418682f15254b)]:
|
|
30
|
+
- @ckb-ccc/utxo-global@0.0.13-alpha.6
|
|
31
|
+
- @ckb-ccc/core@0.0.13-alpha.6
|
|
32
|
+
- @ckb-ccc/eip6963@0.0.13-alpha.6
|
|
33
|
+
- @ckb-ccc/joy-id@0.0.13-alpha.6
|
|
34
|
+
- @ckb-ccc/nip07@0.0.13-alpha.6
|
|
35
|
+
- @ckb-ccc/okx@0.0.13-alpha.6
|
|
36
|
+
- @ckb-ccc/rei@0.0.13-alpha.6
|
|
37
|
+
- @ckb-ccc/uni-sat@0.0.13-alpha.6
|
|
38
|
+
|
|
3
39
|
## 0.0.13-alpha.5
|
|
4
40
|
|
|
5
41
|
### 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.
|
|
3
|
+
"version": "0.0.13-alpha.7",
|
|
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/core": "0.0.13-alpha.
|
|
50
|
-
"@ckb-ccc/eip6963": "0.0.13-alpha.
|
|
51
|
-
"@ckb-ccc/
|
|
52
|
-
"@ckb-ccc/
|
|
53
|
-
"@ckb-ccc/
|
|
54
|
-
"@ckb-ccc/
|
|
55
|
-
"@ckb-ccc/
|
|
56
|
-
"@ckb-ccc/
|
|
49
|
+
"@ckb-ccc/core": "0.0.13-alpha.7",
|
|
50
|
+
"@ckb-ccc/eip6963": "0.0.13-alpha.7",
|
|
51
|
+
"@ckb-ccc/okx": "0.0.13-alpha.7",
|
|
52
|
+
"@ckb-ccc/nip07": "0.0.13-alpha.7",
|
|
53
|
+
"@ckb-ccc/uni-sat": "0.0.13-alpha.7",
|
|
54
|
+
"@ckb-ccc/joy-id": "0.0.13-alpha.7",
|
|
55
|
+
"@ckb-ccc/utxo-global": "0.0.13-alpha.7",
|
|
56
|
+
"@ckb-ccc/rei": "0.0.13-alpha.7"
|
|
57
57
|
},
|
|
58
58
|
"scripts": {
|
|
59
59
|
"build": "rimraf ./dist && rimraf ./dist.commonjs && tsc && tsc --project tsconfig.commonjs.json && copyfiles -u 2 misc/basedirs/**/* .",
|
package/src/signersController.ts
CHANGED