Docs
This page documents how Knovy works under the hood — the contracts it calls, the wallet model, and the rules for holder chat. Knovy is a client on top of existing infrastructure; nothing here is custom-built to hold funds.
Network
| Chain | Robinhood Chain |
|---|---|
| Chain ID | 4663 |
| RPC | rpc.mainnet.chain.robinhood.com |
| Explorer | robinhoodchain.blockscout.com |
Wallets & login
Signing in to Knovy is X OAuth, handled by Privy. On first login, Privy provisions an embedded, non-custodial wallet — Knovy never sees or stores your private key. The wallet can be exported from Privy at any time if you want to use it outside Knovy, including directly on Pons's own interface.
Launching a profile coin
Every launch goes through the Pons V2 factory directly — Knovy pre-fills the form from your profile, but the transaction is the same launchToken() call anyone could make.
| Factory | 0x7eD598BcEf8bd9Edd8C97A195C6d13f40801EC7e |
|---|---|
| Router | 0xe33e9e479Df8802cB0866d5D05258bEc4cF62948 |
| Supply | 1,000,000,000 (fixed) |
| Launch fee | 0.0005 ETH, paid by the creator |
Token metadata — name, ticker, image, description, X, Telegram, and Website — is set at launch time. Knovy sets Website to your Knovy profile URL automatically. Pons's own interface may only surface X and Telegram, but the field is stored in the token's on-chain metadata for any scanner or indexer that reads it.
Pricing & graduation
Before graduation, a token trades against its own bonding curve — not a pool, and not against any other token. The curve is a Pons V2 contract, deployed fresh per launch.
| Graduation threshold | 4.2 ETH raised (native-quoted launches) |
|---|---|
| Post-graduation venue | Full-range Uniswap V4 pool, permanently locked |
| Base trading fee | 1% per trade |
| Base fee split | 70% creator / 30% Pons protocol — snapshotted at launch, fixed forever |
Fee claiming
Fee claiming is two steps under the hood, though Knovy's Claim fees button does both in one tap:
- Sweep. Fees sit inside the bonding curve contract until someone calls
sweepFees(), which distributes them out. Pre-graduation, this is restricted to Pons's fee-sweep operator or the token's own deployer — so as the creator, you can always trigger it yourself. - Claim. Once swept, your share is credited to a shared fee escrow contract. From there,
claim()is fully permissionless — anyone can pull their own balance, anytime, no schedule, no expiry.
You can do both from Knovy, or export your wallet from Privy and do the same two calls directly against Pons's own contracts — nothing about your fees is Knovy-specific.
Holder chat
Every profile with a coin gets a chat room. Access is checked against the connected wallet's on-chain balance of that profile's token at the moment the room is opened — not a snapshot, not an allowlist.
- Buy the coin → the room unlocks.
- Sell out completely → the room locks again.
- There's no separate invite step — the balance check is the gate.
Disclaimers
Knovy is an interface. Review the token address, the creator, and the liquidity before you trade. Prices can move quickly and liquidity can be thin, especially pre-graduation. Similar names and images can represent unrelated tokens — always check the contract address, not just the name. Smart contracts, wallets, and RPCs can all fail; displayed values are estimates, not execution guarantees. Nothing on this page or in the app is investment advice.