Docs
← Home

How TickUp works

The inscription launchpad for Robinhood Chain — meme & RWA. This document explains the product logic, the $TICK token, and how fees create value for holders.

Overview

TickUp lets anyone turn an idea into an on-chain asset in one click. You inscribe — mint an NFT whose metadata (name, ticker, supply, image) lives fully on-chain. From there you choose your path: keep it and sell it as an NFT, convert it into a fixed-supply ERC-20, or launch it as a token on a bonding curve that anyone can trade. The whole journey happens on one page, with no code.

The platform is deliberately simple for web2 users, and native to Robinhood Chain — where meme culture and tokenized real-world assets (RWA) live side by side.

Why TickUp

Inscriptions

A TickUp token is a JSON inscription — an EVM-native inscription standard on Robinhood Chain with three operations:

A mint inscription looks like this:

{
  "p": "erc-20",
  "op": "mint",
  "tick": "tick",
  "amt": "1000"
}

Each mint is amt = 1000. With a max supply of 21,000,000 and a mint limit of 1,000, exactly 21,000 mints fill the supply — the 21,000 × 1,000 = 21,000,000 model.

Launch lifecycle

STEP 1 · MINT

Mint the TICK NFTs

Everyone mints op: mint inscriptions (1,000 each). This raises the launch funds.

STEP 2 · FUND

Create the $TICK token

The collected mint funds seed the $TICK governance token and its liquidity.

STEP 3 · TRANSFER

Burn → trade

Holders burn their mint NFTs to receive tradeable op: transfer $TICK — then buy & sell.

Public creation is gated until a planned date. $TICK is deployed and minted first; until creation opens, clicking “Create” shows Coming Soon.

Sell · Convert · Launch

🏷️
Sell as an NFT

List at a fixed price. On a sale the fee is split between the creator and the platform; the rest goes to the seller.

🪙
Convert to a token

Mint the whole fixed supply to yourself as a trustless ERC-20, and trade it anywhere.

🚀
Launch on a curve

Seed the whole supply to a bonding curve — instant buy/sell, then graduation to a DEX.

Converting or launching locks the original NFT as the on-chain certificate, so an inscription is either a collectible NFT or a token — never double-spent.

The bonding curve

A launched token trades on a constant-product curve with a virtual base offset (so the start price is finite and non-zero). Buyers pay the native coin and receive tokens; sellers return tokens for the native coin. Every payout rounds in the curve's favour, so the curve can never pay out more than it holds — no drain.

When enough native has been collected the token graduates: all collected native + the unsold tokens become DEX liquidity, and the LP is burned (permanently locked). Curve trading then closes and the token lives on the DEX.

$TICK tokenomics

ParameterValue
Total supply21,000,000 TICK
Collection size21,000 membership NFTs
Per NFT1,000 TICK
ModelFixed, Bitcoin-homage supply. 21,000 × 1,000 = 21,000,000.
Launch order$TICK launches first, before public creation opens.

A membership NFT is the unit of belonging: it maps to 1,000 TICK and is the vehicle through which the community shares in the platform's success.

Revenue engine

Every fee generated on TickUp flows into a single router and is split three ways. Instead of a direct payout stream, value returns to holders indirectly but durably — through assets that back the token and through continuous buy pressure.

50%
RWA acquisition

Buy real-world assets that back $TICK.

30%
Buyback

Buy $TICK back from the market.

20%
Platform dev

Operations & development.

The split and destinations are configurable by governance and enforced on-chain (the three shares must always sum to 100%). Buyback and RWA-purchase execution live in dedicated modules.

Fee breakdown

WhereFeeSplit
Bonding-curve trades1% per trade→ revenue engine
NFT market sale2.5% platform + 2.5% creatorplatform share → revenue engine; creator share → inscriber
Creation0 (free onboarding)

All platform-side fees converge on the revenue engine and are distributed 50 / 30 / 20 as above.

Security

Contracts follow audited patterns and ship with a full test suite, but a third-party audit precedes any mainnet value at risk.

Roadmap

PhaseMilestone
1 · nowMint the TICK NFTs (op: mint, 1,000 each); raise launch funds.
2Collected funds create the $TICK token and its liquidity.
3Burn mints for tradeable $TICK (op: transfer); buy & sell.
4Public creation opens; revenue engine live — 50 / 30 / 20 → RWA · buyback · dev.

Contracts

Core contracts on Robinhood Chain (addresses published at launch):

ContractRole
InscriptionNFTCreate inscriptions; convert or launch to a token.
InscribedToken / MemeTokenThe trustless ERC-20 form of an inscription.
BondingCurveFair-launch curve; graduates to a DEX with burned LP.
InscriptionMarketFixed-price NFT sales with creator + platform fees.
FeeRouterSplits all fees 50 / 30 / 20 → RWA · buyback · dev.