👤 Investor Getting Started

Getting Started as an Investor

Learn how to invest in tokenized creative assets and earn royalties.

Investment Philosophy

The Universal Asset Tokenization Platform allows you to:

  • Own Fractions of valuable creative assets

  • Earn Royalties from asset performance

  • Support Creators while building your portfolio

  • Participate in Governance through verification voting

Understanding the Investment Model

How It Works

  1. Creators Tokenize Assets - Upload and create share tokens

  2. You Buy Shares - Purchase fractional ownership

  3. Assets Generate Revenue - From licensing, streaming, sales

  4. Royalties Are Distributed - Proportional to your ownership

  5. You Claim Earnings - Withdraw your share of profits

Investment Types

By Asset Category:

  • 🎵 Music - Songs, albums, compositions

  • 🎨 Visual Art - Digital art, photography, designs

  • 📝 Writing - Books, articles, scripts

  • 💻 Code - Software, applications, algorithms

  • 🎭 Performance - Dance, theater, video content

By Investment Strategy:

  • Blue Chip - Established creators with track records

  • Growth - Emerging artists with high potential

  • Diversified - Spread across multiple assets and creators

  • Niche - Focus on specific asset types or genres

Getting Started Steps

Step 1: Fund Your Wallet

Minimum recommended: 0.1 ETH
- Asset purchases: ~0.001-0.1 ETH per share
- Gas fees: ~0.001-0.005 ETH per transaction
- Buffer for multiple investments

Step 2: Research Assets

Key Metrics to Consider:

  • Creator Reputation - Verification status, previous assets

  • Asset Quality - Community votes, engagement

  • Share Distribution - How much creator retains vs. public

  • Price per Share - Current valuation

  • Royalty History - Past distributions if available

Research Tools:

// Check all available assets
const assets = await contract.getAllAssets();

// Get creator information
const creatorInfo = await contract.getCreatorBasicInfo(creatorAddress);

// View past royalty distributions
const distributions = await contract.getAllDistributions(assetId);

Step 3: Make Your First Investment

Investment Process:

  1. Select Asset - Choose from available assets

  2. Determine Share Amount - Based on budget and conviction

  3. Purchase Shares - Execute blockchain transaction

  4. Confirm Ownership - Verify shares in your portfolio

Sample Investment Transaction:

// Buy 100 shares of asset #1
const shareAmount = 100;
const pricePerShare = await assetShareToken.pricePerShare();
const totalCost = shareAmount * pricePerShare;

const tx = await contract.buyAssetShares(1, shareAmount, {
    value: totalCost
});

await tx.wait();

Last updated