First, we create an on-chain "space" to store cNFTs.
Once the space is created initially, it can be utilized until the storage capacity of the space is full.
import { CompressedNft } from "@solana-suite/compressed-nft";
const inst = await CompressedNft.createSpace(
"7tm6RBvnYNUb4N6Pvkc4JMk1AZX...", // secret key of the space owner
10000, // space size
);
await inst.submit();