VitoCoin (VITO) is an independent Proof-of-Work blockchain and digital currency purpose-built for the United VITO ecosystem — a growing suite of commerce, service, and community platforms. It is not a token on an existing chain. VITO is its own sovereign blockchain with its own miners, nodes, wallet addresses, and transaction history.
The design philosophy is deliberately conservative and Bitcoin-exact: fixed supply of 21 million VITO, 10-minute block targets, SHA-256d Proof-of-Work, halving every 210,000 blocks, and a deterministic emission schedule. These choices provide maximum transparency, auditability, and long-term supply certainty.
Digital ecosystems today rely on third-party payment rails — credit cards, bank transfers, or general-purpose cryptocurrencies — that carry high fees, slow settlement, and no native alignment with the platform's economy. Users moving value within an ecosystem should not pay 3–5% to intermediaries with no stake in that ecosystem.
Furthermore, most "utility tokens" are ERC-20 contracts on Ethereum or BNB Chain: they inherit the host chain's fee volatility, are subject to platform-level censorship, and provide no independent security guarantee. When the host chain is congested, the token is congested.
United VITO is a digital ecosystem encompassing commerce, services, and community tools. The vision is a single native currency that:
VitoCoin solves the above by being the first-class currency of the United VITO ecosystem. Every service, merchant integration, and community reward within the ecosystem denominates in VITO. The coin is:
m/44'/6333'/0'/0/NKey differentiator: VITO is not a smart contract token. It is a native Layer-1 blockchain with its own UTXO state, its own P2P network, and its own Proof-of-Work security — comparable in architecture to Bitcoin and Litecoin, not to ERC-20 tokens.
VitoCoin uses a classical UTXO (Unspent Transaction Output) model — the same model used by Bitcoin. Each transaction consumes previous UTXOs and creates new ones. There is no account model, no smart contract VM, and no global mutable state beyond the UTXO set.
Mining uses SHA-256 double-hash (SHA-256d) — identical to Bitcoin's PoW algorithm. Miners iterate the nonce field (0–4,294,967,295) until the block header's double-SHA256 hash is numerically less than the current target.
block_hash = SHA256(SHA256(version ∥ prev_hash ∥ merkle_root ∥ timestamp ∥ bits ∥ nonce)) valid_block: int(block_hash, 16) < target
The target is computed from the compact bits field:
target = mantissa × 2^(8 × (exponent − 3))
At genesis and for the first 2,016 blocks, the target is the minimum difficulty floor: 0x1d00ffff, equivalent to Bitcoin's genesis difficulty of 1.0.
Difficulty retargets every 2,016 blocks (~2 weeks at 10-min blocks):
expected_time = 600 × 2016 = 1,209,600 seconds actual_time = timestamp[last] − timestamp[first in window] actual_time = clamp(actual_time, expected/4, expected×4) # anti-manipulation new_target = old_target × actual_time / expected_time new_target = min(new_target, genesis_target) # floor
The 4× clamp prevents sudden 100× difficulty crashes during mining dips.
The P2P protocol is inspired by Bitcoin's wire protocol: TCP persistent connections, 4-byte magic header 0x56 0x49 0x54 0x4F ("VITO"), length-prefixed frames, and a version/verack handshake. Messages are JSON-encoded for readability and future extensibility.
All wallets use BIP-39 mnemonic phrases (12 words) and BIP-44 hierarchical deterministic derivation:
path: m/44'/6333'/0'/0/N - 44' : BIP-44 purpose - 6333': VITO coin type - 0' : account 0 - 0 : external chain - N : address index
Private keys use secp256k1 ECDSA. Public keys are compressed (33 bytes). Addresses are Base58Check-encoded HASH160 (RIPEMD-160 of SHA-256 of public key) with version byte 0x46.
No pre-mine. No team allocation. No ICO. 100% of VITO enters circulation through Proof-of-Work mining. The genesis block coinbase is unspendable (like Bitcoin's). All supply is earned.
| Era | Block Range | Reward / Block | Blocks | VITO Mined | Cumulative | % of Supply |
|---|---|---|---|---|---|---|
| 1 | 0 – 209,999 | 50.0000 VITO | 210,000 | 10,500,000 | 10,500,000 | 50.00% |
| 2 | 210,000 – 419,999 | 25.0000 VITO | 210,000 | 5,250,000 | 15,750,000 | 75.00% |
| 3 | 420,000 – 629,999 | 12.5000 VITO | 210,000 | 2,625,000 | 18,375,000 | 87.50% |
| 4 | 630,000 – 839,999 | 6.2500 VITO | 210,000 | 1,312,500 | 19,687,500 | 93.75% |
| 5 | 840,000 – 1,049,999 | 3.1250 VITO | 210,000 | 656,250 | 20,343,750 | 96.88% |
| … | … | … | … | … | … | … |
| 34+ | ≥ 6,930,000 | 0 (dust) | — | 0 | ~21,000,000 | ~100% |
Market Cap = Circulating Supply × Price
= 550 VITO × $0.01 (initial rate) = $5.50 (genesis phase)
At full emission (21M VITO) at $1.00 price:
Market Cap = $21,000,000
The initial fixed exchange rate of $0.01 USD per VITO is used for internal ecosystem pricing. Market price will be determined by exchange trading activity once listed.
VITO is accepted as the native payment currency across all United VITO platforms. Merchants can accept VITO via the built-in merchant API (/merchant/invoice) which generates deterministic payment addresses and monitors confirmation status in real time.
Community members can mine VITO using any hardware capable of SHA-256d computation. Mining is open, permissionless, and uncapped — anyone with internet access can point a miner at a public node.
Wallets are derived deterministically from seed phrases. Any two VITO addresses can transfer value directly, with confirmation in the next mined block (~10 minutes). Fees are specified by the sender and collected by the miner.
With a hard cap of 21 million VITO and a predictable halving schedule, VITO has inherent scarcity. Holders benefit from the same deflationary supply mechanics as Bitcoin.
| Phase | Timeline | Milestones | Status |
|---|---|---|---|
| Phase 1 Genesis & Infrastructure |
Q1–Q2 2026 |
✅ Mainnet genesis (Apr 7 2026) ✅ 3 VPS nodes operational ✅ SHA-256d PoW mining live ✅ Web wallet (app.html) ✅ Block explorer ✅ SSE real-time API ✅ PWA support |
LIVE |
| Phase 2 Exchange & Liquidity |
Q3 2026 |
⬜ CoinMarketCap listing ⬜ DEX integration (USDT pairs) ⬜ Real buy/sell liquidity ⬜ Mining pool support ⬜ Android/iOS wallet app ⬜ Hardware wallet integration |
PLANNED |
| Phase 3 Ecosystem Expansion |
Q4 2026+ |
⬜ Merchant payment SDK ⬜ VITO Pay gateway ⬜ Multi-node geographic expansion ⬜ Layer-2 instant payment channels ⬜ Cross-chain bridge (WVITO) |
FUTURE |
VitoCoin uses the UTXO model. Each output can only be spent once — when included in a confirmed transaction, the UTXO is deleted from the set. All nodes independently validate every transaction against the current UTXO set before accepting a block.
Unconfirmed transactions in the mempool are also checked — a UTXO that has been broadcast in an unconfirmed transaction will not be accepted again in a second unconfirmed transaction from any node that has already seen the first.
The canonical chain is determined by cumulative chain work — the sum of the difficulty of every block from genesis. The chain with the most total work is the valid chain, regardless of which chain has more blocks. This is Bitcoin's "heaviest chain" rule.
A 51% attack requires an attacker to outpace all honest miners combined. At current hashrate (~900 KH/s combined across 3 nodes), this is trivially achievable with consumer hardware — which is expected at this early stage. As the network grows and more miners join, the attack cost grows proportionally.
Every node independently validates each block before accepting it:
Peers that send invalid data accumulate a ban score. Scores above 100 result in a 24-hour ban:
| Requirement | Status | Evidence |
|---|---|---|
| Real blockchain (not simulated) | ✅ VERIFIED | 3 nodes, height 10, real PoW nonces |
| Public API accessible | ✅ LIVE | /api/node/status, /api/node/supply |
| Block explorer working | ✅ LIVE | In-app explorer, /explorer |
| Tokenomics documented | ✅ DONE | This whitepaper, Section 5 |
| No fake data | ✅ CONFIRMED | All balances/TXs from live node UTXO set |
| Whitepaper published | ✅ DONE | This document at /whitepaper |
| Max supply hard cap | ✅ 21M VITO | Hardcoded in blockchain.py |
| Logo (high quality) | ✅ DONE | 14 PNG sizes, teal/dark design |
| Website / app | ✅ LIVE | https://vitocoin.com |
| Real-time data (SSE) | ✅ LIVE | /api/node/events |
| Mining open & public | ✅ YES | Connect any SHA-256d miner to port 6334 |
| DEX / exchange integration | ⬜ PLANNED | Phase 2 — Q3 2026 |
| Mining pool | ⬜ PLANNED | Phase 2 |
| Field | Value |
|---|---|
| Project Name | VitoCoin |
| Ticker Symbol | VITO |
| Coin Type | Layer-1 PoW, UTXO model |
| Algorithm | SHA-256d (double SHA-256) |
| Max Supply | 21,000,000 VITO |
| Block Time | ~600 seconds (10 minutes) |
| Website | https://vitocoin.com |
| Whitepaper | https://vitocoin.com/whitepaper |
| Explorer | https://vitocoin.com/explorer |
| API Base | https://vitocoin.com/api/node/ |
| Mainnet Launch | April 7, 2026 (Unix: 1744070400) |
| Network ID | mainnet |
| P2P Port | 6334 |
| RPC/API Port | 6333 |
VitoCoin (VITO) is a Proof-of-Work cryptocurrency with Bitcoin-exact parameters — 21M supply, SHA-256d mining, 10-minute blocks, and halving every 210,000 blocks. It serves as the native currency of the United VITO ecosystem.
VitoCoin is an independent Layer-1 blockchain designed to serve as the monetary backbone of the United VITO digital ecosystem. Built from the ground up with Bitcoin-exact parameters, VitoCoin offers:
VitoCoin is a purpose-built, technically sound, and fully operational Proof-of-Work blockchain. It is not a fork of an existing project; it is a clean-room implementation of Bitcoin-compatible blockchain mechanics tailored for the United VITO ecosystem's requirements.
The project is currently in its genesis phase — block height 10, circulating supply 550 VITO — and is actively mining on 3 production nodes with combined hashrate in excess of 900 KH/s. The supply, blockchain state, and all API data are publicly verifiable at vitocoin.com/api/node/status without authentication.
The roadmap targets exchange listing and DEX liquidity in Q3 2026. All technical foundations required for listing — explorer, public API, documented tokenomics, real PoW mining — are live today.
VitoCoin: 21 million coins. Real mining. No pre-mine. Open source architecture. Production blockchain.