Over the past 30 days, I have been tracking an anomaly in the on-chain lending markets. The token of HomeRun DAO (HRD) — a protocol that tokenizes future revenue streams from Major League Baseball teams — has seen its short interest climb to 42% of circulating supply. This is not a figure from a memecoin or a yield farm. This is a protocol backed by real-world assets, audited by three firms, and covered by institutional-grade insurance. The data from Aave V3 shows a single address accumulating 18% of the total borrowed HRD supply. The block height does not lie. Something fundamental is fracturing beneath the surface.

HomeRun DAO launched in early 2024 with a simple premise: investors could stake USDC to mint hTokens that represent a claim on a portion of the stadium ticket sales, broadcast rights, and merchandise revenue of a specific MLB team — in this case, the Atlanta Braves. The protocol’s smart contract, written in Solidity, uses a Chainlink oracle to pull monthly revenue reports from the team’s official accounting system. The revenue is then distributed pro-rata to hToken holders. The system was designed to be immutable, with a governance module that allows token holders to vote on adjustments to the revenue split, the oracle address, and the fee structure. The project raised $12 million in a seed round led by a16z and was praised for its elegant bridging of TradFi and DeFi.

But in May 2024, a labor dispute between the MLB Players Association and the league threatened to cancel the 2024 season. The Braves’ revenue projections, which were the sole basis for the hToken’s cash flow, were suddenly uncertain. The market reacted swiftly. Within two weeks, the short interest on HRD skyrocketed from 5% to 42%. The ledger remembers what the market forgets: the market is pricing in a catastrophic loss of revenue, but the real risk may be buried in the governance contract.
Core Analysis: On-Chain Data and Simulation
Part A: The Short Interest Footprint
I extracted the HRD borrow data from Aave V3’s Polygon deployment using a custom Python script. The borrow volume peaked on May 15, 2024, at 2.1 million HRD tokens, representing 42% of the total supply. The utilization rate reached 89%, driving the borrow APR to 34%. The largest borrower is a wallet labeled "0x7f3…b9c2" which has been consistently borrowing HRD and depositing USDC as collateral. The wallet’s health factor is 1.05, dangerously close to liquidation. This is a concentrated short position. If the price of HRD moves against the short, a cascade of liquidations could occur.
Part B: Monte Carlo Simulation of Revenue Scenarios
To quantify the impact of the labor dispute, I built a simulation in Python that models the Braves’ revenue under three scenarios: (1) season proceeds normally, (2) season is delayed by 50 games, and (3) season is cancelled entirely. The simulation uses historical attendance data from 2019-2023, ticket price elasticity, and broadcast contract terms. The results are stark: under scenario 3, the Braves’ annual revenue drops by 68%, which would reduce the hToken’s annual yield from 8.4% to a negative 2.1% (since the protocol still has operating costs). The protocol’s reserve fund, which holds 1.5 million USDC, would be depleted within 6 months. The short thesis is mathematically sound — but only if the revenue never recovers.
Part C: The Governance Vulnerability
During my audit of the HomeRun DAO codebase in February 2024, I identified a critical flaw in the governance module. The quorum requirement for proposals is set at 2% of the total HRD supply. This is extremely low. In a typical DeFi protocol, quorum is 10-20%. The rationale was to encourage participation, but the consequence is that a coordinated minority can pass any proposal. The proposal to change the revenue oracle address, for example, requires only a simple majority of votes cast, and the quorum is 2%. This means that an attacker controlling just 1.1% of the supply (plus some sybil voting power) could hijack the oracle and redirect revenue to a wallet they control.
The source code shows: