The $NYX token
NYX is a plain, fixed-supply ERC-20 — deliberately clean so it integrates with every wallet, router, and aggregator. It carries no transfer tax. Two launch protections sit on top.
1% buy / 1% sell tax — paid in ETH
The tax lives in the Uniswap V4 pool hook, not the token. On every swap it skims 1% of the ETH side:
- Buy (ETH → NYX): 1% of the ETH going in is taken, in
beforeSwap. - Sell (NYX → ETH): 1% of the ETH coming out is taken, in
afterSwap.
You are never taxed in NYX — the treasury collects ETH, so there's no reflexive sell pressure on the token. The rate is a hard-coded constant: there is no admin switch to crank it up or freeze trading.
2% max-wallet at launch
An anti-whale / anti-bot cap: no single non-exempt wallet may hold more than 2% of supply. The pool, router, and treasury are exempt so liquidity and the tax always work. The owner can lift the cap once, permanently, with removeLimits() — and can never re-impose it. While active, the cap is floored at 0.1% of supply, so it can't be cranked to zero to freeze transfers (honeypot protection).
At a glance
| Property | Value |
|---|---|
| Supply | 1,000,000,000 NYX (fixed) |
| Transfer tax | none (tax is in the V4 hook) |
| Swap tax | 1% buy / 1% sell, in ETH |
| Max wallet | 2% of supply at launch (one-way removable) |
| Standard | ERC-20 + ERC-2612 permit |
The token holds no minting function after deploy and no mutable tax — nothing about it can be changed to rug holders.