// Section 8.3 · Token
Transaction tax
1 min8.3Token
5 % on every buy and sell. Split three ways.
TABLE
| Bucket | Rate | Purpose |
|---|---|---|
| Development | 2 % | Platform upgrades, protocol security, features. |
| Operations | 2 % | Infrastructure, community, day-to-day operations. |
| Marketing | 1 % | Awareness, partnerships, community incentives. |
Mechanics. ERC-20 has no native concept of buy vs. sell. The tax is
implemented via a custom transfer hook (_beforeTokenTransfer or
equivalent) that classifies a transfer by checking source and
destination against a known router-and-pair allowlist:
- Transfers from a known DEX pair to a wallet count as a buy.
- Transfers from a wallet to a pair count as a sell.
- Wallet-to-wallet transfers are untaxed.
This makes $PRLX a fee-on-transfer (FoT) token. Two consequences:
- The launch DEX is a V2-style AMM (Uniswap V2 or equivalent). Uniswap V3 does not natively support FoT tokens and is not a launch target.
- Third-party tooling (aggregators, chart providers, wallets) must be FoT-aware.
The tax does not fund node operators. It does not compound. It does not decrease over time. It does not represent a buyback or burn.