Liquidity Hub

Live data. Real liquidity. Immutable proof.

ACKE / SOL
SOL / USD
ACKE / USD (derived)
Since Launch
(ACKE/SOL) × (SOL/USD)

Counting every second since launch

How it’s built

Verify the ownership chain on Solscan.
Pool → Position Account → PDA owner → Program → System.

Raydium CLMM Pool

Holds ~95% at launch; trading hub.

Open on Solscan

Raydium CLMM Position Account

Represents the specific ACKE–WSOL liquidity position within the CLMM. This account holds the actual pool position data and is owned by a PDA — not by a user wallet.

Open on Solscan

PDA (owner of the CLMM position)

A program-derived address (PDA) generated by the Rocket Launcher program. This PDA owns the CLMM position account and has no private key or authority, ensuring the liquidity cannot be moved or withdrawn.

Open on Solscan

RocketLauncher Program (PDA authority)

Immutable on-chain program that generated the PDA above. It holds no upgrade authority and no ability to transfer the position, guaranteeing that ownership of the liquidity is locked permanently.

Open on Solscan

System Program (Solana core)

Ultimate owner; immutable by design.

Open on Solscan

✅ Chain: Pool → CLMM Position Account → PDA → Program → System.

$ACKE Vault

Holds the ACKE side; bound by PDA chain.

Solscan

WSOL Vault

Collects SOL from buys; immutable path.

Solscan

Dev Wallet (transparent ~5%)

Covers essential costs such as maintenance, listings, and future improvements.

Solscan

Supply (Fixed)

Total supply: 500,000,000. Minting & Freeze authorities set to NULL (none). SPL Standard token.

Mint Address

FiGo1b6k1DzKcoYSRxfB8UMqhucgDtW8EnynRL6yRur Solscan

Authorities → None

SetAuthority tx shows new authority = NULL (none).

2za3bAsuMz6w3dNMPZCv994HBDaDHCcK9HEzwr9EBaPkyEbdg3WgNduKKJ4KqegsMadziM1EnXN4ckqZTMP4XdQi Tx
TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA SPL Program
Mint/Freeze authorities set to None

Scanner Notes

For explorers, indexers and security dashboards that want to classify PDA-owned Raydium CLMM locks correctly.

Some dashboards still treat PDA-owned CLMM positions as “unlocked” because they only look for classic timelocks or locker contracts. On Raydium CLMM, an off-curve owner = PDA, which has no private key and cannot sign to withdraw liquidity.

Always verify on-chain using your own node or trusted explorers (Solscan, DexScreener, etc.). Do not rely on a single dashboard label for lock status.



For Scanner Teams: Correctly Detect PDA-Owned Raydium CLMM Locks

Raydium CLMM positions can already be classified with full accuracy using standard Solana tooling — no protocol changes required.

This indexing pattern was developed by a Helius engineer and relies only on:
- getProgramAccounts (gPA) from @solana/web3.js
- The Raydium CLMM SDK to decode position accounts
- A simple off-curve owner check to detect PDA-owned (immutable) positions
- Reading the vault A/B token balances directly to confirm locked liquidity

Any scanner can adopt this method immediately.

ENJOY! 

// using @solana/web3.js + Raydium CLMM SDK

const programId = new PublicKey("RAYDIUM_CLMM_PROGRAM_ID");

const allAccounts = await connection.getProgramAccounts(programId, {
  // optional: minimal filters if desired
});

for (let acc of allAccounts) {
  const pubkey = acc.pubkey;
  const data = acc.account.data;

  // Parse CLMM position data via Raydium SDK
  const owner = parseOwnerFromData(data);

  // PDA-owned positions = immutable, no private key, no withdrawal path
  if (!PublicKey.isOnCurve(owner.toBytes())) {
    const vaultA = parseVaultA(data);
    const vaultB = parseVaultB(data);

    const balA = await connection.getTokenAccountBalance(vaultA);
    const balB = await connection.getTokenAccountBalance(vaultB);

    console.log(
      "Locked CLMM position detected:",
      pubkey.toBase58(),
      "vaults:",
      vaultA.toBase58(),
      vaultB.toBase58(),
      balA.value.uiAmount,
      balB.value.uiAmount
    );
  }
}

$ACKE FAQ

Pure facts. No promises, no spin.

1

How did $ACKE launch?

Fair and clean. ~95% of 500M supply paired with SOL in a Raydium CLMM. Position owned by a PDA. No presale. No insiders.

2

What’s immutable here?

CLMM position owned by PDA (no key). SPL mint has no mint/freeze authority. Supply locked forever.

3

Who controls the liquidity?

No one. PDA owns the position. Only program logic can act.

4

How does trading work?

Buy: SOL → pool → $ACKE out.
Sell: $ACKE → pool → SOL out.
CLMM math matches trades within range.

5

Is there a price floor or buybacks?

No manual buybacks or guarantees. But: buys accumulate SOL, sells release SOL — a mathematical buyback curve. If pool thins, trading shifts to peer-to-peer. Rules never change.

6

Why pair with SOL?

Transparent counter-asset. No promises of tracking — just clean math.

7

What happens as the pool thins?

Tokens migrate to holders. Price becomes more peer-driven. Rules stay fixed.

8

Can supply be increased?

No. Mint/freeze authorities = none. PDA owns liquidity. Nothing to reclaim.

9

Team or treasury wallet?

~5% dev wallet for listings & infra. Fully disclosed on-chain.

10

Taxes or fees?

Zero token tax. Only Solana + AMM fees.

11

Why do scanners show warnings?

Scanners often misread CLMM positions because they treat the vault as a “normal wallet holder.” When scanners update their CLMM logic, this will automatically classify as permanently locked

12

How to verify?

Check PDA ownership, mint authorities, and CLMM position on-chain. Links on this page.

13

How to buy?

Phantom → Raydium → paste mint. Start small. Verify.

14

Risks?

Volatility, liquidity shifts, UI lag. No human risk — but full market risk.

15

Is $ACKE a presale?

No. It behaves similarly to a presale, but it is fully live liquidity on Raydium from day one. The “soft cap” effect comes from the CLMM mechanics, not from time-locked presale contracts. It is trustless, automated, and permanent — not a traditional presale.

16

The short version

  • Immutable: no mint, no freeze, no owner.
  • Liquidity in PDA-owned CLMM.
  • Trading = math + demand. Nothing promised.

CLMM & PDA Mechanics

CLMM

Raydium’s concentrated-liquidity AMM. Positions live in on-chain accounts with a chosen price range; far more capital efficient than classic x·y=k AMMs.

CLMM Position Account

An on-chain account that represents the position & its price range. Whoever owns this account controls the liquidity (add/remove/collect per program rules). It’s often “NFT-like,” but not a Metaplex NFT.

PDA

A program-derived address (no private key). When the CLMM position account is owned by a PDA, only the program’s code can act. No human can unlock, transfer, or drain the liquidity.

Why PDA-owned?

No keys to compromise, no backdoor authority. Liquidity is effectively “burned” to code—verifiable on-chain and bound to the CLMM rules forever.

Launch Design

~95% of the 500M supply was paired vs. SOL at launch and locked via a PDA-owned CLMM position account. That keeps whales from steering supply and makes $ACKE naturally track SOL while the pool holds tokens.

When Pool Thins

As $ACKE leaves the pool, trading shifts toward P2P discovery. The SOL side stands as a permanent “guardian of the floor,” auto-filling sells at the base ratio if it’s ever revisited.

$ACKE — Built to Endure

Immutable. Transparent. Timeless.

Back to Main Site