RENDERCOREAIRENDERCOREAI

OWNIA
WHITEPAPER

Urban Social Economy Platform — Data Sovereignty + AI Magic + Navigation Economy

Version 1.0 · 2026 · This whitepaper may be updated as the project progresses.

1. Abstract

OWNIA is an urban social platform combining Data Sovereignty + AI-powered 3D Generation + Navigation Economy. It guarantees ownership of user-generated data, enables creation of digital assets through AI magic that generates 3D objects from text, and provides economic rewards for urban exploration activities.

The OWNIA token serves as the economic foundation of this ecosystem, built as an SPL token on the Solana blockchain.

2. Vision

"Data Sovereignty + AI Magic + Navigation Economy"
PillarDescription
Data SovereigntyUsers own and trade rights to their own data
AI MagicText → 3D object generation, AI-powered content creation
Navigation EconomyToken reward system for urban exploration and discovery activities

At the intersection of AI + Blockchain + Metaverse — the defining trends of 2026 — OWNIA aims to be a platform where users are not mere consumers but owners of their data and creators of value.

3. Problem Statement

  1. 1.
    Data Exploitation: Big tech collects user data for free and monetizes it without compensation
  2. 2.
    Creation Barriers: 3D content production requires specialized skills and expensive tools
  3. 3.
    Disconnected Urban Experience: Offline activities are not connected to the digital economy
  4. 4.
    Opaque Rewards: Creator reward systems lack transparency and are centralized

4. Solution

4.1 Data Ownership Layer

  • On-chain ownership proof for user-generated data
  • Direct creator rewards when data is traded
  • Balance between privacy protection and transparency

4.2 Text-to-3D AI Engine

  • Automatic 3D object generation from text prompts
  • NFT-ization and trading of generated 3D assets
  • OWNIA token payment for AI service usage

4.3 Navigation Economy

  • Token rewards for real urban exploration activities
  • Reward system connected to local businesses
  • Community-based urban information crowdsourcing

5. Tokenomics

5.1 Token Specifications

ItemValue
Token NameOWNIA
SymbolOWNIA
BlockchainSolana
Token StandardSPL Token
Decimals9
Total Supply1,000,000,000 (1 Billion)
Program IDAXpCTxUDCfkGnQ8FZfmv82pihVmQvDpCE16cHA2UTT3t
AXpCTxUDCfkGnQ8FZfmv82pihVmQvDpCE16cHA2UTT3t

5.2 Token Distribution

Community (30%)        ████████████████████████████████  300,000,000
Staking Rewards (15%)  ████████████████                  150,000,000
Team (15%)             ████████████████                  150,000,000
Development (15%)      ████████████████                  150,000,000
Investors (10%)        ██████████                        100,000,000
Advisors (5%)          ██████                             50,000,000
Liquidity (5%)         ██████                             50,000,000
Data Sovereignty (5%)  ██████                             50,000,000

5.3 Distribution Details

CategoryRatioAmountPurposeLock-up
Community30%300MAirdrops, user rewards, ecosystem growthPhased distribution
Staking Rewards15%150MStaking reward poolOn-chain lock
Team15%150MTeam incentives12-month cliff + 36-month linear
Development15%150MTech development, infrastructure, security auditsPhased usage
Investors10%100MEarly investor allocation6-month cliff + 24-month linear
Advisors5%50MAdvisory board compensation6-month cliff + 24-month linear
Liquidity5%50MDEX liquidity provision (Raydium, etc.)Immediate at TGE
Data Sovereignty5%50MData sovereignty rewards, 3D generation incentivesUsage-based

5.4 Token Utility

Use CaseDescription
AI Service PaymentText-to-3D generation, AI analysis service fees
Data TradingPayment medium for buying/selling user data
StakingEarn 10% annual rewards by depositing tokens
GovernanceProposal and voting rights with 10,000+ OWNIA staked
Creator RewardsDirect rewards for 3D content creators
Navigation RewardsToken distribution upon completing exploration missions

6. Technical Architecture

6.1 Why Solana?

FeatureSolanaEthereumBenefit for OWNIA
TPS~65,000~15Real-time reward processing
Fees~$0.00025~$1-50Micro-transactions possible
Confirmation~400ms~12sInstant UX
NFT EcosystemStrongStrong3D asset NFT-ization

6.2 Smart Contract Structure

Built on Anchor framework with 10 on-chain instructions:

ownia-token (Anchor Program)
├── initialize            — Token mint + program config initialization
├── mint_tokens           — Admin-only token minting (supply cap validation)
├── create_vesting        — Create vesting schedule + lock tokens
├── claim_vesting         — Claim linear unlock after cliff period
├── initialize_stake_pool — Create staking pool
├── stake                 — Deposit tokens (additional staking supported)
├── unstake               — Retrieve tokens + rewards after unlock
├── claim_rewards         — Claim staking rewards
├── create_proposal       — Create governance proposal (min 10,000 OWNIA)
└── cast_vote             — Stake-weighted voting (double-vote prevention)

6.3 On-Chain Account Structure

AccountPDA SeedRole
ProgramConfig["config"]Global settings, admin, mint address, total supply
VestingSchedule["vesting", beneficiary, id]Per-beneficiary vesting info
StakePool["stake_pool"]Pool settings, reward rate, total staked
StakeAccount["stake", user]Per-user staking info
Proposal["proposal", id]Governance proposal content and vote tally
VoteRecord["vote", proposal, voter]Double-vote prevention record

6.4 Reward Calculation Formula

Annual Reward = staked_amount × reward_rate_bps / 10,000

Real-time Reward = staked_amount × reward_rate_bps × elapsed_seconds
                   ÷ (10,000 × 31,536,000)

Default Reward Rate: 1,000 BPS (10% per annum)

7. Governance

ItemSetting
Proposal Eligibility10,000+ OWNIA staked
Voting WeightProportional to staked OWNIA amount
Double VotingPrevented at source via PDA
Proposal StructureTitle (64 chars) + Description URI (200 chars) + Voting Period

Matters the community can decide through governance:

  • Reward rate adjustments
  • New feature introductions
  • Partnership approvals
  • Ecosystem fund usage

8. Roadmap

PhaseTimelineObjective
Phase 1 — Foundation2026 Q1Token development, smart contracts, Devnet deployment
Phase 2 — Launch2026 Q2Mainnet deployment, DEX listing, initial airdrop
Phase 3 — AI Integration2026 Q3Text-to-3D engine integration, data trading market
Phase 4 — City Economy2026 Q4Urban navigation rewards, local business partnerships
Phase 5 — Expansion2027 Q1+Multi-chain bridge, global city expansion

9. Security

  • Anchor FrameworkAutomatic account validity verification
  • PDA-based AuthorityProgram signing eliminates central key risk
  • Hardcoded Supply CapCannot exceed 1 billion tokens
  • Admin Privilege SeparationMinting/vesting restricted to admin only
  • Double Execution PreventionDuplicate transactions blocked via PDA init
  • Overflow PreventionChecked math applied throughout
  • Future PlanExternal security audit (before Mainnet deployment)

10. Development Status

ItemStatus
Smart Contract✅ Complete (492KB .so)
Tests✅ 11/11 Passing
IDL Generation✅ Complete (32KB)
TypeScript Types✅ Complete (32KB)
Devnet Deployment⏳ Pending
Mainnet Deployment📅 Scheduled for Phase 2
Security Audit📅 Scheduled for Phase 2

11. Team & Contact

Project: OWNIA — Urban Social Platform

Website: https://ownia.io

Token Metadata: https://ownia.io/token-metadata.json

This whitepaper may be updated as the project progresses.