Table of Contents
Fetching ...

Counted NFT Transfers

Qin Wang, Minfeng Qi, Guangsheng Yu, Shiping Chen

TL;DR

This work studies counted NFT transfers and introduces ERC-7634 as a minimal realization compatible with ERC-721, position ERC-7634 within the NFT mobility design space, derive practical cap-selection guidelines, and discuss post-cap ownership outcomes including soulbound conversion, auto-burn, and provenance freeze.

Abstract

Non-fungible tokens (NFTs) on Ethereum currently follow a binary mobility paradigm: ERC-721 enables unrestricted transfers, whereas SBTs (ERC-5192) prohibit transfers entirely. We identify a design gap in which no standard mechanism supports bounded transferability, where ownership mobility is allowed but limited to a finite number of programmable transfers. We study counted NFT transfers and introduce ERC-7634 as a minimal realization compatible with ERC-721. The design augments each token with a transfer counter and configurable cap L, allowing ownership to evolve under a finite transfer budget. ERC-7634 defines a minimal extension interface with three lightweight functions (transferCountOf, setTransferLimit, and transferLimitOf), two events, and native-transfer hooks, requiring fewer than 60 additional lines of Solidity while preserving full backward compatibility with existing NFT infrastructure. We analyze behavioral and economic consequences of counted transfers. Our results reveal (i) a mobility premium induced by remaining transfer capacity, (ii) a protocol-level costing signal that can deter wash trading in cap-aware markets through irreversible budget consumption, (iii) bounded recursive collateralization enabled by limited ownership turnover, and (iv) associated security and gas-cost implications, including wrapper-bypass trade-offs. Evaluation on calibrated simulations shows that moderate limits (e.g., L = 10) affect fewer than 15% of tokens under representative transfer distributions, while repeated manipulation becomes unprofitable after a few cycles in a cap-aware pricing model; the additional gas overhead remains below 11% per transfer. We further position ERC-7634 within the NFT mobility design space, derive practical cap-selection guidelines, and discuss post-cap ownership outcomes including soulbound conversion, auto-burn, and provenance freeze.

Counted NFT Transfers

TL;DR

This work studies counted NFT transfers and introduces ERC-7634 as a minimal realization compatible with ERC-721, position ERC-7634 within the NFT mobility design space, derive practical cap-selection guidelines, and discuss post-cap ownership outcomes including soulbound conversion, auto-burn, and provenance freeze.

Abstract

Non-fungible tokens (NFTs) on Ethereum currently follow a binary mobility paradigm: ERC-721 enables unrestricted transfers, whereas SBTs (ERC-5192) prohibit transfers entirely. We identify a design gap in which no standard mechanism supports bounded transferability, where ownership mobility is allowed but limited to a finite number of programmable transfers. We study counted NFT transfers and introduce ERC-7634 as a minimal realization compatible with ERC-721. The design augments each token with a transfer counter and configurable cap L, allowing ownership to evolve under a finite transfer budget. ERC-7634 defines a minimal extension interface with three lightweight functions (transferCountOf, setTransferLimit, and transferLimitOf), two events, and native-transfer hooks, requiring fewer than 60 additional lines of Solidity while preserving full backward compatibility with existing NFT infrastructure. We analyze behavioral and economic consequences of counted transfers. Our results reveal (i) a mobility premium induced by remaining transfer capacity, (ii) a protocol-level costing signal that can deter wash trading in cap-aware markets through irreversible budget consumption, (iii) bounded recursive collateralization enabled by limited ownership turnover, and (iv) associated security and gas-cost implications, including wrapper-bypass trade-offs. Evaluation on calibrated simulations shows that moderate limits (e.g., L = 10) affect fewer than 15% of tokens under representative transfer distributions, while repeated manipulation becomes unprofitable after a few cycles in a cap-aware pricing model; the additional gas overhead remains below 11% per transfer. We further position ERC-7634 within the NFT mobility design space, derive practical cap-selection guidelines, and discuss post-cap ownership outcomes including soulbound conversion, auto-burn, and provenance freeze.
Paper Structure (39 sections, 1 theorem, 10 equations, 15 figures, 10 tables, 2 algorithms)

This paper contains 39 sections, 1 theorem, 10 equations, 15 figures, 10 tables, 2 algorithms.

Key Result

Proposition 1

Under the concave valuation model with $\gamma=0.5$, consider a cap-aware market in which buyers observe remaining transfer counts on-chain and price tokens accordingly. The attacker's profit after performing $n$ wash trades is where $\alpha$ denotes the artificial price inflation induced by wash trading, $g$ is the per-trade transaction cost, and is the transfer-adjusted fair value after $n$ tr

Figures (15)

  • Figure 1: Token mobility. ERC-7634 fills the design gap between non-transferable Soulbound Tokens (left) and fully transferable ERC-721 (right), enabling configurable transfer bounds for gaming, ticketing, memberships, and DeFi collateral.
  • Figure 2: System overview of the ERC-7634 extension. The Transfer Counter, Transfer Limiter, and Enforcement Hooks extend the ERC-721 base layer while exposing read interfaces for external contracts and dApps.
  • Figure 3: Wrapper bypass threat model. An attacker deploys a wrapper contract to hold the original NFT (consuming one transfer), then transfers wrapper ownership freely, bypassing ERC-7634's transfer cap. Mitigations are on the right.
  • Figure 4: Transfer count distributions across collection types. Cap thresholds at $L \in \{5,10,20\}$ are shown as dashed lines.
  • Figure 5: Token percentages exceeding each transfer cap by collection type. Darker cells indicate stronger cap impact.
  • ...and 10 more figures

Theorems & Definitions (3)

  • Definition 1: Mobility Premium
  • Proposition 1: Wash Trading Deterrence in a Cap-Aware Pricing Model
  • Definition 2: Wrapper Bypass