Bitcoin Forum
April 11, 2026, 08:06:57 AM *
News: Latest Bitcoin Core release: 30.2 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 [4]  All
  Print  
Author Topic: [ANN] SOST — Native PoW Chain | ConvergenceX | CPU-Only | 8 GB | Gold Reserve  (Read 445 times)
Rizki Maryanto
Newbie
*
Offline Offline

Activity: 14
Merit: 0


View Profile
April 10, 2026, 10:36:33 PM
 #61

Hi NeoB,

I’ve been deep-diving into the node configuration to find my Node ID, but I’m still unable to locate it. I’ve exhausted the standard RPC methods and local file searches.

1. Detailed List of Commands Attempted:
To save us time, here is exactly what I have already tried on both my VPS and local node:

RPC getinfo: no unique Node ID or Pubkey.

RPC getpeerinfo: not list my own local ID.

RPC getnetworkinfo: Attempted, but returned Method not found.

RPC getwalletinfo: no Node/P2P ID.

Local Grep Search: I ran grep -ra "id" . and grep -ra "key" . inside the build folder and its subdirectories. It returned several JSON keys and hash fragments (Genesis and Tip), but nothing that looks like a static Node ID or Identity Hash.

Registry Check

Is the Node ID generated dynamically on every start, or is it stored in a specific file I might have missed? I need this to confirm my node is properly indexed by other peers.

2. Request for Additional Peers:
Since my local node is still struggling with the rate limit on the main seed, could you please provide a few more active Peer IP addresses? I want to add them manually using the --addnode parameter to stabilize my connection.

Current Mining Status:

Wallet: sost1cb12addd46c4389e3569a292cc394469951544f7

Log: Mining is active ([DIAG] steps are running), but I want to ensure my P2P presence is solid.

Looking forward to your technical guidance on this.

Best regards,
Rizki
Neob1844 (OP)
Newbie
*
Online Online

Activity: 14
Merit: 0


View Profile
April 10, 2026, 11:33:11 PM
 #62

Rizki, I just sent you some SOST to your address. Please, check your wallet and let me know when you see it confirmed. This is the fourth real transfer on the SOST mainnet.
oswaldzc
Newbie
*
Offline Offline

Activity: 6
Merit: 0


View Profile
Today at 03:16:17 AM
 #63

To @visibleplayer, @oswaldzc, @yoshikiazuma, and Rizki:

Your early reports helped identify and fix issues in P2P sync, rate limiting, checkpoints, and transport behavior.

I would like to send each of you a small SOST transaction to acknowledge your testing and to verify on-chain transfers under live conditions.

If interested, please share your wallet address (sost1...) here or by PM.

Thank you for your feedback.


oswaldzc:sost1507172ec62e761619958dd588463eb96a1994fa9
thanks
Rizki Maryanto
Newbie
*
Offline Offline

Activity: 14
Merit: 0


View Profile
Today at 06:25:16 AM
 #64

Huge thanks for the 50 coins, NeoB! I’m honestly deeply moved by your generosity. I will treasure this gift as a special memento of your kindness and as a symbol of your incredible support for this community. It is truly an honor to be part of this journey with you.
​As a way to celebrate and put this honor into action, I’m going to use it to test a transaction to my new wallet address: sost15b1919ab67c4061e2e66b180bbcd5f2cb9298c49. You’re a legend!
Rizki Maryanto
Newbie
*
Offline Offline

Activity: 14
Merit: 0


View Profile
Today at 06:32:29 AM
 #65

I also wanted to share my mining experience so far. I've been mining all night using two VPS instances simultaneously, each with 4 cores and 16GB of RAM. Even with those resources, it seems I haven't been able to find a single block yet—I guess I'm still no match for the 4 powerhouse miners already on the network! Hahaha...
I'm a bit concerned that as more people join, it will become even harder for individual miners like me to compete. If I may suggest, it would be wonderful if a mining pool could be established. That way, community members with modest setups could join forces and still have a fair chance to contribute and earn rewards together.
Neob1844 (OP)
Newbie
*
Online Online

Activity: 14
Merit: 0


View Profile
Today at 07:08:12 AM
Last edit: Today at 08:02:47 AM by Neob1844
 #66

ConvergenceX — cASERT V2 — Difficulty Response Under Growing Hashrate

The chain is currently ~33 blocks ahead of the expected schedule. Average block time over the last 288 blocks is 7m 43s (target: 10m 00s). In simple terms, blocks have been arriving about 30% faster than target over this observation window, which indicates that the current combined hashrate is temporarily above the present difficulty calibration.

Why the chain is ahead:
cASERT V2 uses a 24-hour half-life with a 12.5% per-block adjustment cap. This is intentionally conservative. It is designed to reduce violent oscillations when miners join and leave a small network. The tradeoff is simple: a system that is more stable will usually react more slowly to sudden hashrate increases.

This is the classic difficulty-adjustment tradeoff:
  • Fast response: catches up quickly, but may oscillate sharply
  • Stable response: avoids abrupt swings, but takes longer to absorb sudden hashrate changes

ConvergenceX currently prioritizes stability.

Observed behavior:
  • Difficulty has risen from ~11 bits to ~14 bits over the past 48 hours
  • The cASERT equalizer has been cycling between H2 and H4 profiles depending on recent block timing
  • When blocks arrive faster than target, the system raises the profile and increases difficulty
  • When blocks arrive slower than target, the system lowers the profile and eases difficulty
  • A very long block such as ~89 minutes should be interpreted as an outlier during live conditions, not as evidence of systemic instability; in that case the controller responds by easing the profile rather than allowing prolonged drift
  • The lag has stabilized around ~33 and is no longer growing materially — this is the key sign that the system is converging

What the PID-style controller means, in simple terms:
SOST does not rely on a single timing signal alone. Its controller behaves like a multi-signal PID-style regulator. PID control is a very widely used engineering method in real-world control systems because it helps a system correct error without depending on a single raw input alone:
  • Green — P (Proportional): reacts to the current error. If blocks are too fast, difficulty rises. If they are too slow, difficulty falls.
  • Blue — I (Integral): reacts to accumulated error over time. If the chain has been ahead or behind for a sustained period, the correction becomes stronger.
  • Red — D (Derivative-style / dynamic response): reacts to how quickly conditions are changing, helping the system respond to bursts, shocks, and sudden miner entry or exit.

In practical terms, Bitcoin mainly reacts slowly in bulk, Monero reacts through a smoother EWMA-style formula, and SOST uses a more explicit control system with multiple live signals, equalizer profiles, and a hard per-block adjustment cap.

Why this is different from other systems:
  • Bitcoin: bulk retargeting every 2,016 blocks; extremely robust historically, but slow to react to sudden hashrate changes
  • Monero: continuous EWMA-style retargeting; smoother and faster than Bitcoin, but still based on a simpler adjustment model
  • SOST: explicit half-life, hard cap per block, equalizer profiles, and PID-style multi-signal control behavior

This means ConvergenceX is not just changing difficulty; it is regulating network timing with a highly structured multi-signal control model.

Note, with full respect: Bitcoin is the founder and ancestor of the entire crypto ecosystem, and nothing in this comparison should be read as diminishing that. SOST (Sovereign Stock Token) is not presented as a replacement for Bitcoin, but as a different engineering exploration built on lessons that only Bitcoin made possible, including its native proof-of-work ConvergenceX. Bitcoin has been, is, and will always remain an extraordinarily visionary and revolutionary achievement — the reference point and vital source of inspiration for researchers, innovators, and developers across the crypto ecosystem..

Comparison:
SystemAdjustment modelResponse windowPer-block capTypical time to absorb ~30% faster block production
BitcoinBulk retarget~2 weeksNo direct comparable per-block cap~2 weeks
MoneroEWMA~720 blocks (~24h)None~1-2 days
SOST V2PID-style multi-signal + equalizers24h half-life12.5%On the order of a few days

Assessment:
The current parameters prioritize stability over speed of response. For a young network where miners may connect and disconnect unpredictably, this reduces the risk of overreaction, oscillation, and difficulty stalls. A more aggressive configuration, such as a shorter half-life, would respond faster but could make a small network less stable under irregular hashrate conditions.

No parameter changes are planned at this time. The observed behavior is consistent with the current design goals: the chain moved ahead under increased hashrate, difficulty rose, the equalizer moved into higher profiles, and the lag stopped expanding materially. That is convergence, not loss of control.

If network conditions change materially as more miners join, a future adjustment (cASERT V3) could be evaluated — but only with sufficient data and without rushing a hard fork.

Live difficulty and cASERT profile data can be observed on the explorer:
sostcore.com/sost-explorer.html
sostprotocol.com/sost-explorer.html
Pages: « 1 2 3 [4]  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!