Bitcoin Forum
November 12, 2025, 08:34:02 PM *
News: Pumpkin contest voting
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: [ANN] HoldTEN (HTEN)— Self‑Contained On‑Chain AMM with BNB Reserve  (Read 57 times)
BlockTEN (OP)
Newbie
*
Offline Offline

Activity: 13
Merit: 0


View Profile
November 09, 2025, 03:35:10 PM
 #1

HoldTEN (HTEN) — Self-Contained On-Chain AMM with BNB Reserve (p = B/T)
Fair launch • 21,000,000 cap • No premine • No tax • Burn-first sells (γ)


Abstract
HoldTEN unifies the market and the asset in a single, on-chain design: a self-contained AMM with its own BNB reserve (“bank”).
Price is determined by a transparent invariant p · T = B (so p = B/T), where B is the on-chain BNB reserve and T is the pool’s HTEN balance.
Buys send BNB to the AMM and mint/release units along a bonding curve; sells are burn-first with a dynamic ratio γ = P/(1−P).
No external LP is required; liquidity is native, persistent, and trustless.


How it works (TL;DR)
  • Always-on liquidity: the AMM keeps a BNB “bank” and quotes the formula price p = B/T at all times.
  • Buy: send BNB to the AMM → part grows the bank, part releases/mints units to the buyer (per curve).
  • Sell: send HTEN to the AMM → a fraction is burned (γ), the rest redeems BNB at the formula price.
  • Curve: logistic (“SIG-21”) with a 21,000,000 hard cap; early phase retains more BNB (P high), later phase mints less (P → 0).
  • Fair launch: no premine, no team allocation, no transaction taxes, no external LP.


Architecture
Monolithic contract logic manages issuance, pricing and redemptions. Internal accounting tracks:
  • Reserve BNB (the “bank”)
  • Pool balance T
  • Invariant p · T = B
Because liquidity is native, there is no LP token, no impermanent loss, and no dependency on third-party market makers or listings.


Curve Mechanics (SIG-21)
  • P(C): fraction of incoming BNB retained by the bank at circulating supply C (starts high, decreases towards 0 as C → 21M).
  • γ(C) = P/(1−P): burn ratio on sells (high early to deter dumping, tends to 0 as supply matures).
Effect: early buys deepen the reserve; early sells are strongly burned (deflationary). Over time the system transitions into a fixed-supply asset.


Pricing & Liquidity
  • Invariant: p = B/T. As B grows (buys), price rises; when B pays out (sells), price softens — cushioned by burns that reduce supply.
  • Auto-liquid: the AMM always quotes and honors the formula; there is no LP “rug” risk since liquidity is native in the bank.
  • Transparent math: preview functions let users estimate buy/sell outcomes beforehand.


User Flow (Buy / Sell)
  • Buy (two options):
     
    • Send BNB directly to the system address (simple mode).
    • Call buy(to, minOut) with a minimum return (pro mode).
  • Sell (two options):
     
    • Transfer HTEN straight to the system address (auto-redeem).
    • Call sell(amount).
Note: a tiny V2 pair may exist for charting/indexing only. Do not add external liquidity; the native AMM is the source of truth.


Supply Model
  • Hard cap: 21,000,000.
  • Issuance via buys only: units enter circulation exclusively through on-chain buys along the curve.
  • No premine / no team: fair-launch discipline; no taxes or hidden drains.


Why it matters
  • Resilience: native liquidity, no reliance on third-party LPs or exchange listings.
  • Predictable pricing: open formula beats opaque market-making.
  • Alignment: dynamic burn deters early dumping; later trading is freer as γ trends down.
  • O(1) on-chain ops: no loops/oracles; gas-predictable mechanics.


How to check price on-chain
Code:
RPC=https://bsc-dataseed.binance.org
ADDR=0x9E5962E0897f88C6a37c6D8484f979F48Fb1976B

# price p in BNB per 1 HTEN (WAD)
cast call $ADDR "priceWad()(uint256)" --rpc-url $RPC | cast --to-dec

# other views (optional)
cast call $ADDR "gammaWad()(uint256)"    --rpc-url $RPC | cast --to-dec
cast call $ADDR "bankWei()(uint256)"     --rpc-url $RPC | cast --to-dec
cast call $ADDR "T_contract()(uint256)"  --rpc-url $RPC | cast --to-dec
cast call $ADDR "totalSupply()(uint256)" --rpc-url $RPC | cast --to-dec


Ongoing micro-bounties: “Proof-of-Trade”
We periodically run simple waves (buy ≥ a tiny BNB amount via the native AMM, post your tx hash in the thread/channel, fixed reward to the first N valid entries).
This educates users to trade natively and helps decentralize holders. Check our channel for the current wave and rules.


Official


Disclaimer: experimental, fully on-chain market. No guarantees; do your own research. Never send from custodial exchange accounts. We never DM you first.
fabrilluvia
Newbie
*
Offline Offline

Activity: 1
Merit: 0


View Profile
November 09, 2025, 04:03:07 PM
 #2

Created an account here just to reply to this message.
How can I know more of the project?

Thank you
BlockTEN (OP)
Newbie
*
Offline Offline

Activity: 13
Merit: 0


View Profile
November 09, 2025, 04:09:46 PM
 #3

Hi @fabrilluvia — welcome, and thanks for jumping in!

Short version: HoldTEN is a self-contained on-chain AMM. Price is p = B/T (BNB bank ÷ pool tokens), sells are burn-first (γ = P/(1−P)), hard cap 21,000,000, fair launch (no premine/tax, no external LP). Trade is via the contract only; the tiny V2 pair is for chart/indexing.

Read more / follow:

Whitepaper: https://t.me/blockten_io/127

Updates: https://x.com/YouPulseX

Bot (register wallet, link X, tools like /price): https://t.me/blockten_bot

Try it safely (tiny amount):

Buy: send a small amount of BNB to the AMM address: 0x9E5962E0897f88C6a37c6D8484f979F48Fb1976B.

Sell: send HTEN to the same address (auto-redeem) or call sell(amount).

Pro users can call buy(to, minOut) and use view fns (priceWad, gammaWad, etc.) to preview.
wahyunp56
Newbie
*
Offline Offline

Activity: 1
Merit: 0


View Profile
November 09, 2025, 04:12:30 PM
 #4

linkx @wahyunp22
UniqueOpphecial
Newbie
*
Offline Offline

Activity: 5
Merit: 0


View Profile
November 09, 2025, 04:35:10 PM
 #5

HoldTEN presents a compelling evolution in decentralized finance by integrating the market mechanism directly into the token's contract. This self-contained Automated Market Maker (AMM) eliminates the need for external liquidity pools, instead maintaining its own BNB reserve ("the bank"). The price is determined by a transparent, on-chain invariant:  p = \frac{B}{T} , where  B  is the contract's BNB balance and  T  is its HTEN token balance. This design ensures persistent, native liquidity, making the system resilient to the impermanent loss and liquidity fragmentation common in traditional LP models.

The economic model is carefully engineered for a fair launch and long-term stability. The "SIG-21" bonding curve governs issuance with a hard cap of 21,000,000 HTEN. A key innovation is the burn-first sell mechanism, where a dynamic ratio of tokens is burned upon sale, creating a strong deflationary pressure in the early stages to deter dumping. This ratio decreases as the supply approaches the cap, smoothly transitioning HTEN into a fixed-supply asset. For users, this means predictable, formula-based pricing for all transactions, with the contract itself serving as the guaranteed counterparty for every buy and sell.

X username: @UsamaBadamasi
Pages: [1]
  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!