4. Distributions & Buybacks

🔁Distributions & Buybacks

💰 Everything about income flows and secondary liquidity.


📤 Quarterly Income Distributions

At the core of MUY Token is a real-world asset — and real income. Every quarter, net rental income from the MUYALTA property is distributed to investors using stablecoins.

How It Works:

  • Frequency: Every 3 months (Quarterly)

  • Stablecoins Accepted: USDC or USDT

  • Eligible Investors: All wallets holding MUY Tokens and cleared via KYC

  • Distribution Method: Automatically sent to your whitelisted wallet address

Breakdown:

  • 85% of net rental income goes to investors

  • 15% is allocated to the DAO Treasury

This ensures you’re not only investing in value — you’re also earning from it.


🔁 Buybacks for Liquidity & Trust

Beyond just holding and collecting distributions, MUY Token offers a buyback program to support liquidity and stabilize long-term token value.

What is a Buyback?

The DAO may vote to repurchase MUY Tokens from investors using treasury reserves. This:

  • Provides secondary liquidity

  • Helps manage circulating supply

  • Reflects the project's commitment to financial discipline

Buyback Rules:

Category
Details

Trigger

DAO vote with >50% approval

Pricing

NAV (Net Asset Value) or DAO-approved discount (e.g., 5–10%)

Execution

Smart contract-enforced logic, fully traceable

Wallet Eligibility

Whitelisted KYC wallets only

Buybacks are funded by surplus income and treasury allocations — not future token sales or inflationary mechanics.


🧮 How the Math Works (Sample Solidity)

function distributeIncome() public onlyAdmin {
  require(block.timestamp >= nextPayout, "Too early");
  uint treasury = address(this).balance * 15 / 100;
  uint investorShare = address(this).balance - treasury;
  for (uint i = 0; i < holders.length; i++) {
    address investor = holders[i];
    uint payout = investorShare * balances[investor] / totalSupply;
    payable(investor).transfer(payout);
  }
  payable(treasuryWallet).transfer(treasury);
}

Last updated