Skip to main content

// Section 8.3 · Token

Transaction tax

1 min8.3Token

5 % on every buy and sell. Split three ways.

TABLE
BucketRatePurpose
Development2 %Platform upgrades, protocol security, features.
Operations2 %Infrastructure, community, day-to-day operations.
Marketing1 %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:

  1. 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.
  2. 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.