Integration guide

Connect your token to the dashboard

TON has great on-chain infrastructure but lacks a builder-facing analytics layer. Phalanx fills that gap. Connect any existing TEP-74 jetton to our dashboard and get holder growth charts, on-chain activity, DEX swap tracking, and a public Midas Hand listing — all gated by PLX token hold.

No re-deploy requiredAny TEP-74 jettonHold 25,000 PLX for access
01

Hold PLX tokens

Hold at least 25,000 PLX in your linked Tonkeeper wallet. PLX is required to access the analytics dashboard — it's a proof of alignment, not a recurring fee.

02

Sign in and link your wallet

Create a Phalanx Toolkit account and link your Tonkeeper via TonConnect. This wallet will be checked for PLX balance and used to authenticate API calls.

03

Register your token minter address

Call the integration API with your existing token minter address on TON mainnet. Your token does not need to be deployed via Phalanx — any TEP-74 jetton is supported.

POST /integrations/register
Authorization: Bearer <your-jwt>
Content-Type: application/json

{
  "minter_address": "EQA...your_token_minter",
  "name": "My Token",
  "symbol": "MTK"
}
04

Explore the analytics dashboard

Once registered, your token appears in the Phalanx dashboard with holder growth charts, on-chain transfer history, buy/sell activity from DEX pools, wallet histogram, and LP metrics (if a pool exists).

05

Add project profile (recommended)

Complete your project profile — add social links, a project description, and LP pool address. This unlocks the Midas Hand listing where investors can discover your token.

PATCH /integrations/{integration_id}/profile
Authorization: Bearer <your-jwt>
Content-Type: application/json

{
  "description": "Describe your project…",
  "twitter": "https://x.com/yourproject",
  "telegram": "https://t.me/yourproject",
  "website": "https://yourproject.io",
  "email": "[email protected]",
  "telegram_username": "@yourhandle",
  "lp_pool_address": "EQA...pool"
}
06

Wallet history & histogram

The dashboard will start indexing your token's transfer and swap history from TonAPI and Ston.fi. A time-series histogram shows wallet growth over time. Data refreshes every 15 minutes.

What you get

  • Holder growth histogram (time-series chart)
  • On-chain transfer & swap activity feed (buy/sell classification)
  • LP pool metrics — TVL, 24h volume (from Ston.fi)
  • Midas Hand public listing for investor discovery
  • PLX TOKEN CHANGER — AI-assisted swap widget on your dashboard
Back to home