@ckb-ccc/ccc 0.0.3 → 0.0.4-alpha.0

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/dist/barrel.d.ts CHANGED
@@ -2,5 +2,4 @@ export * from "@ckb-ccc/core/barrel";
2
2
  export * from "@ckb-ccc/eip6963";
3
3
  export * from "@ckb-ccc/okx";
4
4
  export * from "@ckb-ccc/uni-sat";
5
- export * from "./signers";
6
5
  //# sourceMappingURL=barrel.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"barrel.d.ts","sourceRoot":"","sources":["../src/barrel.ts"],"names":[],"mappings":"AAAA,cAAc,sBAAsB,CAAC;AACrC,cAAc,kBAAkB,CAAC;AACjC,cAAc,cAAc,CAAC;AAC7B,cAAc,kBAAkB,CAAC;AACjC,cAAc,WAAW,CAAC"}
1
+ {"version":3,"file":"barrel.d.ts","sourceRoot":"","sources":["../src/barrel.ts"],"names":[],"mappings":"AAAA,cAAc,sBAAsB,CAAC;AACrC,cAAc,kBAAkB,CAAC;AACjC,cAAc,cAAc,CAAC;AAC7B,cAAc,kBAAkB,CAAC"}
package/dist/barrel.js CHANGED
@@ -2,4 +2,3 @@ export * from "@ckb-ccc/core/barrel";
2
2
  export * from "@ckb-ccc/eip6963";
3
3
  export * from "@ckb-ccc/okx";
4
4
  export * from "@ckb-ccc/uni-sat";
5
- export * from "./signers";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ckb-ccc/ccc",
3
- "version": "0.0.3",
3
+ "version": "0.0.4-alpha.0",
4
4
  "description": "Common Chains Connector",
5
5
  "author": "Hanssen0 <hanssen0@hanssen0.com>",
6
6
  "license": "MIT",
@@ -37,10 +37,10 @@
37
37
  "access": "public"
38
38
  },
39
39
  "dependencies": {
40
- "@ckb-ccc/core": "0.0.3",
41
- "@ckb-ccc/eip6963": "0.0.3",
42
- "@ckb-ccc/okx": "0.0.3",
43
- "@ckb-ccc/uni-sat": "0.0.3"
40
+ "@ckb-ccc/core": "0.0.4-alpha.0",
41
+ "@ckb-ccc/eip6963": "0.0.4-alpha.0",
42
+ "@ckb-ccc/okx": "0.0.4-alpha.0",
43
+ "@ckb-ccc/uni-sat": "0.0.4-alpha.0"
44
44
  },
45
- "gitHead": "9df1bbe0007136568914d8a73fe39f898d636a12"
45
+ "gitHead": "e49045ed4b2778c92d6f49b79c17125245141a21"
46
46
  }
package/src/barrel.ts CHANGED
@@ -2,4 +2,3 @@ export * from "@ckb-ccc/core/barrel";
2
2
  export * from "@ckb-ccc/eip6963";
3
3
  export * from "@ckb-ccc/okx";
4
4
  export * from "@ckb-ccc/uni-sat";
5
- export * from "./signers";
package/dist/signers.d.ts DELETED
@@ -1,15 +0,0 @@
1
- import { Signer } from "@ckb-ccc/core";
2
- export declare enum SignerType {
3
- Eip6963 = "Eip6963",
4
- UniSat = "UniSat",
5
- OkxBitcoin = "OkxBitcoin"
6
- }
7
- export declare class SignerInfo {
8
- type: SignerType;
9
- id: string;
10
- name: string;
11
- icon: string;
12
- signer: Signer;
13
- constructor(type: SignerType, id: string, name: string, icon: string, signer: Signer);
14
- }
15
- //# sourceMappingURL=signers.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"signers.d.ts","sourceRoot":"","sources":["../src/signers.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,eAAe,CAAC;AAEvC,oBAAY,UAAU;IACpB,OAAO,YAAY;IACnB,MAAM,WAAW;IACjB,UAAU,eAAe;CAC1B;AAED,qBAAa,UAAU;IAEZ,IAAI,EAAE,UAAU;IAChB,EAAE,EAAE,MAAM;IACV,IAAI,EAAE,MAAM;IACZ,IAAI,EAAE,MAAM;IACZ,MAAM,EAAE,MAAM;gBAJd,IAAI,EAAE,UAAU,EAChB,EAAE,EAAE,MAAM,EACV,IAAI,EAAE,MAAM,EACZ,IAAI,EAAE,MAAM,EACZ,MAAM,EAAE,MAAM;CAExB"}
package/dist/signers.js DELETED
@@ -1,15 +0,0 @@
1
- export var SignerType;
2
- (function (SignerType) {
3
- SignerType["Eip6963"] = "Eip6963";
4
- SignerType["UniSat"] = "UniSat";
5
- SignerType["OkxBitcoin"] = "OkxBitcoin";
6
- })(SignerType || (SignerType = {}));
7
- export class SignerInfo {
8
- constructor(type, id, name, icon, signer) {
9
- this.type = type;
10
- this.id = id;
11
- this.name = name;
12
- this.icon = icon;
13
- this.signer = signer;
14
- }
15
- }
package/src/signers.ts DELETED
@@ -1,17 +0,0 @@
1
- import { Signer } from "@ckb-ccc/core";
2
-
3
- export enum SignerType {
4
- Eip6963 = "Eip6963",
5
- UniSat = "UniSat",
6
- OkxBitcoin = "OkxBitcoin",
7
- }
8
-
9
- export class SignerInfo {
10
- constructor(
11
- public type: SignerType,
12
- public id: string,
13
- public name: string,
14
- public icon: string,
15
- public signer: Signer,
16
- ) {}
17
- }