A token that deducts a fee on every transfer, meaning the recipient receives less than the sender sent. These tokens break pre-calculated swap amounts because the actual tokens arriving at the pair differ from the expected amount. Uniswap V2 Router has special functions that measure actual balances instead of trusting calculations.
Architecture
Fee-on-Transfer Token
Related terms in Architecture
Factory Pattern
A design pattern where one contract (the Factory) creates and registers other contracts (Pairs/Pools). In Unis...
CREATE2
An EVM opcode that deploys contracts to deterministic addresses based on the deployer address, a salt, and the...
Proxy Pattern
A smart contract architecture where users interact with a proxy contract that delegates calls to a separate im...
Core vs Periphery
An architecture pattern separating immutable, security-critical logic (Core: Pair, Factory) from replaceable u...