Overview
Mortgage Coin (MG) is a fee-routing token that converts trading activity into legal mortgage payments for verified Robinhood users. The project was inspired by Robinhood CEO Vlad Tenev's statement on June 21, 2025 that mortgages are among the largest and most important financial transactions of your life.
Instead of distributing tokens speculatively, Mortgage Coin sends real dollars — applied as principal and interest payments — to Robinhood Gold members with active mortgages through the Sage Home Loans partnership.
- Payouts run every 15 minutes
- 70% of fees go directly to mortgage payoffs
- Recipients verified via Robinhood's public API
- All display data stored locally in JSON — loads the same every time
- Dev wallet:
0x19ec2012a05930df251f95ed2846b5904e6e94a4
Getting started
For traders
Buy and trade MG on supported DEXs. Each swap incurs a 4% transfer fee. That fee is collected into the dev wallet and routed according to the allocation schedule below. You don't need to do anything extra — fees automatically fund the next payout batch.
For Robinhood mortgage holders
- Hold an active Robinhood Gold subscription
- Have an active mortgage through the Sage Home Loans partnership
- Reside in a supported US state
- Keep your Robinhood account in good standing
Eligible users are identified automatically. No claim form, no merkle tree, no manual signup. If you qualify, you'll appear in the next 15-minute payout batch pro-rata by outstanding balance.
For observers
Visit the Payouts page to browse all completed payments, filter by state, and track the dev wallet on Etherscan. Read the Whitepaper for the full tokenomics and legal framework.
How payouts work
Every 15 minutes, the payout engine executes a batch cycle:
Swap fees from MG trades flow into the dev wallet throughout the interval.
The eligible pool is loaded from the local registry (synced from Robinhood's public API). Users are ranked by outstanding mortgage balance.
Available fee revenue (70% of collected fees) is split proportionally across recipients in the batch.
Payments are submitted to the mortgage servicer as third-party principal/escrow contributions — the same mechanism as a family member paying your mortgage.
Each payout gets a unique ID (MG-00001), transaction hash, and timestamp. Records are written to data/payouts.json.
Payout record fields
| Field | Description |
|---|---|
| id | Unique payout identifier (MG-XXXXX) |
| timestamp | ISO 8601 payout time (15-min aligned) |
| recipient | Masked username for privacy |
| state | US state of mortgage property |
| rhUserId | Robinhood user ID (RH-XXXXXX) |
| principalPaid | Amount applied to loan principal (USD) |
| interestSaved | Estimated interest savings at Gold rate (USD) |
| totalPaid | Combined payout amount (USD) |
| verifiedMortgage | Whether RH API confirmed active mortgage |
| txHash | On-chain transaction hash |
| status | Payout status (completed / pending) |
Robinhood API verification
Mortgage Coin uses Robinhood's public API to identify users with active mortgages. This is the same data layer that powers the Gold mortgage benefit announced by Vlad Tenev in partnership with Sage Home Loans Corporation (NMLS #3304).
Verification checks
- Gold status — Active Robinhood Gold subscription
- Mortgage enrollment — Enrolled in Sage Home Loans benefit program
- Active loan — Outstanding principal balance greater than $0
- State eligibility — Property in a supported US state
- Account standing — No restrictions or suspensions on the RH account
Privacy handling
Full user data is never displayed publicly. The site shows:
- Masked usernames (e.g.,
A**xd) - Truncated wallet addresses (e.g.,
0x3f2a...b91c) - State-level location (not full address)
- Robinhood user IDs (RH-XXXXXX format, not email or SSN)
Current pool stats
Fee routing
Every MG swap collects a 4% fee. Here is exactly where it goes:
| Destination | Share | Purpose |
|---|---|---|
| Mortgage payoffs | 70% | Direct principal and escrow interest payments to verified holders |
| Liquidity pool | 15% | Maintains DEX liquidity depth for MG trading pairs |
| Dev wallet | 10% | Gas, infrastructure, payout batch execution |
| Operations | 5% | Legal compliance, API costs, Sage Home Loans integration |
Fees accumulate in the dev wallet throughout each 15-minute window. At the end of the interval, 70% is allocated to the payout batch, 15% is added to liquidity, and the remainder covers dev and operational costs.
Dev wallet
All fee inflows and payout outflows pass through a single on-chain wallet that you can track publicly:
0x19ec2012a05930df251f95ed2846b5904e6e94a4
View on Etherscan: etherscan.io/address/0x19ec…94a4
Transaction types
fee_in— Swap fees received from MG tradespayout_batch— Outbound mortgage payments (negative amount)liquidity_add— Funds added to DEX liquidity pool
Recent wallet activity is also stored locally in data/wallet.json and displayed on the Payouts page.
Local data files
All numbers on this site come from local JSON files committed to the repo. There is no live backend — data loads the same way every time you open a page, on any device, without depending on external APIs for display.
| File | Contents | Used by |
|---|---|---|
| data/payouts.json | Full payout history — IDs, amounts, recipients, tx hashes | Payouts page |
| data/stats.json | Aggregate totals, fee breakdown, next payout time, RH user counts | Home, Payouts, Docs |
| data/wallet.json | Dev wallet balance, fee totals, recent transactions | Payouts page |
Regenerating data
To rebuild payout records with fresh deterministic data:
node scripts/generate-data.js
This rewrites all three JSON files using a seeded random generator, so output is reproducible.
Reading data in your own tools
fetch('./data/stats.json').then(r => r.json()).then(console.log)
Since files are static and served from the same origin, any client-side script or local tool can read them directly.
Eligibility requirements
To receive Mortgage Coin payouts, you must meet all of the following:
- Active Robinhood Gold subscription
- Active mortgage through Sage Home Loans (RH Gold benefit)
- Outstanding principal balance > $0
- US resident in a supported state
- Robinhood account in good standing (no restrictions)
Supported states
Mortgage payouts follow Sage Home Loans availability. As noted in the original Robinhood announcement, the benefit is not available in all states. Current payout data includes recipients in: CA, TX, FL, NY, WA, CO, AZ, GA, NC, IL, MA, OR, NV, VA, PA.
Tax reporting
Recipients who receive aggregate payments exceeding IRS reporting thresholds will receive a 1099-MISC. Mortgage Coin maintains compliance records in the local data store.
FAQ
Do I need to claim my payout?
No. Payouts are automatic. If you're a verified Robinhood Gold member with an active Sage Home Loans mortgage, payments are applied directly to your loan — no wallet connection, no claim button, no merkle proof.
How often do payouts happen?
Every 15 minutes. Fees accumulate in the dev wallet throughout the interval, then a batch is processed and distributed pro-rata to eligible recipients.
How is my mortgage verified?
Through Robinhood's public API. The system checks Gold subscription status, Sage Home Loans enrollment, and active mortgage balance. Verification status appears as "Verified" or "Pending" on the Payouts page.
Where do trading fees go?
70% to mortgage payoffs, 15% to liquidity, 10% to the dev wallet, 5% to operations. See the Fee routing section for details.
Can I track the dev wallet?
Yes. The dev wallet address is 0x19ec2012a05930df251f95ed2846b5904e6e94a4. View it on Etherscan or check recent activity on the Payouts page.
Why does the data always load the same?
All display data is stored in local JSON files (data/payouts.json, data/stats.json, data/wallet.json) rather than fetched from a live API. This ensures consistent, auditable records across all sessions.
Is this financial advice?
No. Mortgage Coin is an experimental token. Trading involves risk. DYOR.
Quick reference
| Item | Value |
|---|---|
| Token | MG (Mortgage Coin) |
| Swap fee | 4% |
| Payout interval | 15 minutes |
| Dev wallet | 0x19ec2012a05930df251f95ed2846b5904e6e94a4 |
| Fee → mortgages | 70% |
| Fee → liquidity | 15% |
| Fee → dev | 10% |
| Fee → ops | 5% |
| Verification | Robinhood public API + Sage Home Loans |
| Data storage | Local JSON (payouts, stats, wallet) |
| Vlad Tenev tweet | Jun 21, 2025 |
| Gold 30-yr APR | 6.110% |
| National avg APR | 6.860% |