BERACOIN is a Layer-1 Proof-of-Work blockchain combining SHA-256d + Argon2id memory-hard consensus, native asset tokenization, and on-chain governance — engineered for real-world institutional adoption.
Fixed supply. Mathematical emission. Initial block reward of 20 BERA derived from the geometric series of the halving schedule.
Complete technical specification of consensus, network architecture, cryptography, security model, and governance framework.
Two-stage proof-of-work. Stage 1: SHA-256d. Stage 2: Argon2id memory-hard layer. Combined they create a mining function that is both Bitcoin-compatible in infrastructure and ASIC-resistant by design.
Standard double SHA-256 of the block header + 64-bit nonce. Compatible with Bitcoin-derived mining infrastructure for Stage 1 computation. Fast, deterministic, hardware-independent.
SHA-256d result fed into Argon2id — winner of the Password Hashing Competition. Requires 256MB SRAM per hash attempt. Renders ASIC domination economically unviable at any practical chip density.
Independently validates every block since genesis. Enforces all consensus rules. Requires 500GB SSD, 8GB RAM, 50Mbps uplink. No trust in third parties.
Full node + 10,000 BERA bond. Earns tx fee share, votes on governance proposals. Subject to slashing for downtime (1%) or Byzantine behavior (up to 100%).
Downloads block headers only. Verifies transactions via Merkle proofs. Suitable for mobile wallets and embedded systems. 512MB RAM, 1GB storage.
Stores complete historical state for every block height. Required for block explorers, analytics, and advanced API services. 2TB+ storage.
| Threat | Mitigation | Layer |
|---|---|---|
| 51% Attack | Argon2id memory layer raises attack cost ~100× vs pure SHA-256. LWMA-3 responds within 45 blocks to hashrate spikes. | Protocol |
| Double Spend | UTXO model. 6-confirmation (~15 min) finality for institutional settlement. Full node re-validation. | Protocol |
| Sybil Attack | Validator bond (10,000 BERA). PoW connection handshake cost at P2P layer. IP reputation tracking. | Protocol |
| Key Compromise | BIP32/BIP44 HD wallets. Schnorr m-of-n multisig. Hardware wallet support (Ledger, Trezor). | Protocol |
| Treasury Attack | 3-of-5 multisig governance council. Timelock on large withdrawals. Public on-chain audit trail. | Phase 6 |
Any validator with active 10,000 BERA bond may submit a proposal with a 500 BERA deposit (refunded on pass, burned on failure to reach quorum). Covers: parameter changes, treasury expenditures, protocol upgrades, policy decisions.
Community discussion period. Validators and BERA holders signal intent. No binding votes yet — Forum and Discord deliberation phase.
Votes cast on-chain, weighted by locked BERA. Options: YES / NO / ABSTAIN. Quorum: minimum 30% of eligible voting power. Passage: >50% YES of participating votes.
Passed proposals enter 48-hour safety timelock before execution. Emergency Security Council proposals may bypass with 4-of-5 multi-sig. All executions are on-chain and publicly auditable.
Complete supply model, emission mathematics, genesis distribution, reward split mechanics, and long-term economic sustainability design.
The initial block reward is not arbitrary — it is mathematically derived from the 42M hard cap and 150-second block time:
31,536,000 sec/year ÷ 150 sec/block = 210,240 blocks/year210,240 × 5 = 1,051,200 blocks per halving eraR × 1,051,200 × (1 + ½ + ¼ + ...) = R × 1,051,200 × 242,000,000 = R × 2,102,400 → R = 19.98 ≈ 20 BERA| Era | Block Range | Years | Block Reward | Miner Share | Era Output | Cumulative |
|---|---|---|---|---|---|---|
| Era 1 | 0 – 1,051,200 | 0–5 | 20 BERA | 13.38 BERA | 21,024,000 | 21M (50.1%) |
| Era 2 | 1,051,201 – 2,102,400 | 5–10 | 10 BERA | 6.69 BERA | 10,512,000 | 31.5M (75.1%) |
| Era 3 | 2,102,401 – 3,153,600 | 10–15 | 5 BERA | 3.35 BERA | 5,256,000 | 36.8M (87.6%) |
| Era 4 | 3,153,601+ | 15–20 | 2.5 BERA | 1.675 BERA | 2,628,000 | 39.4M (93.9%) |
| Era 5+ | 4,204,801+ | 20+ | ≤1.25 BERA | — | ≤1,314,000 | → 42,000,000 |
| Allocation | Amount | % | Mechanism | Vesting |
|---|---|---|---|---|
| Mining Rewards | 28,140,000 | 67% | Block reward (miner share) | Continuous emission |
| Ecosystem Treasury | 5,040,000 | 12% | Block reward split | Governance-controlled |
| Node Reserve | 4,200,000 | 10% | Block reward split | 4-year linear |
| Development Reserve | 2,940,000 | 7% | Block reward split | 3yr cliff + 2yr linear |
| Foundation | 1,680,000 | 4% | Block reward split | 5-year linear |
| Hard Cap | 42,000,000 | 100% | — | Protocol-enforced |
Every component is production-grade, modular, and designed for long-term maintainability at global scale.
Memory-safe consensus engine. All cryptographic primitives formally specified. Consensus, UTXO model, mempool, P2P, and RPC in Rust.
Safety + PerformanceHigh-concurrency P2P via libp2p. Goroutine-based networking. DHT peer discovery, GossipSub propagation, fast-sync for new nodes.
ConcurrencyChain indexer → PostgreSQL. REST + GraphQL APIs. Redis cache. WebSocket subscriptions for real-time data.
API + IndexerApp Router, React Server Components, Tailwind CSS v4. Browser extension + React Native mobile wallet. Vercel deployment.
FrontendComplete configuration parameters for the BERACOIN mining algorithm, genesis block, and network settings. These values are hardcoded in the protocol source.
| Method | Description | Returns |
|---|---|---|
| getblockcount | Current chain height | Integer |
| getblock <hash> | Block data by hash | Block object |
| getmininginfo | Hashrate, difficulty, reward | Object |
| sendrawtransaction | Broadcast signed tx | TXID |
| bera_getbalance | BERA balance for address | Amount |
| bera_listassets | BRA-20 assets at address | Array |
| bera_issueasset | Issue new BRA-20 token | Asset ID |
| bera_getvalidator | Validator bond status | Validator obj |
The second testnet phase brings the full SHA-256d + Argon2id hybrid consensus engine live for the first time. Mine TBERA, test wallets, run validators, submit governance proposals — everything before mainnet.
| Feature | Phase 1 (Internal) | Phase 2 (Public) |
|---|---|---|
| Consensus | SHA-256d only | SHA-256d + Argon2id |
| Network | Private (dev team only) | Public testnet |
| Mining | CPU regtest only | CPU + GPU + Pools |
| Wallet | CLI only | Web wallet (beta) |
| Explorer | None | testnet.berascan.io |
| Faucet | None | faucet.beracoin.io |
| Governance | Not deployed | Beta (limited) |
| Smart Contracts | Not available | Phase 8 (future) |
Pull the testnet Docker image or build from source. The node binary is berad and the CLI is beractl.
Create or modify your beracoin.conf to enable testnet mode and connect to seed nodes.
Generate a testnet address, then request TBERA from the faucet. Each request grants 50 TBERA with a 24-hour cooldown per address.
Confirm LWMA-3 difficulty adjustment is stable. SHA-256d + Argon2id pipeline functioning correctly. Block propagation latency <2 seconds peer-to-peer.
Geographic distribution across at least 10 countries. DHT peer discovery stress-tested. Network partition recovery confirmed. Block sync from genesis verified <30 min.
Web wallet sends and receives TBERA. Block explorer indexes all transactions. Faucet functioning. WebSocket real-time block/tx feed operational.
First on-chain governance proposal submitted and voted on by testnet validators. Slashing conditions triggered and verified. Treasury multi-sig tested.
First BRA-20 token issued on testnet. Token transfer, balance query, and explorer display all functional. BRA-721 NFT issuance tested.
All P0 and P1 bugs from community resolved. Code frozen for audit. Two independent security firms engaged. Bug bounty program live on Immunefi.
Early testers receive priority validator slots and recognition in the genesis block message when mainnet launches.
Full phase-by-phase development plan from genesis block design through mainnet launch and exchange listings — with detailed technical milestones per phase.
Genesis block design, legal entity formation, SHA-256d + Argon2id implementation, LWMA-3 difficulty algorithm, whitepaper publication.
Rust blockchain core, P2P networking via libp2p, HD wallet infrastructure, and public testnet launch with Argon2id live.
Node setup, API reference, wallet integration, mining guides, and protocol specifications for the BERACOIN ecosystem.
Full node, validator, and light node guides. Docker + bare-metal.
AvailableCPU + GPU mining setup, SHA-256d + Argon2id, pools, and profitability calculator.
AvailableJSON-RPC 2.0, REST, GraphQL, and WebSocket subscription APIs.
TestnetKey derivation (BIP32/44/39), tx signing, broadcast, UTXO management.
TestnetIssue and manage fungible tokens natively on BERACOIN without smart contracts.
Phase 7Tokenize real-world assets. Non-fungible asset issuance and on-chain attestation.
Phase 7BERACOIN Foundation · Technical Whitepaper · 2024
The global financial system remains fundamentally inefficient: cross-border settlement takes 1–5 business days, intermediaries extract 2–7% in transaction fees, clearing houses introduce systemic counterparty risk, and approximately 1.7 billion adults worldwide remain unbanked or underbanked. These are not marginal inefficiencies — they represent trillions of dollars in annual friction cost and a structural exclusion of a large fraction of humanity from basic financial services.
Existing blockchain solutions address parts of this problem while creating others. Bitcoin provides robust decentralised monetary properties but limited programmability and slow settlement relative to institutional requirements. Proof-of-Stake chains improve throughput but concentrate power among large token holders, introduce governance capture risk, and sacrifice the physical security anchor that Proof-of-Work mining provides. Smart contract platforms such as Ethereum enable programmability but expand the attack surface significantly — billions of dollars have been lost to smart contract vulnerabilities since 2016.
BERACOIN is designed to occupy a distinct and well-defined position: a Proof-of-Work chain with Bitcoin-grade monetary properties, native (non-EVM) asset issuance that does not require smart contract execution for basic tokenisation, institutional-grade on-chain governance, and an optional programmability layer via BeraVM that can be adopted without compromising the base layer. The protocol is designed with a 25-year time horizon, consistent with the long-term nature of sound monetary and settlement infrastructure.
BERACOIN is a Layer-1 blockchain using an Unspent Transaction Output (UTXO) transaction model. Block production occurs approximately every 150 seconds via Proof-of-Work mining using the BERAHash function. The LWMA-3 difficulty algorithm adjusts per-block to maintain the 150-second target interval. Transaction finality is probabilistic: 6 confirmations (~15 minutes) represents institutional settlement confidence equivalent to Bitcoin's 1-hour standard relative to hashrate.
The chain is bootstrapped from a genesis block whose coinbase transaction embeds a publicly verifiable timestamp string, preventing any pre-mining of coins before the official launch date. All supply allocation percentages are enforced by consensus rules — no governance vote can change the hard cap or emission schedule without a full chain fork.
Every unspent coin in the BERACOIN system is represented as a UTXO — an output from a prior transaction that has not yet been spent. Transactions consume one or more UTXOs as inputs and create one or more new UTXOs as outputs. Transaction fees are the arithmetic difference between the sum of input values and the sum of output values. This model provides strong double-spend resistance, natural parallelism for transaction validation, and a clean mental model for institutional accounting of assets.
BERACOIN uses a two-stage hybrid Proof-of-Work function designated BERAHash. The two-stage design is motivated by a specific goal: maintain compatibility with the SHA-256 mining ecosystem at Stage 1 (enabling use of existing infrastructure, benchmarks, and tooling), while imposing a memory-hard constraint at Stage 2 that renders ASIC domination economically unviable at any practical chip density.
Stage 1 applies double SHA-256 to the 88-byte serialised block header including the 64-bit extended nonce. This is identical to Bitcoin's Proof-of-Work hash function. The output is a 32-byte hash value. This stage is fully deterministic, fast, and compatible with GPU and FPGA acceleration used in the broader SHA-256 ecosystem.
The 32-byte Stage 1 output is used as the password input to Argon2id — the winner of the 2015 Password Hashing Competition and the recommended algorithm in NIST SP 800-63B. Argon2id is a hybrid of Argon2i (data-independent memory access, side-channel resistant) and Argon2d (data-dependent memory access, GPU-resistant). The "id" variant is optimal for ASIC resistance: it requires sequential memory access patterns that cannot be parallelised cheaply on custom silicon.
Mainnet parameters — m_cost: 262,144 KB (256 MB); t_cost: 2 iterations; p_cost: 1 lane; tag_len: 32 bytes. At these parameters, implementing 1,000 parallel hashing units on an ASIC would require 256 GB of on-die SRAM — commercially unviable at any projected SRAM density curve through 2040. A consumer NVIDIA RTX 4090 (24 GB VRAM) can execute approximately 3 parallel Argon2id instances at mainnet parameters, making GPU mining competitive on a per-dollar basis with any conceivable ASIC.
BERACOIN uses the Linearly Weighted Moving Average v3 (LWMA-3) difficulty algorithm, operating over a 45-block window with a 150-second block time target. LWMA-3 was developed by Zawy (James Lovejoy, MIT) and has been deployed successfully in Raptoreum, Monero's emergency fallback, and several other production PoW chains.
The algorithm assigns linearly increasing weight to more recent blocks, enabling rapid response to hashrate changes while dampening oscillation artifacts. The formula is: next_target = Σ(target[i] × solve_time[i] × i) × T / k, where k = N×(N+1)×T/2 = 155,250, N=45, T=150. Solve times are clamped at 6×T to prevent timestamp manipulation attacks. The result is clamped to no more than 4× the previous target, preventing catastrophic difficulty collapse after sudden hashrate drops.
The BERA token supply is strictly capped at 42,000,000 — enforced at the consensus layer. This cap is not a governance parameter; it is hardcoded in the coinbase subsidy function and cannot be changed without a hard fork of the entire network.
The initial block reward of 20 BERA is not arbitrary. It is derived mathematically from the supply cap and the block time target:
Each 20 BERA block reward is automatically allocated by the consensus rules: 13.38 BERA (67%) to the miner's coinbase output; 2.40 BERA (12%) to the Ecosystem Treasury multisig address; 2.00 BERA (10%) to the Node Reserve address; 1.40 BERA (7%) to the Development Reserve address; 0.80 BERA (4%) to the Foundation address. These allocation addresses and their percentages are governance-parameters that can only be modified with a 60% YES vote and 40% quorum — the highest governance threshold in the protocol.
BERACOIN's peer-to-peer network is built on libp2p with Noise protocol encryption for all connections. The transport layer supports TCP/IP with QUIC as an optional upgrade for lower-latency connections in high-throughput scenarios. All connections are authenticated with node identity keys derived from secp256k1 key pairs.
Initial peer discovery uses a Kademlia DHT for decentralised, censorship-resistant peer routing. Foundation-operated DNS seed nodes provide bootstrap connectivity for new nodes joining the network. mDNS is used for local network discovery in testnet and development configurations. Peer reputation scoring deprioritises nodes that repeatedly serve invalid blocks or transactions.
The GossipSub protocol handles block and transaction propagation. Compact block relay (analogous to Bitcoin's BIP 152) reduces propagation bandwidth by approximately 95% for well-connected peers by sending only transaction IDs in the initial announcement. Full transactions are requested only for those not already in the recipient's mempool. Target propagation latency for a new block to reach 90% of nodes: under 2 seconds.
BERACOIN uses the UTXO model for all base-layer BERA transfers. Each transaction references one or more UTXOs as inputs (authorised by digital signatures) and creates one or more new UTXOs as outputs. The transaction fee is the surplus between input and output values, awarded to the miner in the coinbase transaction.
Transaction fees are determined by a free market: users set fee rates (BERA per virtual byte), and miners include transactions in order of descending fee rate. The mempool enforces a maximum size of 300 MB; transactions below a minimum relay fee rate are rejected. Fee estimation APIs provide real-time suggested fee rates for fast (next block), standard (within 3 blocks), and economy (within 6 blocks) confirmation targets.
BERACOIN's on-chain governance system is designed to evolve from Foundation-led development toward full community control as the validator set grows and the network matures. Governance activates at Phase 6 (approximately Month 8 of the development roadmap).
All slashed funds are transferred to the Ecosystem Treasury. Slashing conditions and amounts are themselves governance parameters and can be modified via a supermajority vote.
BERACOIN's native asset layer enables fungible and non-fungible token issuance without requiring smart contract execution. BRA-20 and BRA-721 assets are first-class protocol citizens: the node software tracks asset balances natively alongside BERA, and asset UTXOs carry identical security guarantees to base-layer BERA UTXOs.
BRA-20 tokens are registered via an on-chain registration transaction containing: token name, ticker symbol, total supply, decimal precision (0–18), issuer address, and optional compliance metadata (KYC/AML flags, transfer restrictions). Subsequent transfer transactions move asset UTXOs between addresses. Burning tokens reduces circulating supply permanently.
BRA-721 tokens represent unique assets: real estate, invoices, intellectual property, commodity lots, or art provenance records. Each token carries a content hash (SHA-256 of the off-chain asset document) anchored on-chain, providing a tamper-evident audit trail. Legal enforceability of on-chain BRA-721 ownership is jurisdiction-specific and is not guaranteed by the protocol.
BeraVM is a WebAssembly (WASM)-based smart contract execution environment introduced in Phase 8 of the BERACOIN development roadmap. Contracts compiled to WASM are deployed on-chain via deployment transactions and executed deterministically by all full nodes. BeraVM is sandboxed, metered by a gas model, and isolated from the base-layer UTXO state to prevent cross-contamination between contract execution bugs and base-layer soundness.
Phase 9 of the BERACOIN roadmap introduces three cross-chain bridges, enabling BERA and BRA-20/721 assets to move between blockchain ecosystems:
WBERA (Wrapped BERA) is an ERC-20 token on Ethereum representing BERA locked in the BERACOIN bridge contract. A decentralised relayer network of bonded operators maintains the 1:1 peg. Relayers post BERA bonds slashable for misbehavior, providing cryptoeconomic security without trusted intermediaries. The bridge supports both BERA ↔ WBERA and BRA-20 ↔ ERC-20 conversions.
Hash Time-Locked Contracts (HTLCs) enable trustless BTC ↔ BERA atomic swaps without a custodian. A user locks BTC in an HTLC on the Bitcoin network; the corresponding BERA is released on BERACOIN upon presentation of the hash preimage. Settlement occurs in approximately 30 minutes including both chain confirmation times.
An IBC (Inter-Blockchain Communication) compatibility module enables BERA to participate in the Cosmos ecosystem's network of interconnected chains. BERA becomes transferable to any IBC-compatible chain (Osmosis, Cosmos Hub, Juno, etc.) using the standard IBC token transfer protocol, accessing DeFi liquidity and user bases without centralised intermediaries.
The primary security assumptions of BERACOIN are: (1) honest majority of hashrate controls block production at the PoW layer; (2) honest majority of bonded stake participates in the validator and governance set; and (3) the cryptographic primitives — secp256k1, SHA-256, and Argon2id — are computationally secure.
A 51% attack on BERACOIN requires an attacker to control the majority of the BERAHash hashrate. The Argon2id Stage 2 raises the hardware cost of this attack by approximately two orders of magnitude compared to a pure SHA-256 chain of equivalent market capitalisation. At 256 MB per hash, purpose-built attack hardware must include equivalent memory alongside compute, dramatically increasing both capital expenditure and operational cost.
The UTXO model ensures every coin unit has an unambiguous ownership provenance traceable to its coinbase origin. Double-spend requires a successful chain reorganisation of at least the required confirmation depth. For institutional settlement (6 confirmations, ~15 minutes), a successful reorg requires sustaining more than 50% of network hashrate for the reorg duration — economically irrational at any significant network value.
The following performance targets guide BERACOIN's engineering roadmap. Actual mainnet performance will be published post-launch:
BERACOIN development proceeds across 15 phases (P_00 through P_14) with an estimated mainnet launch 17–18 months from project inception. Current status: Phase 2 Testnet registration is open.
The BERACOIN Foundation is a non-profit entity being incorporated in a crypto-friendly jurisdiction (Switzerland, Singapore, or Cayman Islands — final selection pending legal counsel review). The Foundation receives 4% of all block rewards continuously, amounting to 1,680,000 BERA over the full emission schedule. All Foundation expenditures above 10,000 BERA require a public governance vote.
The core development team consists of protocol engineers, cryptographers, and blockchain infrastructure specialists with prior experience at established blockchain projects and financial technology firms. Full team disclosure will accompany the mainnet launch announcement in compliance with Foundation transparency commitments.
The Foundation maintains a commitment to open-source development: all protocol code, tooling, and documentation are published under the MIT License. Community contributions are welcomed via the BERACOIN GitHub repository and are governed by the Contributor License Agreement (CLA).
This whitepaper is published for informational purposes only and does not constitute financial, legal, investment, or tax advice. BERA tokens are utility tokens that provide access to the BERACOIN network and governance rights; they are not registered securities in any jurisdiction. Nothing in this document should be construed as a solicitation or offer to buy or sell any security or financial instrument.
Participation in the BERACOIN network or acquisition of BERA tokens involves significant risks, including but not limited to: total loss of funds, regulatory risk, technical vulnerabilities, market volatility, and uncertainty regarding the regulatory treatment of digital assets in various jurisdictions. Prospective participants should conduct their own due diligence and consult qualified legal, financial, and tax advisors before engaging with BERACOIN or BERA tokens.
TBERA (testnet tokens) have zero monetary value. The BERACOIN Foundation makes no representations or warranties, express or implied, regarding the accuracy, completeness, or suitability of the information contained herein. This document may be updated without notice as the protocol evolves. The most current version is always available at beracoin.io/whitepaper.
© 2024 BERACOIN Foundation. All rights reserved. Reproduction or distribution of this document requires written permission from the BERACOIN Foundation.
Full nodes, validator nodes, light nodes. Secure the network, earn fees, and govern.
Independently validates every block since genesis. No trust in any third party. Maximum sovereignty.
Full node + 10,000 BERA bond. Earns tx fee share. Votes on governance. Subject to slashing for downtime or misbehaviour.
Headers only. Merkle proof tx verification. Mobile wallets and embedded devices.
ASIC-resistant SHA-256d + Argon2id hybrid PoW. CPU and GPU mining viable. 13.38 BERA to miner per block (Era 1).
Stage 1 is GPU-optimised SHA-256d. Stage 2 Argon2id at 256 MB prevents ASIC domination. An RTX 4090 runs ~3 parallel mainnet instances — fully competitive with any conceivable ASIC on $/hash.
Non-profit steward of the BERACOIN protocol — open-source development, ecosystem grants, legal compliance.
To develop and grow BERACOIN as open-source public infrastructure for global payments and real-world asset settlement — governed by its community, not its founders.
Foundation receives 4% of all block rewards continuously — 1,680,000 BERA over the full emission schedule. All expenditures above 10,000 BERA require a public governance vote. Treasury address is publicly auditable on-chain at all times.
| Area | Description | Budget Guidance |
|---|---|---|
| Protocol Development | Core engineering, security audits, tooling | 40% of Foundation allocation |
| Ecosystem Grants | Developer grants, hackathons, integrations | 25% of Foundation allocation |
| Legal & Compliance | Regulatory counsel, exchange licensing, KYC | 15% of Foundation allocation |
| Community & Marketing | Education, conferences, partnerships | 15% of Foundation allocation |
| Operational Reserve | 18-month runway maintained at all times | 5% of Foundation allocation |
Sound monetary policy, independent audits, and on-chain governance designed from day one for institutional adoption.
42,000,000 BERA hard cap. Mathematical emission schedule. No central bank or discretionary inflation. Deflationary by design — 50% of supply mined in the first 5 years, tail emission beyond year 20.
Two independent security audits pre-mainnet (Phase 11). Annual audits post-launch. Open-source code. Formal verification tooling for critical consensus components. Bug bounty on Immunefi.
Institutional validators with 10,000+ BERA bonds earn proportional transaction fee revenue and binding on-chain governance voting rights from mainnet genesis.
BRA-20/721 asset tokenisation positions BERACOIN to capture a share of the estimated $16 trillion global real-world asset tokenisation market projected by BlackRock and Boston Consulting Group by 2030.
All non-mining allocations vest continuously via the protocol reward split — no large VC or insider unlocks to suppress price. Every BERA in circulation is earned via block reward at the same schedule.
Legal entity formation and securities law analysis (Howey Test) completed in Phase 0. Compliance tooling, KYC/AML policy, and legal opinion letters prepared ahead of exchange listings.
Exchange listing strategy, timeline, and requirements for market makers and exchange partners.
| Tier | Target Exchanges | Est. Timeline | Key Requirements |
|---|---|---|---|
| Tier 3 | MEXC, Gate.io, BitMart, LBank | Month 18–20 | Mainnet live, AML policy, market maker on board |
| Tier 2 | KuCoin, Bitget, Bybit, OKX | Month 20–26 | $5M+ daily volume, full audit, legal opinion |
| Tier 1 | Coinbase, Binance, Kraken | Month 28+ | $50M+ market cap, full regulatory compliance |
| DEX | Uniswap v3 (WBERA), Osmosis | Phase 9 | Ethereum bridge live, sufficient LP depth |
Issue any real-world asset natively on BERACOIN via BRA-20 and BRA-721 standards — no EVM, no smart contract attack surface.
Stablecoins, tokenised commodities, equity tokens, utility tokens. Fixed or variable supply with optional transfer restrictions and compliance metadata baked in natively at protocol level.
Real estate, invoice financing, art provenance, IP rights. Each token carries a SHA-256 content hash of the off-chain asset document anchored on-chain — tamper-evident audit trail.
Hybrid fungible/non-fungible. Batch transfers in a single transaction. Supply chain tokenisation and fractional ownership structures. Scheduled for Phase 7.
Property ownership fractionalised into BRA-721 tokens. Enables 24/7 peer-to-peer trading and near-instant settlement versus traditional conveyancing timelines of weeks. Rental income distributed automatically via BRA-20 dividend tokens.
Export invoices tokenised as BRA-721 assets and used as on-chain collateral for working capital facilities. Eliminates the 90-day payment terms that strangle small exporters in emerging markets.
BRA-20 stablecoins backed by audited gold, oil, or agricultural commodity reserves. On-chain proof-of-reserves via BRA-721 vault certificates updated on every audit cycle.
Startup equity and revenue-share agreements represented as BRA-20 tokens with built-in transfer restrictions for accredited investor compliance. Cap table management on-chain.