-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcreateSporeWithAcpCluster.ts
52 lines (47 loc) · 1.89 KB
/
createSporeWithAcpCluster.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
40
41
42
43
44
45
46
47
48
49
50
51
52
import { BI } from '@ckb-lumos/bi';
import { createSpore } from '@spore-sdk/core';
import { accounts, config } from '../utils/config';
import { getInfoFromOmnilockArgs } from '../utils/wallet';
(async function main() {
const { CHARLIE } = accounts;
const { txSkeleton, outputIndex } = await createSpore({
data: {
contentType: 'text/plain',
content: 'spore with public cluster referenced',
/**
* When referencing an ACP public Cluster, even if the Cluster doesn't belong to CHARLIE,
* CHARLIE can still create Spores that reference the Cluster.
*/
clusterId: '0x6c7df3eee9af40d4e0f27356e7dcb02a54e33f7d81a40af57d0de1f3856ab750',
},
toLock: CHARLIE.lock,
fromInfos: [CHARLIE.address],
cluster: {
/**
* When referencing an Omnilock ACP public Cluster,
* you must pay at least (10^minCKB) shannons to the Cluster cell as a fee.
*
* Every Omnilock ACP lock script has a minCkb value defined in its args.
* The minimal viable minCkb is 0, which means the minimum payment is 1 (10^0) shannon.
*/
capacityMargin: (clusterCell, margin) => {
const args = getInfoFromOmnilockArgs(clusterCell.cellOutput.lock.args);
const minCkb = args.minCkb !== void 0
? BI.from(10).pow(args.minCkb)
: BI.from(0);
return margin.add(minCkb);
},
/**
* When referencing an ACP public Cluster,
* the Cluster's corresponding witness should be set to "0x" (empty) and shouldn't be signed.
*/
updateWitness: '0x',
},
config,
});
const hash = await CHARLIE.signAndSendTransaction(txSkeleton);
console.log('CreateSporeWithAcpCluster transaction sent, hash:', hash);
console.log('Spore output index:', outputIndex);
const sporeCell = txSkeleton.get('outputs').get(outputIndex)!;
console.log('Spore ID:', sporeCell.cellOutput.type!.args);
})();