👤 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
Creators Tokenize Assets - Upload and create share tokens
You Buy Shares - Purchase fractional ownership
Assets Generate Revenue - From licensing, streaming, sales
Royalties Are Distributed - Proportional to your ownership
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:
Select Asset - Choose from available assets
Determine Share Amount - Based on budget and conviction
Purchase Shares - Execute blockchain transaction
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