-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcreateAcpCluster.ts
38 lines (33 loc) · 1.49 KB
/
createAcpCluster.ts
1
2
3
4
5
6
7
8
9
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
36
37
38
import { createCluster } from '@spore-sdk/core';
import { accounts, config } from '../utils/config';
(async function main() {
const { CHARLIE } = accounts;
/**
* Create an Anyone-can-pay lock from CHARLIE's CKB default lock, adding minimal payment requirement to the Cluster.
* Anyone who references the lock cell without providing a signature to unlock it, will need to following:
* - If minCkb is defined, pay at least 10^minCkb shannons to the lock cell as a fee.
* - If minCkb is undefined, anyone can reference this Cluster without payment.
*
* Examples:
* If minCkb = 10, anyone can pay 10,000,000,000 (10^10) shannons to the Cluster as a fee of referencing it.
* If minCkb = 0, anyone can pay 1 (10^0) shannon to the Cluster as a fee of referencing it.
* If minCkb = undefined, anyone can reference this Cluster without payment.
*/
const CharlieAcpLock = CHARLIE.createAcpLock({
minCkb: void 0,
});
const { txSkeleton, outputIndex } = await createCluster({
data: {
name: 'Test acp lock cluster',
description: 'A public cluster with acp lock',
},
fromInfos: [CHARLIE.address],
toLock: CharlieAcpLock,
config,
});
const hash = await CHARLIE.signAndSendTransaction(txSkeleton);
console.log('CreateAcpCluster transaction sent, hash:', hash);
console.log('Cluster output index:', outputIndex);
const clusterCell = txSkeleton.get('outputs').get(outputIndex)!;
console.log('Cluster ID:', clusterCell.cellOutput.type!.args);
})();