Standard Jetton
Versatile fungible token — safest default.
Audited TON jetton pattern (mint/transfer/burn) from plx-token. For utility, community, or rewards where you do not need special distribution logic.
Use this template →TON/GRAM BLOCKCHAIN • WEB TOKENIZATION • ACTON • NO-CODE
Pick an audited template, or describe your token to PLX-86 Assist in plain language. We sign, deploy, and verify on-chain — rehearse on the TON testnet sandbox first, then promote to mainnet when you are ready.

$ curl -LsSf https://github.com/ton-blockchain/acton/releases/latest/download/acton-installer.sh | shThen `acton build && acton test` — same contracts that run PLX testnet.
Start from a template
Don't have a clear idea yet? Start from one of our battle-tested templates. Each one is open-source, passes 60/60 Acton tests, and is ready to deploy in minutes — just fill in the name, supply, and distribution. No coding required.
Already have something custom in mind? Describe it in plain language and our AI will write the smart contract for you to review.

Versatile fungible token — safest default.
Audited TON jetton pattern (mint/transfer/burn) from plx-token. For utility, community, or rewards where you do not need special distribution logic.
Use this template →Transparent allocations — not opaque insider dumps.
Jetton suited to documented airdrops, team buckets, and treasury splits with public cap tables and multisig — not for hidden one-sided profit extraction.
Use this template →On-chain deflation — irreversible burn only.
Jetton with permanent burn for disclosed fee recycling, buyback-and-burn, or consumable game items — not as a disguise for team exits.
Use this template →Hard supply cap — no inflation.
Jetton with a maximum supply; extra minting disabled after deploy. Strongest default for public trust when you will not need more inflation.
Use this template →Unique items — decimals 0.
NFT / SBT on TON: each item is unique, not a fractional fungible traded as a security narrative.
Use this template →Non-standard ideas — manual review required (beta).
Experimental path: Phalanx reviews parameters before mainnet. We do not deploy honeypots, hidden taxes, impersonation clones, or opaque owner privileges.
Use this template →PLX-86 Assist
You don't need to know what a Jetton is, what gas means, or how Tolk works. Just describe what you want your token to do. PLX-86 Assist translates it into audited smart-contract code — and you stay in control of the review and the keys.
Type what you want in your own words. Example: "A token where 5% of every transfer goes to a charity wallet, with a hard supply of 100 million."
PLX-86 Assist writes the Tolk smart contract + matching unit tests. You see the source, not a black box.
Auto-flags red flags (admin escape hatches, unbounded loops, gas issues). Ask PLX-86 Assist to revise — or accept the draft.
We sign, broadcast, and verify the contract on Tonviewer. You own the keys, we never custody.
Platform fit
The same ideas behind modern TON tooling — dApp integration, agent-friendly workflows, safe rehearsal, and verifiable output — packaged as a no-code launch path on top of audited Acton + Tolk contracts.
From product to dApp
Already shipping a web or mobile app? Add a TON jetton layer with TypeScript wrappers and TON Connect — your users keep the same UX while balances and transfers move on-chain.
Hermes · OpenClaw · your stack
PLX-86 Assist and the same audited deploy surface humans use are built for agents: structured scripts, predictable metadata, and review gates before anything hits mainnet.
Try everything — risk-free
Every launch rehearses on testnet first: identical bytecode, real wallet flows, and Tonviewer proofs. When stakeholders sign off, promote to mainnet — no surprise diffs.
Audit trail, not vibes
60/60 Acton tests, open Tolk source, Tonviewer verification, cap-table receipts, and dashboard exports — the complete report investors and partners expect.
How it works
A live walk-through of every step, in order. Click and hold the demo to pause; release to resume.





1// SPDX-License-Identifier: MIT2// PhalanxToolkit · JettonMinter · audited3import "@stdlib/tvm-dicts"45const op::transfer = 0xf8a7ea5;6const op::burn = 0x595f07bc;7const op::mint = 0x178d4519;89global storage::admin: address;10global storage::total_supply: int;11global storage::content: cell;12global storage::wallet_code: cell;1314fun loadStorage() {15 var ds = getData().beginParse();16 storage::total_supply = ds.loadCoins();17 storage::admin = ds.loadAddress();18 storage::content = ds.loadRef();19 storage::wallet_code = ds.loadRef();20}2122fun saveStorage() {23 setData(beginCell()24 .storeCoins(storage::total_supply)25 .storeSlice(storage::admin)26 .storeRef(storage::content)27 .storeRef(storage::wallet_code)28 .endCell());29}3031fun onInternalMessage(msg: cell) {32 val cs = msg.beginParse();33 val flags = cs.loadUint(4);34 if (flags & 1) { return; } // bounced3536 val sender = cs.loadAddress();37 cs.skipBits(64 + 32); // value, fwd_fee38 val body = cs.loadRef();39 val op = body.beginParse().loadUint(32);4041 loadStorage();42 if (op == op::mint) { handleMint(sender, body); }43 elseif (op == op::burn) { handleBurn(sender, body); }44 saveStorage();45}4647// audited 2026-04-30 · 60/60 tests passed48// keys: operator-only mint, holder-only burn, no admin escape
Match against on-chain bytecode
EQDx7…y9fQ · 142 lines · 60/60 tests passed
Step 1 of 6
Sign up
Click "Build my token" and authenticate with Google or GitHub. Takes about 10 seconds — no credit card needed yet.
Token archetypes
A snapshot of the categories the toolkit is built to deploy — from loyalty and treasury tokens to vesting-locked DAO assets. Real launches will be listed here as they go live.
PLX
PLXWhy Phalanx
The TON ecosystem has too many deployers that hide what they're shipping. Phalanx is the opposite: the contract is the product, the tests are public, and you sign every transaction.
Every contract template ships with a unit-test suite that runs on Acton. No surprise bugs, no hidden behavior.
You can read the entire smart contract before you sign. No upgradeable proxies, no admin escape hatches, no centralized JSON metadata.
Sign in with Google or GitHub, fill in a form, and your token is live on testnet. Mainnet promotion is a single click.
TON, PLX (50% off), USDT, BTC, ETH, and PayPal. Direct credit-card checkout lands shortly after backend launch. We cover the operator gas — you pay one flat amount.
Don't know how to write a smart contract? Just describe what you want in English. PLX-86 Assist writes audit-ready Tolk for you.
Every contract, every wrapper, every script is on GitHub. You can audit, fork, and run it yourself. No black box.
Who it's for
Whether you're a solo founder, a community treasury, an app team wiring TON into an existing product, or a Web3 agency — Phalanx packages audited contracts, sandbox testnet rehearsal, and on-chain proof so you focus on the business, not the bytecode.
Launch a token without hiring a team
You have an idea, an audience, and zero budget for a Solidity dev. Pick a template, fill the form, deploy. Done in an afternoon.
Distribute fairly, lock the team
Use the Distribution template — vesting is enforced on-chain at deploy time. The team can't dump because the contract physically won't let them.
Turn your app into a dApp
You already have users and a product roadmap. Add a jetton layer with TON Connect and generated wrappers — PLX-86 Assist or your own agent can drive the same deploy flow.
White-label deployments for your clients
You handle a portfolio of token launches. We handle the contracts, tests, and audits. You charge your client and pocket the difference.
What the toolkit ships
Phalanx isn't another deployer UI on top of an unread contract. It is the contract — exposed, tested, and operated through Acton.
JettonMinter, JettonWallet, TeamVesting — 60/60 Acton tests, gas-bounded, bounce-safe, TEP-74 + TEP-89 compliant.
Name, ticker, decimals, image — encoded TEP-64 dictionary so wallets like Tonkeeper render correctly without a centralized JSON.
TeamVesting locks supply at deploy time. No upgradeable proxies, no admin escape hatch — just claim(now) against a sealed schedule.
Every deploy includes test results, Tonviewer proof, GitHub source links, and dashboard exports — the due-diligence pack partners and investors expect.
Every operator action is a Tolk script with deterministic args. AI agents can ship a Jetton through the same surface a human uses.
PLX testnet is a full-fidelity rehearsal: same compiler, same storage layout, same wrappers. Mainnet promotion is just a network flag.
Open source
Every template ships as audited Tolk — JettonMinter, JettonWallet, TeamVesting. Browse the source, run Acton tests locally, then deploy through the same bytecode path we use for PLX.
// Tolk — operations the minter accepts on TON
fun handleInternal(
msg: cell,
sender: address,
body: slice
): void {
val op = body.loadOp();
match (op) {
op::mint => doMint(body, sender);
op::transferAdmin => doTransferAdmin(body, sender);
op::changeContent => doChangeContent(body, sender);
op::dropAdmin => doDropAdmin(sender);
else => throw error::unknownOp;
}
}Extra depth
Why trust Phalanx
Phalanx Foundation publishes audited smart contracts, runs the same deploy path you use, and proves every mainnet claim with public repos and explorer links.
Experience
PLX Token is our live reference Jetton on the TON/GRAM Blockchain — deployed with the same Phalanx Toolkit wizard, Tonviewer verification, and mainnet operations you get as a customer.
Reference token: PLX Token · same bytecode testnet → mainnet path
Expertise
JettonMinter, JettonWallet, and TeamVesting ship with 60/60 Acton unit tests, TEP-74/TEP-64 compliance, and readable Tolk source — no upgradeable proxy templates on standard tiers.
Open source: github.com/phalanx-foundation/plx-token
Authoritativeness
Independent infrastructure team focused on Web3 crypto tokenization — tooling, PLX Token economics, and agent-ready Acton scripts cited by partners and builders in the ecosystem.
Publisher: Phalanx Foundation · plx.foundation
Trustworthiness
No custodial deploy keys. Transparent pricing, published Terms and Security policy, responsible disclosure channel, and on-chain receipts — contracts keep running even if you cancel the dashboard.
Security · Terms · Contact — all on plx.foundation
Subscriptions plan
Two parts, no surprises: a one-off build & deploy fee for the contract going on-chain, then a small monthly subscription that keeps your dashboard, audit reports, on-chain activity feed, and concierge support online. Cancel any time and your contract still runs — you own the keys.
Single Jetton, audited.
Or 20 TON · 10 PLX (-50%)
+ monthly subscription
Keeps dashboard, on-chain feed, audit reports & support running. Free with 25,000 PLX hold; otherwise $10/month.
Vesting + multi-wallet rollout.
Or 40 TON · 20 PLX (-50%)
+ monthly subscription
Keeps dashboard, on-chain feed, audit reports & support running. Free with 25,000 PLX hold; otherwise $10/month.
Custom contracts, SLA, dedicated team.
Or 100 TON · 50 PLX (-50%)
+ monthly subscription
Keeps dashboard, on-chain feed, audit reports & support running. Free with 25,000 PLX hold; otherwise $10/month.
TON testnet
Try free on testnet.
+ monthly subscription
FREE 100%
Full premium dashboard & analytics when you upgrade to a paid tier and hold 25,000 PLX.
Front-line Phalanx Shield Discount
Among the first fifty operators to deploy through Phalanx Toolkit? You get the launch discount — pay with PLX and we cut another 50% off, then burn the PLX you paid at the contract level. Direct fee burn, fully on-chain.
Built on top of
The open-source projects whose contracts, tooling, and on-chain surface Phalanx integrates with. Listing here is recognition of these projects, not a claim of formal partnership.