Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lightprotocol/zk-compression-cli",
"version": "0.28.0-beta.5",
"version": "0.28.0-beta.8",
"description": "ZK Compression: Secure Scaling on Solana",
"maintainers": [
{
Expand Down
4 changes: 2 additions & 2 deletions cli/src/commands/create-token-pool/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {
} from "../../utils/utils";

import { PublicKey } from "@solana/web3.js";
import { createTokenPool } from "@lightprotocol/compressed-token";
import { createSplInterface } from "@lightprotocol/compressed-token";

class RegisterMintCommand extends Command {
static summary = "Register an existing mint with the CompressedToken program";
Expand All @@ -31,7 +31,7 @@ class RegisterMintCommand extends Command {
try {
const payer = defaultSolanaWalletKeypair();
const mintAddress = new PublicKey(flags.mint);
const txId = await createTokenPool(rpc(), payer, mintAddress);
const txId = await createSplInterface(rpc(), payer, mintAddress);
loader.stop(false);
console.log("\x1b[1mMint public key:\x1b[0m ", mintAddress.toBase58());
console.log(
Expand Down
333 changes: 0 additions & 333 deletions ctoken_for_payments.md

This file was deleted.

Loading