Portfolio Management

Tracking Your Investments

Portfolio Overview:

// Get all your asset shares
const myShares = await contract.getAllAssetShares();

// Check specific asset shares
const shares = await contract.getUserShares(yourAddress, assetId);

Key Metrics to Monitor:

  • Total Investment - Amount spent on shares

  • Current Value - Mark-to-market valuation

  • Royalty Earnings - Total royalties earned

  • ROI - Return on investment percentage

Diversification Strategy

Recommended Allocation:

  • 60% - Established creators (lower risk)

  • 30% - Growth opportunities (medium risk)

  • 10% - Experimental/high-risk assets

Asset Type Diversification:

  • Don't put all funds in one asset type

  • Consider different revenue models

  • Balance popular vs. niche categories

Earning and Claiming Royalties

How Royalties Work

  1. Revenue Generation - Assets earn money from various sources

  2. Royalty Deposits - Creators deposit earnings to smart contract

  3. Distribution Creation - Snapshot of all shareholders taken

  4. Individual Claims - Each shareholder claims their portion

Claiming Process

// Check available distributions
const distributions = await contract.getAllDistributions(assetId);

// Claim from specific distribution
const distributionIndex = 0; // Most recent
const tx = await contract.claimRoyalties(assetId, distributionIndex);
await tx.wait();

Maximizing Returns

Active Strategies:

  • Vote on Verification - Help assets gain verified status

  • Early Investment - Get in before assets become popular

  • Community Engagement - Support creators and build relationships

Passive Strategies:

  • Buy and Hold - Long-term ownership for steady returns

  • Diversification - Spread risk across multiple assets

  • Reinvestment - Use royalty earnings to buy more shares

Risk Management

Understanding Risks

Market Risks:

  • Asset values can fluctuate

  • Royalty payments not guaranteed

  • Creator success varies widely

Technical Risks:

  • Smart contract vulnerabilities

  • Blockchain network issues

  • Platform dependency

Liquidity Risks:

  • No secondary market for shares (currently)

  • Long-term investment commitment

  • Creator-dependent liquidity

Risk Mitigation

  • Diversify Investments - Don't put all eggs in one basket

  • Research Thoroughly - Understand creators and assets

  • Start Small - Begin with smaller investments

  • Stay Informed - Monitor platform updates and creator activity

Last updated