Back to all blogs

9 Mistakes That Kill Token Projects. (EchoTrade x ANCILAR)

9 Mistakes That Kill Token Projects

Almost every mistake on this list is made in the first three months and paid for in month twelve.

A transfer tax added in week two breaks arbitrage between exchanges a year later. A vesting table copied from a template in month one meets a real order book at the first cliff.

Founders experience all nine of these as launch problems. They're build decisions with a long fuse.

The short version: nine mistakes that kill token projects, grouped by when they're made rather than when they hurt. Two happen before any code is written, three between the first commit and the audit, two between the audit and the listing, and two after the token is live. Most are made in the first three months and paid for around month twelve.

Nine mistakes that kill token projects, from the first commit to the first unlock

Why this list took two companies

An engineering firm sees the decision being made. A Market Making desk sees what it costs a year later.

[ANCILAR] We usually get the repository after the decisions are already made: the standard chosen, the vesting table signed, the admin keys assigned to whoever set up the multisig first, and by then most of what we would change is already deployed.

[ECHOTRADE] We quote order books for token projects across 90+ centralized and decentralized exchanges. The nine below are the ones where both of us see the same decision, just at different times.

Nine token launch mistakes grouped by when they are made, from before the first commit to after listing

What goes wrong before anyone writes a line of code?

1. Building the token before the product [ANCILAR]

The mistake. The token contract gets specified and deployed while the product it is supposed to serve is still a diagram.

Why it happens. The token is the fundable artefact. It has a ticker, a supply and a date, so it is the part everyone can picture and the part a raise can be built around. The product has none of that until it works.

What it costs. The contract ends up encoding assumptions the product later contradicts: a fee switch for revenue that never routes through the token, a staking hook for a feature that ships differently, a mint path for an incentive design that changes twice. Each is trivial in a draft and permanent after deployment. We are usually asked to add the missing behaviour to a live token, and the honest answer is a migration.

2. Locking tokenomics before modelling what vesting does to an order book [ECHOTRADE]

The mistake. The allocation table, cliff dates and unlock sizes get locked into a fundraising document. Nobody checks what those tranches look like against the volume the token will actually have.

Why it happens. Tokenomics gets designed as a distribution problem, which is what it is. Investors need the table before they commit. The market-structure question turns up months later, usually from a different advisor, and by then the numbers are in signed documents.

What it costs. It lands at the first cliff. What decides whether an unlock gets absorbed isn't its size in dollars. It's its size against daily volume. A tranche worth several days of turnover moves the price no matter who's quoting the book. Tokenomics is close to immutable after launch, so at that point you're choosing how the supply arrives, not how much of it does.

What goes wrong between the first commit and the audit?

3. Contract features that cause problems later [ANCILAR + ECHOTRADE]

Transfer taxes, blacklists, rebasing supply, pausable transfers, unclear mint permissions.

The mistake. Features get added to the token contract because they are easy to add at the time, not because the design needs them.

Why it happens. Most of them enter as risk controls. A pause function looks prudent. A blacklist looks like a way to respond to a hack. A transfer tax looks like a funding mechanism that costs nobody anything. Each is a small addition during development and reads as caution rather than as a liability.

What it costs. Every one of them widens what an auditor has to prove and what an integrator has to handle. A rebasing supply breaks any contract that stores balances. Pausable transfers turn every integration into a liveness dependency on your keys. Unclear mint permissions are among the first things we look for in a smart contract audit, and the hardest to walk back once tokens are in circulation.

What it costs on the market side [ECHOTRADE]. A transfer tax applies to every transfer. That includes the ones a desk makes moving inventory between venues. It changes the arithmetic on arbitrage between exchanges, and at some tax levels it makes the token uneconomic to quote at a normal spread.

A blacklist or a pausable transfer function reads differently at listing review than it does in the repo. Both are controls the team can use against users, so they come up in the compliance part of the listing application, not the technical part.

4. Treating the audit as a gate at the end rather than a process during [ANCILAR]

The mistake. The audit is booked as a milestone near the listing date, once the code is considered finished.

Why it happens. It is procurement logic and it is reasonable. You audit the finished thing. Booking earlier feels like paying to review code you are still going to change.

What it costs. Findings that need an architectural change arrive when the architecture is the one thing nobody wants to touch. In a pre-mainnet review of a multi-decimal vault we found a rounding error that required moving from standard math to high-precision fixed-point libraries: routine in month two, a re-audit and a moved date in month nine. The same compression removes the remediation review, so fixes ship without anyone verifying that the fix did not introduce the next finding.

5. Vesting kept in a spreadsheet instead of in the contract [ANCILAR]

The mistake. The vesting schedule lives in a spreadsheet and is executed by whoever holds the keys on the day.

Why it happens. The table already exists in the fundraising documents and it works. A vesting contract is a build item competing with product work, and for the first few months a calendar reminder does the same job.

What it costs. It converts a commitment into a discretionary action. Manual transfers can go early, go late, go to the wrong address, or arrive in one transaction rather than the tranches investors were shown. None of it is verifiable from outside, so counterparties who want proof of the unlock calendar have nothing to read. Putting the schedule on-chain, which is standard practice in the tokenization work we do, makes it a fact rather than a promise.

What goes wrong between the audit and the listing?

6. Engaging a Market Maker one week before an announced listing date [ECHOTRADE]

The mistake. The listing date gets agreed and announced. Then the desk gets contacted.

Why it happens. The order looks right from outside. Get the listing, then arrange liquidity for it. The application also asks who your designated Market Maker is, and some teams answer that with an intention rather than a signed agreement.

What it costs. Four to six weeks before the listing is the working standard for onboarding. That covers venue integration, API access and connectivity testing, inventory positioned on each venue, and quoting parameters set for the pair. Squeeze it into one and the first things cut are integration and inventory. The book opens thinner than the listing agreement requires, from hour one, with the obligations already running.

7. Signing a listing agreement without reading the depth, spread and uptime obligations [ECHOTRADE]

The mistake. The agreement gets read for the fee and the date. The depth, spread and uptime obligations are the part measured continuously afterwards, and they're the part nobody reads.

Why it happens. The fee was negotiated, so it has everyone's attention. The obligations read like boilerplate, and they arrive inside a document that's already been through legal for other reasons.

What it costs. They're measured from the first hour of trading, not after a grace period. MEXC publishes its thresholds openly: an average daily buy-sell spread above 2% for 15 consecutive days is enough to trigger a warning designation, and delisting can follow three days after that. Those same obligations set your inventory requirement per venue. A team that hasn't read them hasn't sized its capital either.

What goes wrong once the token is live?

8. No monitoring after deployment [ANCILAR]

The mistake. The contract is deployed, the audit report is filed, and nothing watches the system afterwards.

Why it happens. The audit reads as completion. It is a point-in-time review of code, but it arrives at the end of the build and gets treated as a warranty on everything that follows.

What it costs. What hurts after launch is usually not a code bug. It is an admin key used at three in the morning, a pool draining over an hour, an oracle drifting away from the market, a mint from an address nobody recognises. All of it is visible on-chain and none of it pages anyone by default, which is why we treat alerting as part of the DeFi infrastructure rather than as operations overhead. Skipping a testnet period with real users has the same shape: the only failure modes you find are the ones you already imagined.

9. Expecting a Market Maker to create demand [ECHOTRADE]

The mistake. The desk gets hired to make the chart go up.

Why it happens. The two jobs look close from outside. Both show up as the token's price on a screen. The industry hasn't always been careful about the difference either, so a founder reading five desk websites won't reliably find it stated anywhere.

What it costs. A Market Maker manages depth, spread and uptime. It quotes both sides so buyers and sellers can transact near the quoted price without moving it. It doesn't produce buyers.

The real cost sits upstream. Marketing, community and product get under-resourced, because one line in the budget was expected to cover work it was never going to do.

What to do instead

Four steps, in this order.

Get legal and the audit moving first. Both take months. Both get slower under pressure. Together they set the earliest date a listing can happen, whatever the budget allows.

Engage the desk before tokenomics freeze. The unlock calendar is easy to change in a draft and impossible to change in a deployed vesting contract. A desk reading the allocation table before it's signed can tell you which cliff is going to be a problem while it's still editable.

Decide venue count from the liquidity budget, not from ambition. Order books don't connect between exchanges. Each venue needs its own funded depth. Three thin books are worse than two real ones.

Budget six months past listing day. The obligations start on day one and run continuously. The first unlock is usually inside that window.

Four steps to take in order before a token launch

FAQ

How long before a listing should you engage a Market Maker?

Four to six weeks. That covers venue integration, API access and connectivity testing, inventory positioned on each venue, and quoting parameters set for the pair. Shorter is possible. The things that get compressed are integration and inventory, and those are the two that decide how the book opens.

What can a Market Maker not do?

Create demand. A desk manages depth, spread and uptime so buyers and sellers can transact near the quoted price. It doesn't produce buyers and it can't make a token wanted. That work belongs to the product, the community and the marketing.

When should a smart contract audit happen?

Alongside development rather than at the end as a gate. The review should start while the architecture can still change, because the findings that cost a launch date are the ones that need an architectural fix. The final report should be complete, and critical findings resolved and re-verified in a remediation review, before the exchange application goes in. Exchanges ask for the report during review, and one that is still running does not count.

What happens at the first token unlock?

New supply reaches a book sized for the volume the token has today. Whether it gets absorbed depends on the tranche size against daily volume, not its size in dollars. A tranche worth several days of turnover moves the price whoever is quoting.

How long should a token launch budget cover?

At least six months past listing day. Exchange obligations on depth, spread and uptime run continuously from the first hour of trading, and the first unlock is usually scheduled inside that window. A budget that ends at the listing announcement produces problems around month two.

About the companies

Ancilar

Ancilar is a blockchain and AI engineering firm. We build and review the contract layer that token projects launch on, across smart contract audits, tokenization platforms, DeFi protocol infrastructure, exchange systems and wallets. Recent work includes an end-to-end mortgage-backed security tokenization platform with legal-to-code bridges, custom AMM curves and Uniswap v4 hook integrations for a high-volume liquidity provider, and a 22% gas reduction on a matching engine achieved by moving multi-hop routing into singleton contracts and using transient storage (EIP-1153). More at ancilar.com.

EchoTrade

EchoTrade is a crypto Market Making firm founded in 2023. It works with token projects across more than 90 centralized and decentralized exchanges, with 20+ traders managing order books, supporting over 100 active projects and more than 2,000 token launches. EchoTrade is an official Liquidity Partner of MEXC.

Planning a listing? We handle the market structure side: order book depth, spreads and uptime across 90+ exchanges. Tell us about your project before you submit the application, not after.