Skip to content

pandaboost/PhantomChatTrending

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

PandaBoost — Phantom Chat Trending

PHANTOM CHAT TRENDING

Get your token trending in Phantom Chat — reach thousands of active Solana traders directly.

Promote your token inside Phantom's built-in chat and discovery feed. Fast delivery, stealth mode, full refund guarantee.


💥 Service Details

  • Platform: Phantom Wallet Chat (phantom.app)
  • Placement: Chat Trending Feed
  • Duration options: 6h · 12h · 24h
  • Chain: Solana
  • Start time: Instant (within 60 seconds)
  • Guarantee: Full refund if delivery fails

💰 Pricing

Package Price
6 hours $500
12 hours $800
24 hours $1,200

💡 Bundles (save 10%)

Bundle Includes Price
Starter Trending 6h + Chat 6h + Visitors 6h $1,700
Growth Trending 12h + Chat 12h + Visitors 12h $2,900
Full Power Trending 24h + Chat 24h + Visitors 24h $4,900

🌐 How to Order

Option 1 — Web Panel

  1. Go to web.pandaboost.app
  2. Connect your wallet (EVM via WalletConnect or Solana)
  3. Add funds via crypto
  4. Open New Order → Phantom → Chat Trending
  5. Select duration (6h / 12h / 24h)
  6. Paste your token address → confirm

Option 2 — Telegram Bot

Open @pandaboostbot → New Order → Phantom → Chat Trending


🔌 API Example

Order Phantom Chat Trending programmatically via the PandaBoost API.

Base URL: https://web.pandaboost.app/api/v1
Auth: x-api-key: pb_... header

Python

import requests

API_KEY = "pb_your_api_key"
BASE_URL = "https://web.pandaboost.app/api/v1"
HEADERS = {"x-api-key": API_KEY, "Content-Type": "application/json"}

order = requests.post(f"{BASE_URL}/orders", headers=HEADERS, json={
    "serviceName": "phantom-chat-trending",
    "orderTypeId": "12h",      # 6h | 12h | 24h
    "quantity": 1,
    "fields": {
        "token_address": "YOUR_TOKEN_ADDRESS",
        "chain": "solana"
    }
})

print(order.json())
# {"success": true, "data": {"order": {"publicId": "ABCD1234", "status": "processing"}, "newBalance": "..."}}

JavaScript

const res = await fetch("https://web.pandaboost.app/api/v1/orders", {
  method: "POST",
  headers: { "x-api-key": "pb_your_api_key", "Content-Type": "application/json" },
  body: JSON.stringify({
    serviceName: "phantom-chat-trending",
    orderTypeId: "24h",        // 6h | 12h | 24h
    quantity: 1,
    fields: {
      token_address: "YOUR_TOKEN_ADDRESS",
      chain: "solana"
    }
  })
});
const data = await res.json();
console.log(data.data.order.publicId);

cURL

curl -X POST -H "x-api-key: pb_..." \
  -H "Content-Type: application/json" \
  -d '{
    "serviceName": "phantom-chat-trending",
    "orderTypeId": "24h",
    "quantity": 1,
    "fields": {
      "token_address": "ErKGCuxZeMQoS3VhFJZ77giESQphJhGpYDaUJmhApump",
      "chain": "solana"
    }
  }' \
  https://web.pandaboost.app/api/v1/orders

Check Order Status

curl -H "x-api-key: pb_..." \
  https://web.pandaboost.app/api/v1/orders/ABCD1234

📦 Other Phantom Services

Service Price
Phantom Wallet Trending $1,200 / 6h · $2,000 / 12h · $3,600 / 24h
Phantom Token Visitors $200 / 6h · $400 / 12h · $600 / 24h

📦 Other Services

Service Price
DEX Screener Reactions $25 / 1,000
DEX Screener Trending SOL $1,200 / 12h · $1,600 / 24h
DEX Screener Trending ETH/BSC/Base from $1,000 / 24h
DexTools Trending available in panel
CoinMarketCap available in panel
Coingecko & GeckoTerminal available in panel

Full catalog → web.pandaboost.app


🔗 Links

⭐ Star this repo if it helped you. PRs and issues welcome.

About

Phantom Chat Trending for your Solana token — reach active traders in Phantom chat. From $500/6h. Instant delivery via PandaBoost API.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors