@ckb-ccc/nip07 0.0.8-alpha.2 → 0.0.8-alpha.3
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/README.md +6 -4
- package/dist.commonjs/advanced.d.ts +1 -1
- package/dist.commonjs/advanced.js +40 -19
- package/dist.commonjs/barrel.d.ts +1 -1
- package/dist.commonjs/barrel.js +30 -14
- package/dist.commonjs/connectionsRepo.d.ts +30 -30
- package/dist.commonjs/connectionsRepo.js +26 -26
- package/dist.commonjs/index.d.ts +1 -1
- package/dist.commonjs/index.js +40 -19
- package/dist.commonjs/nip07.advanced.d.ts +3 -3
- package/dist.commonjs/signer.d.ts +15 -11
- package/dist.commonjs/signer.js +39 -35
- package/dist.commonjs/signersFactory.d.ts +1 -1
- package/dist.commonjs/signersFactory.js +8 -5
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -21,11 +21,13 @@
|
|
|
21
21
|
</p>
|
|
22
22
|
|
|
23
23
|
<p align="center">
|
|
24
|
-
"
|
|
24
|
+
"CCC - CKBers' Codebase" is the next step of "Common Chains Connector".
|
|
25
25
|
<br />
|
|
26
|
-
|
|
26
|
+
Empower yourself with CCC to discover the unlimited potential of CKB.
|
|
27
27
|
<br />
|
|
28
|
-
|
|
28
|
+
Interoperate with wallets from different chain ecosystems.
|
|
29
|
+
<br />
|
|
30
|
+
Fully enabling CKB's Turing completeness and cryptographic freedom power.
|
|
29
31
|
</p>
|
|
30
32
|
|
|
31
33
|
## Preview
|
|
@@ -36,7 +38,7 @@
|
|
|
36
38
|
</a>
|
|
37
39
|
</p>
|
|
38
40
|
|
|
39
|
-
This project is still under active development, and we are looking forward to your feedback. [Try its demo now here](https://ckbccc-demo.vercel.app/).
|
|
41
|
+
This project is still under active development, and we are looking forward to your feedback. [Try its demo now here](https://ckbccc-demo.vercel.app/). It showcases how to use CCC for some basic scenarios in CKB.
|
|
40
42
|
|
|
41
43
|
<h3 align="center">
|
|
42
44
|
Read more about CCC on its <a href="https://github.com/ckb-ecofund/ccc">GitHub Repo</a>.
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export * as Nip07A from "./nip07.advanced";
|
|
2
|
-
//# sourceMappingURL=advanced.d.ts.map
|
|
2
|
+
//# sourceMappingURL=advanced.d.ts.map
|
|
@@ -1,27 +1,48 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
var __createBinding =
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
18
|
-
|
|
2
|
+
var __createBinding =
|
|
3
|
+
(this && this.__createBinding) ||
|
|
4
|
+
(Object.create
|
|
5
|
+
? function (o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
+
if (
|
|
9
|
+
!desc ||
|
|
10
|
+
("get" in desc ? !m.__esModule : desc.writable || desc.configurable)
|
|
11
|
+
) {
|
|
12
|
+
desc = {
|
|
13
|
+
enumerable: true,
|
|
14
|
+
get: function () {
|
|
15
|
+
return m[k];
|
|
16
|
+
},
|
|
17
|
+
};
|
|
18
|
+
}
|
|
19
|
+
Object.defineProperty(o, k2, desc);
|
|
20
|
+
}
|
|
21
|
+
: function (o, m, k, k2) {
|
|
22
|
+
if (k2 === undefined) k2 = k;
|
|
23
|
+
o[k2] = m[k];
|
|
24
|
+
});
|
|
25
|
+
var __setModuleDefault =
|
|
26
|
+
(this && this.__setModuleDefault) ||
|
|
27
|
+
(Object.create
|
|
28
|
+
? function (o, v) {
|
|
29
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
30
|
+
}
|
|
31
|
+
: function (o, v) {
|
|
32
|
+
o["default"] = v;
|
|
33
|
+
});
|
|
34
|
+
var __importStar =
|
|
35
|
+
(this && this.__importStar) ||
|
|
36
|
+
function (mod) {
|
|
19
37
|
if (mod && mod.__esModule) return mod;
|
|
20
38
|
var result = {};
|
|
21
|
-
if (mod != null)
|
|
39
|
+
if (mod != null)
|
|
40
|
+
for (var k in mod)
|
|
41
|
+
if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k))
|
|
42
|
+
__createBinding(result, mod, k);
|
|
22
43
|
__setModuleDefault(result, mod);
|
|
23
44
|
return result;
|
|
24
|
-
};
|
|
45
|
+
};
|
|
25
46
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
47
|
exports.Nip07A = void 0;
|
|
27
48
|
exports.Nip07A = __importStar(require("./nip07.advanced"));
|
package/dist.commonjs/barrel.js
CHANGED
|
@@ -1,18 +1,34 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
var __createBinding =
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
2
|
+
var __createBinding =
|
|
3
|
+
(this && this.__createBinding) ||
|
|
4
|
+
(Object.create
|
|
5
|
+
? function (o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
+
if (
|
|
9
|
+
!desc ||
|
|
10
|
+
("get" in desc ? !m.__esModule : desc.writable || desc.configurable)
|
|
11
|
+
) {
|
|
12
|
+
desc = {
|
|
13
|
+
enumerable: true,
|
|
14
|
+
get: function () {
|
|
15
|
+
return m[k];
|
|
16
|
+
},
|
|
17
|
+
};
|
|
18
|
+
}
|
|
19
|
+
Object.defineProperty(o, k2, desc);
|
|
20
|
+
}
|
|
21
|
+
: function (o, m, k, k2) {
|
|
22
|
+
if (k2 === undefined) k2 = k;
|
|
23
|
+
o[k2] = m[k];
|
|
24
|
+
});
|
|
25
|
+
var __exportStar =
|
|
26
|
+
(this && this.__exportStar) ||
|
|
27
|
+
function (m, exports) {
|
|
28
|
+
for (var p in m)
|
|
29
|
+
if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p))
|
|
30
|
+
__createBinding(exports, m, p);
|
|
31
|
+
};
|
|
16
32
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
33
|
__exportStar(require("./signer"), exports);
|
|
18
34
|
__exportStar(require("./signersFactory"), exports);
|
|
@@ -5,24 +5,24 @@ import { ccc } from "@ckb-ccc/core";
|
|
|
5
5
|
* @property {ccc.Hex} publicKey - The public key of the connection.
|
|
6
6
|
*/
|
|
7
7
|
export type Connection = {
|
|
8
|
-
|
|
8
|
+
readonly publicKey: ccc.Hex;
|
|
9
9
|
};
|
|
10
10
|
/**
|
|
11
11
|
* Interface representing a repository for managing connections.
|
|
12
12
|
* @interface
|
|
13
13
|
*/
|
|
14
14
|
export interface ConnectionsRepo {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
15
|
+
/**
|
|
16
|
+
* Gets a connection.
|
|
17
|
+
* @returns {Promise<Connection | undefined>} A promise that resolves to the connection, if found.
|
|
18
|
+
*/
|
|
19
|
+
get(): Promise<Connection | undefined>;
|
|
20
|
+
/**
|
|
21
|
+
* Sets a connection.
|
|
22
|
+
* @param {Connection | undefined} connection - The connection to set.
|
|
23
|
+
* @returns {Promise<void>} A promise that resolves when the connection is set.
|
|
24
|
+
*/
|
|
25
|
+
set(connection: Connection | undefined): Promise<void>;
|
|
26
26
|
}
|
|
27
27
|
/**
|
|
28
28
|
* Class representing a local storage-based repository for managing connections.
|
|
@@ -30,22 +30,22 @@ export interface ConnectionsRepo {
|
|
|
30
30
|
* @implements {ConnectionsRepo}
|
|
31
31
|
*/
|
|
32
32
|
export declare class ConnectionsRepoLocalStorage implements ConnectionsRepo {
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
33
|
+
private readonly storageKey;
|
|
34
|
+
/**
|
|
35
|
+
* Creates an instance of ConnectionsRepoLocalStorage.
|
|
36
|
+
* @param {string} [storageKey="ccc-nip07-signer"] - The local storage key.
|
|
37
|
+
*/
|
|
38
|
+
constructor(storageKey?: string);
|
|
39
|
+
/**
|
|
40
|
+
* Gets a connection.
|
|
41
|
+
* @returns {Promise<Connection | undefined>} A promise that resolves to the connection, if found.
|
|
42
|
+
*/
|
|
43
|
+
get(): Promise<Connection | undefined>;
|
|
44
|
+
/**
|
|
45
|
+
* Sets a connection.
|
|
46
|
+
* @param {Connection | undefined} connection - The connection to set.
|
|
47
|
+
* @returns {Promise<void>}
|
|
48
|
+
*/
|
|
49
|
+
set(connection: Connection | undefined): Promise<void>;
|
|
50
50
|
}
|
|
51
|
-
//# sourceMappingURL=connectionsRepo.d.ts.map
|
|
51
|
+
//# sourceMappingURL=connectionsRepo.d.ts.map
|
|
@@ -7,32 +7,32 @@ exports.ConnectionsRepoLocalStorage = void 0;
|
|
|
7
7
|
* @implements {ConnectionsRepo}
|
|
8
8
|
*/
|
|
9
9
|
class ConnectionsRepoLocalStorage {
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
}
|
|
35
|
-
window.localStorage.setItem(this.storageKey, JSON.stringify(connection));
|
|
10
|
+
/**
|
|
11
|
+
* Creates an instance of ConnectionsRepoLocalStorage.
|
|
12
|
+
* @param {string} [storageKey="ccc-nip07-signer"] - The local storage key.
|
|
13
|
+
*/
|
|
14
|
+
constructor(storageKey = "ccc-nip07-signer") {
|
|
15
|
+
this.storageKey = storageKey;
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* Gets a connection.
|
|
19
|
+
* @returns {Promise<Connection | undefined>} A promise that resolves to the connection, if found.
|
|
20
|
+
*/
|
|
21
|
+
async get() {
|
|
22
|
+
const got = window.localStorage.getItem(this.storageKey);
|
|
23
|
+
return got ? JSON.parse(got) : undefined;
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* Sets a connection.
|
|
27
|
+
* @param {Connection | undefined} connection - The connection to set.
|
|
28
|
+
* @returns {Promise<void>}
|
|
29
|
+
*/
|
|
30
|
+
async set(connection) {
|
|
31
|
+
if (connection === undefined) {
|
|
32
|
+
window.localStorage.removeItem(this.storageKey);
|
|
33
|
+
return;
|
|
36
34
|
}
|
|
35
|
+
window.localStorage.setItem(this.storageKey, JSON.stringify(connection));
|
|
36
|
+
}
|
|
37
37
|
}
|
|
38
38
|
exports.ConnectionsRepoLocalStorage = ConnectionsRepoLocalStorage;
|
package/dist.commonjs/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export * as Nip07 from "./barrel";
|
|
2
|
-
//# sourceMappingURL=index.d.ts.map
|
|
2
|
+
//# sourceMappingURL=index.d.ts.map
|
package/dist.commonjs/index.js
CHANGED
|
@@ -1,27 +1,48 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
var __createBinding =
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
18
|
-
|
|
2
|
+
var __createBinding =
|
|
3
|
+
(this && this.__createBinding) ||
|
|
4
|
+
(Object.create
|
|
5
|
+
? function (o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
+
if (
|
|
9
|
+
!desc ||
|
|
10
|
+
("get" in desc ? !m.__esModule : desc.writable || desc.configurable)
|
|
11
|
+
) {
|
|
12
|
+
desc = {
|
|
13
|
+
enumerable: true,
|
|
14
|
+
get: function () {
|
|
15
|
+
return m[k];
|
|
16
|
+
},
|
|
17
|
+
};
|
|
18
|
+
}
|
|
19
|
+
Object.defineProperty(o, k2, desc);
|
|
20
|
+
}
|
|
21
|
+
: function (o, m, k, k2) {
|
|
22
|
+
if (k2 === undefined) k2 = k;
|
|
23
|
+
o[k2] = m[k];
|
|
24
|
+
});
|
|
25
|
+
var __setModuleDefault =
|
|
26
|
+
(this && this.__setModuleDefault) ||
|
|
27
|
+
(Object.create
|
|
28
|
+
? function (o, v) {
|
|
29
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
30
|
+
}
|
|
31
|
+
: function (o, v) {
|
|
32
|
+
o["default"] = v;
|
|
33
|
+
});
|
|
34
|
+
var __importStar =
|
|
35
|
+
(this && this.__importStar) ||
|
|
36
|
+
function (mod) {
|
|
19
37
|
if (mod && mod.__esModule) return mod;
|
|
20
38
|
var result = {};
|
|
21
|
-
if (mod != null)
|
|
39
|
+
if (mod != null)
|
|
40
|
+
for (var k in mod)
|
|
41
|
+
if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k))
|
|
42
|
+
__createBinding(result, mod, k);
|
|
22
43
|
__setModuleDefault(result, mod);
|
|
23
44
|
return result;
|
|
24
|
-
};
|
|
45
|
+
};
|
|
25
46
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
47
|
exports.Nip07 = void 0;
|
|
27
48
|
exports.Nip07 = __importStar(require("./barrel"));
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ccc } from "@ckb-ccc/core";
|
|
2
2
|
export interface Provider {
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
getPublicKey(): Promise<string>;
|
|
4
|
+
signEvent(event: ccc.NostrEvent): Promise<Required<ccc.NostrEvent>>;
|
|
5
5
|
}
|
|
6
|
-
//# sourceMappingURL=nip07.advanced.d.ts.map
|
|
6
|
+
//# sourceMappingURL=nip07.advanced.d.ts.map
|
|
@@ -2,15 +2,19 @@ import { ccc } from "@ckb-ccc/core";
|
|
|
2
2
|
import { ConnectionsRepo } from "./connectionsRepo";
|
|
3
3
|
import { Provider } from "./nip07.advanced";
|
|
4
4
|
export declare class Signer extends ccc.SignerNostr {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
5
|
+
readonly provider: Provider;
|
|
6
|
+
private readonly connectionsRepo;
|
|
7
|
+
private publicKey;
|
|
8
|
+
constructor(
|
|
9
|
+
client: ccc.Client,
|
|
10
|
+
provider: Provider,
|
|
11
|
+
connectionsRepo?: ConnectionsRepo,
|
|
12
|
+
);
|
|
13
|
+
static isValidClient(client: ccc.Client): boolean;
|
|
14
|
+
replaceClient(client: ccc.Client): Promise<boolean>;
|
|
15
|
+
getNostrPublicKey(): Promise<ccc.Hex>;
|
|
16
|
+
signNostrEvent(event: ccc.NostrEvent): Promise<Required<ccc.NostrEvent>>;
|
|
17
|
+
connect(): Promise<void>;
|
|
18
|
+
isConnected(): Promise<boolean>;
|
|
15
19
|
}
|
|
16
|
-
//# sourceMappingURL=signer.d.ts.map
|
|
20
|
+
//# sourceMappingURL=signer.d.ts.map
|
package/dist.commonjs/signer.js
CHANGED
|
@@ -4,44 +4,48 @@ exports.Signer = void 0;
|
|
|
4
4
|
const core_1 = require("@ckb-ccc/core");
|
|
5
5
|
const connectionsRepo_1 = require("./connectionsRepo");
|
|
6
6
|
class Signer extends core_1.ccc.SignerNostr {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
7
|
+
constructor(
|
|
8
|
+
client,
|
|
9
|
+
provider,
|
|
10
|
+
connectionsRepo = new connectionsRepo_1.ConnectionsRepoLocalStorage(),
|
|
11
|
+
) {
|
|
12
|
+
super(client);
|
|
13
|
+
this.provider = provider;
|
|
14
|
+
this.connectionsRepo = connectionsRepo;
|
|
15
|
+
this.publicKey = undefined;
|
|
16
|
+
}
|
|
17
|
+
static isValidClient(client) {
|
|
18
|
+
return client.addressPrefix === "ckt";
|
|
19
|
+
}
|
|
20
|
+
async replaceClient(client) {
|
|
21
|
+
if (!Signer.isValidClient(client)) {
|
|
22
|
+
return false;
|
|
12
23
|
}
|
|
13
|
-
|
|
14
|
-
|
|
24
|
+
return super.replaceClient(client);
|
|
25
|
+
}
|
|
26
|
+
async getNostrPublicKey() {
|
|
27
|
+
if (this.publicKey) {
|
|
28
|
+
return this.publicKey;
|
|
15
29
|
}
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
}
|
|
20
|
-
return super.replaceClient(client);
|
|
30
|
+
this.publicKey = (await this.connectionsRepo.get())?.publicKey;
|
|
31
|
+
if (!this.publicKey) {
|
|
32
|
+
throw new Error("Not connected");
|
|
21
33
|
}
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
}
|
|
35
|
-
async connect() {
|
|
36
|
-
this.publicKey = core_1.ccc.hexFrom(await this.provider.getPublicKey());
|
|
37
|
-
await this.connectionsRepo.set({ publicKey: this.publicKey });
|
|
38
|
-
}
|
|
39
|
-
async isConnected() {
|
|
40
|
-
if (this.publicKey) {
|
|
41
|
-
return true;
|
|
42
|
-
}
|
|
43
|
-
this.publicKey = (await this.connectionsRepo.get())?.publicKey;
|
|
44
|
-
return this.publicKey !== undefined;
|
|
34
|
+
return this.publicKey;
|
|
35
|
+
}
|
|
36
|
+
async signNostrEvent(event) {
|
|
37
|
+
return this.provider.signEvent(event);
|
|
38
|
+
}
|
|
39
|
+
async connect() {
|
|
40
|
+
this.publicKey = core_1.ccc.hexFrom(await this.provider.getPublicKey());
|
|
41
|
+
await this.connectionsRepo.set({ publicKey: this.publicKey });
|
|
42
|
+
}
|
|
43
|
+
async isConnected() {
|
|
44
|
+
if (this.publicKey) {
|
|
45
|
+
return true;
|
|
45
46
|
}
|
|
47
|
+
this.publicKey = (await this.connectionsRepo.get())?.publicKey;
|
|
48
|
+
return this.publicKey !== undefined;
|
|
49
|
+
}
|
|
46
50
|
}
|
|
47
51
|
exports.Signer = Signer;
|
|
@@ -3,10 +3,13 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.getNip07Signer = void 0;
|
|
4
4
|
const signer_1 = require("./signer");
|
|
5
5
|
function getNip07Signer(client) {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
6
|
+
const windowRef = window;
|
|
7
|
+
if (
|
|
8
|
+
typeof windowRef.nostr === "undefined" ||
|
|
9
|
+
!signer_1.Signer.isValidClient(client)
|
|
10
|
+
) {
|
|
11
|
+
return;
|
|
12
|
+
}
|
|
13
|
+
return new signer_1.Signer(client, windowRef.nostr);
|
|
11
14
|
}
|
|
12
15
|
exports.getNip07Signer = getNip07Signer;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ckb-ccc/nip07",
|
|
3
|
-
"version": "0.0.8-alpha.
|
|
3
|
+
"version": "0.0.8-alpha.3",
|
|
4
4
|
"description": "Common Chains Connector's support for NIP07",
|
|
5
5
|
"author": "Hanssen0 <hanssen0@hanssen0.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"access": "public"
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@ckb-ccc/core": "0.0.
|
|
45
|
+
"@ckb-ccc/core": "0.0.8-alpha.3"
|
|
46
46
|
},
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "bddfa3e5631252194dfde32b79ee589703f18afb"
|
|
48
48
|
}
|