-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcreateAcpCluster.ts
39 lines (34 loc) · 1.38 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
39
import { createCluster } from '@spore-sdk/core';
import { accounts, config } from '../utils/config';
import { createOmnilockAcpArgs } from '../utils/wallet';
(async function main() {
const { CHARLIE } = accounts;
/**
* Create an Omnilock from CHARLIE's original lock, adding minimal payment requirement to the Cluster.
* Anyone who references the lock cell without providing a signature to unlock it,
* will have to pay at least 10^minCkb shannons to the lock cell as a fee.
*
* 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.
*/
const CharlieOmniAcpLock = CHARLIE.createLock(
createOmnilockAcpArgs({
minCkb: 0,
})
);
const { txSkeleton, outputIndex } = await createCluster({
data: {
name: 'Test omnilock acp cluster',
description: 'An public cluster with omnilock',
},
fromInfos: [CHARLIE.address],
toLock: CharlieOmniAcpLock,
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);
})();