Bitcoin Forum
March 16, 2026, 05:20:53 PM *
News: Latest Bitcoin Core release: 30.2 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 [15]  All
  Print  
Author Topic: Running Bitok - 0.3.19 Mainnet  (Read 5171 times)
sneshko333
Newbie
*
Offline Offline

Activity: 3
Merit: 0


View Profile
March 15, 2026, 03:17:25 PM
 #281

Mining seems very difficult; sometimes it takes 45 minutes to compute a single block, which isn't good for transactions.

When is the difficulty adjusted? Is it automatic?

the difficulty is recalculated every 2016 blocks, the last one was 24192
DuinoTycoon
Newbie
*
Offline Offline

Activity: 3
Merit: 0


View Profile
March 15, 2026, 05:02:29 PM
 #282

I added ARM64 support where do I share it

Open a pull request on github. Please include build notes and the ARM64 platform tested

Just submitted it
coderzzz
Newbie
*
Offline Offline

Activity: 3
Merit: 0


View Profile
Today at 07:16:51 AM
 #283

Mining seems very difficult; sometimes it takes 45 minutes to compute a single block, which isn't good for transactions.

When is the difficulty adjusted? Is it automatic?

the difficulty is recalculated every 2016 blocks, the last one was 24192

After adjusting the difficulty, I encountered a situation where I didn't get any block for 10 hours on solo mode,I'm not sure if there's a problem; I'm going to try again.
Laheeboo
Newbie
*
Offline Offline

Activity: 45
Merit: 0


View Profile
Today at 07:34:13 AM
 #284

Mining seems very difficult; sometimes it takes 45 minutes to compute a single block, which isn't good for transactions.

When is the difficulty adjusted? Is it automatic?

the difficulty is recalculated every 2016 blocks, the last one was 24192

After adjusting the difficulty, I encountered a situation where I didn't get any block for 10 hours on solo mode,I'm not sure if there's a problem; I'm going to try again.

I found my block at 2 pm it's 3:30 am and it still needs 23 more confirmations. I have no one to send coin to so no rush here, but I see how it can be a problem when you're trying to send it to someone and it takes a day.
elvisjedusor (OP)
Jr. Member
*
Offline Offline

Activity: 65
Merit: 5


View Profile
Today at 07:46:05 AM
 #285

BITOK v0.3.19.13 - ATOM: The Lost Bitcoin Layer 🜂

Bitok 0.3.19.13 introduces a major protocol upgrade implementing a native token layer and a consensus-level decentralized exchange directly inside the Bitok node.

This release adds a new subsystem called ATOM, together with an integrated BITOK/ATOM decentralized exchange (DEX).

Unlike modern DeFi systems that rely on VM, the Bitok implementation embeds trading logic directly into the node consensus rules executed by every full node.

The result is a deterministic protocol-level state machine for tokens and exchange settlement.

What is ATOM 🜂
https://github.com/elvisjedusor/bitok/blob/master/docs/ATOM.md

In November 2008, weeks before Bitcoin's public launch, Satoshi Nakamoto drafted a pre-release version of the Bitcoin source code that never reached public release. Researcher Francis Pouliot discovered this code in 2019. It contained several notable concepts including atoms tied to user address - widely interpreted as a node reputation or trust scoring system

Now ATOM is a native token layer integrated into the Bitok protocol as a part of reputation system.

Instead of using smart contracts, token operations are encoded in transaction payloads and validated by the node during block processing.

Each address maintains a token state consisting of ATOM balance and transaction nonce

State transitions are executed during block validation and are fully reversible during chain reorganizations.

Protocol Activation

Code:
The ATOM protocol activates at block height: 25000

Before this height:

- ATOM payloads are ignored

- legacy nodes remain compatible

After activation:

- nodes begin validating ATOM transactions

- token state becomes part of consensus rules.

This mechanism allows the network to upgrade without causing a chain split.

Code:
Token Supply

Maximum supply:

1,000,000,000 ATOM

Distribution model:

~420M issued through mining rewards

~580M minted through bridge operations

Mining rewards distribute ATOM alongside BITOK block rewards and follow the same halving schedule.
------------------------------

ATOM Transaction Model

ATOM transactions include:

- sender address

- recipient address

- token amount

- nonce

Validation rules enforce:

- increasing nonce values

- sufficient balance

- sender key ownership

- mempool conflict prevention

Spendable balance is calculated as confirmed balance − pending outbound transactions. This prevents double spending before confirmation.


Native Decentralized Exchange
https://github.com/elvisjedusor/bitok/blob/master/docs/DEX.md

Bitok now includes a protocol-level p2p orderbook exchange. BITOK and ATOM pair added.

The exchange operates entirely through consensus rules.

There are no VM, liquidity pools, or custodial mechanisms.

Most “DEX” systems are just smart contracts. The blockchain itself doesn’t understand trading. It only executes contract code. BITOK takes a different approach. Trading is implemented directly inside the node consensus rules.

Atomic settlement at the protocol level.


Exchange Operation ATOM-BITOK

Trading follows a simple on-chain order model:

- A user publishes a DEX_OFFER transaction.

- ATOM tokens are escrowed when the block confirms.

- Another user submits a DEX_TAKE transaction with the required BITOK payment.

- Nodes verify the payment during block validation.

- If the payment is insufficient, the block is rejected.

This guarantees atomic settlement enforced by the protocol.


Orderbook

Open orders are stored in node state and indexed by transaction hash. Nodes reconstruct the orderbook automatically from persistent state when starting.


Reorganization Safety

All ATOM and DEX operations are fully reversible. If a block is disconnected:

- token transfers revert

- orderbook entries are restored

- balances return to previous state

The token layer strictly follows the blockchain state machine.


Cross-Chain Bridge

The protocol includes support for bridging ATOM tokens.

Bitok Blockchain - Solana (SPL token)


RPC Interface

New RPC commands allow applications and wallets to interact with the token and exchange layers.



Bitok introduces a layered model:

BITOK - monetary base layer
ATOM - token / reputation layer
DEX - marketplace settlement layer


Download latest release:
https://github.com/elvisjedusor/bitok/releases/tag/0.3.19.13
https://bitokd.run/download

Quick docs: https://bitokd.run/docs

Full Docs: https://github.com/elvisjedusor/bitok/tree/master/docs
wqy2706113
Newbie
*
Offline Offline

Activity: 23
Merit: 0


View Profile
Today at 11:33:12 AM
 #286

BITOK v0.3.19.13 - ATOM: The Lost Bitcoin Layer 🜂

Bitok 0.3.19.13 introduces a major protocol upgrade implementing a native token layer and a consensus-level decentralized exchange directly inside the Bitok node.

This release adds a new subsystem called ATOM, together with an integrated BITOK/ATOM decentralized exchange (DEX).

Unlike modern DeFi systems that rely on VM, the Bitok implementation embeds trading logic directly into the node consensus rules executed by every full node.

The result is a deterministic protocol-level state machine for tokens and exchange settlement.

What is ATOM 🜂
https://github.com/elvisjedusor/bitok/blob/master/docs/ATOM.md

In November 2008, weeks before Bitcoin's public launch, Satoshi Nakamoto drafted a pre-release version of the Bitcoin source code that never reached public release. Researcher Francis Pouliot discovered this code in 2019. It contained several notable concepts including atoms tied to user address - widely interpreted as a node reputation or trust scoring system

Now ATOM is a native token layer integrated into the Bitok protocol as a part of reputation system.

Instead of using smart contracts, token operations are encoded in transaction payloads and validated by the node during block processing.

Each address maintains a token state consisting of ATOM balance and transaction nonce

State transitions are executed during block validation and are fully reversible during chain reorganizations.

Protocol Activation

Code:
The ATOM protocol activates at block height: 25000

Before this height:

- ATOM payloads are ignored

- legacy nodes remain compatible

After activation:

- nodes begin validating ATOM transactions

- token state becomes part of consensus rules.

This mechanism allows the network to upgrade without causing a chain split.

Code:
Token Supply

Maximum supply:

1,000,000,000 ATOM

Distribution model:

~420M issued through mining rewards

~580M minted through bridge operations

Mining rewards distribute ATOM alongside BITOK block rewards and follow the same halving schedule.
------------------------------

ATOM Transaction Model

ATOM transactions include:

- sender address

- recipient address

- token amount

- nonce

Validation rules enforce:

- increasing nonce values

- sufficient balance

- sender key ownership

- mempool conflict prevention

Spendable balance is calculated as confirmed balance − pending outbound transactions. This prevents double spending before confirmation.


Native Decentralized Exchange
https://github.com/elvisjedusor/bitok/blob/master/docs/DEX.md

Bitok now includes a protocol-level p2p orderbook exchange. BITOK and ATOM pair added.

The exchange operates entirely through consensus rules.

There are no VM, liquidity pools, or custodial mechanisms.

Most “DEX” systems are just smart contracts. The blockchain itself doesn’t understand trading. It only executes contract code. BITOK takes a different approach. Trading is implemented directly inside the node consensus rules.

Atomic settlement at the protocol level.


Exchange Operation ATOM-BITOK

Trading follows a simple on-chain order model:

- A user publishes a DEX_OFFER transaction.

- ATOM tokens are escrowed when the block confirms.

- Another user submits a DEX_TAKE transaction with the required BITOK payment.

- Nodes verify the payment during block validation.

- If the payment is insufficient, the block is rejected.

This guarantees atomic settlement enforced by the protocol.


Orderbook

Open orders are stored in node state and indexed by transaction hash. Nodes reconstruct the orderbook automatically from persistent state when starting.


Reorganization Safety

All ATOM and DEX operations are fully reversible. If a block is disconnected:

- token transfers revert

- orderbook entries are restored

- balances return to previous state

The token layer strictly follows the blockchain state machine.


Cross-Chain Bridge

The protocol includes support for bridging ATOM tokens.

Bitok Blockchain - Solana (SPL token)


RPC Interface

New RPC commands allow applications and wallets to interact with the token and exchange layers.



Bitok introduces a layered model:

BITOK - monetary base layer
ATOM - token / reputation layer
DEX - marketplace settlement layer


Download latest release:
https://github.com/elvisjedusor/bitok/releases/tag/0.3.19.13
https://bitokd.run/download

Quick docs: https://bitokd.run/docs

Full Docs: https://github.com/elvisjedusor/bitok/tree/master/docs


Very impressive work.
Implementing a deterministic token layer and protocol-level DEX directly inside the node is a fascinating idea.
It reminds me of the kind of experimentation we saw in the early Bitcoin days.
Respect for pushing the architecture forward while keeping it simple and consensus-driven.
Curious to see how ATOM develops in the coming months. Cool
Tongpu
Member
**
Offline Offline

Activity: 136
Merit: 10


View Profile WWW
Today at 12:14:40 PM
Last edit: Today at 12:34:04 PM by Tongpu
 #287

BITOK v0.3.19.13 - ATOM: The Lost Bitcoin Layer 🜂
What is ATOM 🜂
https://github.com/elvisjedusor/bitok/blob/master/docs/ATOM.md

Native Decentralized Exchange
https://github.com/elvisjedusor/bitok/blob/master/docs/DEX.md

Impressive work. I'm starting my research with this new release
As I understand it, since mining pool blocks are propagated to the network from the pool address, the pool will start receiving trust points (ATOMs) from block 25000. Therefore, I need to implement ATOM payouts for pool miners now

⛏️Bitok Pool lastbitcoin.org | ⛓️Bitok explorer bitokd.run | 🚰Free faucet freebitok.com | Web-wallet wallet.bitokd.run
Pool address: 15hRoaxAZvYtxmQdYLrjrJ4CEQV3WfhqAS (BITOK donations arwelcome. I dont need BTC!)
Laheeboo
Newbie
*
Offline Offline

Activity: 45
Merit: 0


View Profile
Today at 12:25:54 PM
 #288

BITOK v0.3.19.13 - ATOM: The Lost Bitcoin Layer 🜂
What is ATOM 🜂
https://github.com/elvisjedusor/bitok/blob/master/docs/ATOM.md

Native Decentralized Exchange
https://github.com/elvisjedusor/bitok/blob/master/docs/DEX.md

Impressive work. I'm starting my research with this new release
As I understand it, since mining pool blocks are propagated to the network from the pool address, the pool will start receiving trust points (ATOMs) from block 25000. Therefore, I need to implement ATOM payouts for pool miners now
Glad you're on top of it buddy I was gonna tag you with the update but I waited because I know you're always on it.
At least it won't be as hard to implement for the solo pool  Grin Wink Grin

expect more miners to come on between now and block 25000 and more after hopefully.
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 [15]  All
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!