Orca Coin PoS Network
Technical Whitepaper v1.0
Published: June 2026
Table of Contents
1. Abstract
Orca Coin is a modern, high-performance decentralised ledger utilizing a Proof of Stake (PoS) consensus protocol. By eliminating the energy-intensive mining associated with Proof of Work (PoW), Orca Coin offers a secure, scalable, and environmentally friendly alternative. The system relies on cryptographic validator nodes who lock up native ORCA tokens to gain the right to validate transactions, package them into blocks, and earn minting rewards.
2. Proof of Stake Consensus
Consensus in the Orca Coin network is governed by a deterministic, stake-weighted selection algorithm. Every slot period (currently 10 seconds), the system chooses a validator from the pool of active, eligible candidates.
- Slot Time: A new block is forged exactly once every 10 seconds.
- Selection Seed: The selection utilizes a deterministic seed derived from the target block height and timestamp, ensuring cryptographic predictability while remaining secure against validator front-running.
- Probability Distribution: A candidate's likelihood of selection is directly proportional to their fraction of the total active staked pool:
P(Validator_i) = Stake_i / Total_Active_Stake
- Jailing Mechanism: Validators whose staked amount falls below the minimum required threshold (currently 100 ORCA) are automatically set to a "jailed" status, making them ineligible for slot selection until additional stake is deposited.
3. Cryptography & Wallet Engine
Securing user identities and assets is achieved through elliptic curve cryptography (ECC), specifically utilizing the secp256k1 curve parameters (the standard powering Bitcoin and Ethereum).
- Address Generation: Addresses are derived cryptographically from the public key, prefixed with a standard hex format.
- Signature Algorithm: Transactions are digitally signed using ECDSA (Elliptic Curve Digital Signature Algorithm). This guarantees that funds can only be spent by the private key holder.
- Non-Custodial Architecture: Private keys, mnemonics, and seed phrases are processed entirely client-side using JavaScript within the user's browser. Credentials are never transmitted to, or stored on, the server.
4. Mempool & Transactions
Before transaction inclusion in a block, they reside in a temporary staging area known as the Mempool.
To prevent replay attacks and ensure transaction ordering, every wallet address maintains an incremental nonce value. A transaction is only valid if its nonce matches the exact sequential increment of the sender's current nonce.
When a validator is selected to forge a block, it retrieves pending transactions from the mempool, executes their balances updates locally, deducts transaction fees, and appends the finalized transaction ledger into the block.
5. Tokenomics & Staking
The native currency of the ledger is ORCA. The economic incentives are aligned to encourage long-term participation and network security.
Incentives
Each block generates a flat block reward (currently 5.0 ORCA) plus all accumulated transaction fees from the transactions packed into that block.
Staking Rules
Users can lock their ORCA balance by submitting a stake transaction. Unstaking requires submitting an unstake transaction, releasing funds back to the user's spendable balance.
6. Future Implementations
The roadmap for the Orca Coin network focuses on increasing decentralisation and utility:
- P2P Network Layer: Transitioning from a single-node validator daemon to a distributed peer-to-peer gossip protocol.
- Smart Contracts Engine: Introduction of a lightweight virtual machine to support execution of decentralised agreements.
- Dynamic Slashing: Introducing automated penalties for validators that sign double-spend blocks or exhibit malicious offline behavior.