Skip to content
Coinbosa
Ecosystem Chain & BOSA Developers About Join the ecosystem

The network, its native coin, and the tokenomics that seals it.

Coinbosa Chain is a sovereign EVM blockchain, deployed to production on August 7, 2026 and designed for industrial scale and critical financial applications. Its settings are recorded in the genesis block and can be read back from the public endpoint.

Chain ID
26262
Block time
5 s
BOSA supply
700 000 000
Token standard
BRC20
Network fact sheet

The settings, exactly as recorded.

These values are fixed in the genesis block, or applied by the client to each block produced. Two nodes that do not display the same block 0 hash are not on the same chain.

Network nameCoinbosa Chain
Chain ID262620x6696
Virtual machineEVM-compatible
ConsensusParlia
Block timeTarget: 5 s | Measured: 5.018 s over 500 blocks
Epoch rolloverValidator intervals fixed — 200-block epoch, verified at blocks 200, 400, 600 and 800
Consensus system contractCustom-written (Solidity / Go-Ethereum), running directly on-chain
Native token standardBRC20 (ERC-20 compatible)
Native coinBOSA
Decimals18
Total supply700,000,000 BOSA, fixed
Block 0 hash0x8dcdadc247a98f33728cae944e20ce7c49c74b35cfba31495f85e98979018da6
Block 0 state root0x93682eb9182a55531d47014b76a285b45d3e720a2951f9ffbdc67f52995f8c03
First block sealedAugust 7, 2026
Replay protectionEIP-155
JSON-RPC endpointhttps://explorer.coinbosa.com/rpc
Source repositorygithub.com/Coinbosa/coinbosa-chain
PublisherCoinbosa, Inc. — State of Delaware, United States

The chain identifier is part of the signature. EIP-155 replay protection binds every signed transaction to network 26262: a transaction issued here is valid only on this chain. The genesis block hash and its state root can be read back on the official explorer.

The consensus

Parlia, measured over 500 consecutive blocks.

On a test bench measured over 500 consecutive blocks in continuous integration, the average block time settles with minimal variance.

Average block time — 500-block test bench
T_block = (1 / N) × Σ Δt_i        for i = 1 … N,  N = 500
        = 5.018 seconds           (target: 5.000 s)

The target and the measurement

The target is 5 seconds per block. The average recorded on the 500-block test bench is 5.018 seconds: the gap to the target lies within the variance of sealing.

The epoch rollover

Validator intervals are fixed per epoch of 200 blocks. The rollover is verified at blocks 200, 400, 600 and 800: that is where the engine re-reads the full validator set.

The system contract

The consensus system contract is custom-written, in Solidity and Go-Ethereum, and runs directly on-chain.

The native coin

A fixed supply, sealed in the genesis block.

The total supply of the BOSA coin is strictly fixed at 700,000,000 BOSA. No further issuance will ever take place.

Seven hundred million, and nothing more

The final supply is sealed in the genesis block. It depends on no later decision: what exists today is what will exist.

Eighteen decimals

BOSA is divided into 18 decimals, the unit format of Ethereum virtual machines. Wallets and development tools apply it without any particular setting.

The BRC20 standard

The native token standard of the chain is BRC20, ERC-20 compatible in its interface, covered by a complete automated test suite in continuous integration.

Official tokenomics

Thirteen allocations, one hundred percent of the supply.

The official breakdown of the BOSA supply, as it appears in the whitepaper. The volumes add up exactly to the supply sealed in the genesis block.

Allocation categoryShareVolume (BOSA)Purpose
Development20 %140 000 000Evolution of the infrastructure and the chain
Technical10 %70 000 000Maintenance of the servers, the RPC and the validator nodes
Research10 %70 000 000Protocol and cryptographic innovation
Team10 %70 000 000Founders, engineers and key contributors
Financial fund (Coinbosa Card)10 %70 000 000Liquidity reserve for fiat and card transactions
Liquidity fund10 %70 000 000DEX and CEX liquidity pools
AI research10 %70 000 000Development of the proprietary CoinBosa AI model
Finance and fintech research5 %35 000 000Compliance research and neobank products
Public distribution and community5 %35 000 000Global adoption and network rewards
Security3 %21 000 000Bounty programs and infrastructure protection
Strategic reserve3 %21 000 000Institutional partnerships and contingencies
Audit2 %14 000 000External smart contract audits
Events and training2 %14 000 000Organization of seminars and CoinBosa Academy
Total fixed supply100 %700 000 000Final supply sealed in the genesis block

A strict tokenomics is read in its totals. The thirteen allocations make up 100% of the supply, that is 700,000,000 BOSA, and the supply is sealed at the genesis block: no line can be created after the fact without changing chains.

Applications

DeFi, DEX and smart contracts.

The Coinbosa Chain embeds a native DeFi and DEX suite, open to developers.

Issuing and deploying

Developers issue smart contracts and deploy BRC20 tokens without restriction.

Creating liquidity

The native suite makes it possible to create liquidity pools on the chain.

Verification

Reading these values back from the public endpoint.

Two requests are enough: the identity of the chain, then the genesis block from which everything else follows.

Chain identity and block 0
curl -s -X POST https://explorer.coinbosa.com/rpc \
  -H 'content-type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"eth_chainId","params":[]}'
# result : "0x6696"  soit 26262

curl -s -X POST https://explorer.coinbosa.com/rpc \
  -H 'content-type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"eth_getBlockByNumber",
       "params":["0x0", false]}'
# hash      : 0x8dcdadc247a98f33728cae944e20ce7c49c74b35cfba31495f85e98979018da6
# stateRoot : 0x93682eb9182a55531d47014b76a285b45d3e720a2951f9ffbdc67f52995f8c03

The genesis block is the reference. Its hash and its state root commit the initial state of the chain: a node that returns other values is not serving Coinbosa Chain, whatever name it bears.

Connect

Three fields are enough.

The procedure is the same in any EVM wallet. A mistyped identifier sends funds to a network that is not yours: prefer adding it from code.

New RPC URLhttps://explorer.coinbosa.com/rpc
Chain ID26262
Currency symbolBOSA

A mistyped identifier sends funds to a network that is not yours. The network name, Coinbosa Chain, and the address of the explorer complete the fact sheet; the shortest check remains comparing the genesis block hash.

Connect, deploy, verifyAdding from code, the methods the public endpoint accepts, and the interface of the BRC20 standard.

Open the documentation