anyinscribe
net :: hyperliquidstd :: any-20 live

01 / introduction

What is Anyinscribe?

Anyinscribe is an inscription and fair-launch token protocol built on Hyperliquid (HyperEVM).

It enables anyone to permanently inscribe data - text, images, SVG, code, HTML, JSON, or any file - directly on-chain using EVM transactions.

Anyinscribe also introduces ANY-20, a fungible token standard whose minting, pricing, and fair-launch rules are enforced directly by smart contracts β€” open minting on a bonding curve with built-in anti-bot fees.

Inscriptions are permanent, open, and indexed by the Anyinscribe Explorer.

[001] How It Works

Anyinscribe records arbitrary data on-chain through transaction calldata, while ANY-20 token economics are enforced by on-chain contract logic around every mint.

Inscriptions can be simple raw data such as text, SVG, images, or structured JSON for NFT collections and ANY-20 tokens.

Every valid inscription is indexed, rendered, and displayed inside the Anyinscribe Explorer.

Once confirmed on-chain, the inscription becomes a permanent artifact.

{
  "p": "any-20",
  "op": "deploy",
  "tick": "ANY",
  "max": "21000000",
  "lim": "420"
}

$ANY is the first ANY-20 token. Each mint issues 1,000 tokens on a bonding curve that starts at 0.01 HYPE and climbs to ~0.1 HYPE as the supply fills.

[002] Key Features

On-Chain Inscriptions: Data is written directly into EVM transactions, without relying on external storage like IPFS.

Fair Launch Mechanics: No pre-mines, no private allocations, no whitelist advantage. Every user mints under the same bonding-curve rules.

On-Chain Enforcement: ANY-20 launches enforce bonding-curve pricing, fees, and fair-launch rules at the contract level.

Raw Inscriptions: Users can inscribe raw data directly. Text, SVG, images, JSON, HTML, and code can be written on-chain.

ANY-20 Fungible Tokens: Deploy, mint, and transfer tokens with bonding-curve pricing enforced on-chain. Tickers are first come, first served; enforced fees curb spam and bot abuse.

02 Creating an Inscription

To create an inscription on Hyperliquid, you need a Hyperliquid-compatible wallet with enough HYPE or Hyperliquid testnet gas for transaction fees.

Steps: Connect your wallet on the Anyinscribe Inscribe page. Choose your format: text, image, SVG, JSON, HTML, or file upload. Upload or paste your content. Review the platform fee and network gas. Click Inscribe. Your wallet signs the transaction. Wait for Hyperliquid confirmation. Your inscription becomes permanently stored on-chain.

03 Supported Formats

FormatMIME TypeMax Size
Plain Texttext/plain100 KB
SVG Vectorimage/svg+xml100 KB
PNG / JPEGimage/png, image/jpeg350 KB
GIF / WEBPimage/gif, image/webp350 KB
JSON / Codeapplication/json100 KB
HTMLtext/html100 KB

Maximum size may be constrained by Hyperliquid transaction limits and gas costs.

Last updated: MAR 25, 2026

Next: How It Works

Anyinscribe is an experimental protocol - not a financial product. No returns should be expected.

04 Fees & Costs

Anyinscribe uses a hybrid fee model.

Raw inscriptions are kept simple and accessible, while ANY-20 token operations require enforced fees to reduce spam and bot activity.

Inscriptions

ActionFeeNotes
Raw inscription0.00015 HYPE / Hyperliquid gas equivalent-
Network gasDepends on Hyperliquid conditions-

Raw inscriptions are visible in the Anyinscribe Explorer once indexed. The indexer is open and reads valid Anyinscribe inscription data from Hyperliquid transactions.

ANY-20 Tokens

ActionFeeNotes
Deploy new token0.00015 HYPE / Hyperliquid gas equivalent-
Mint tokens0.00015 HYPE / Hyperliquid gas equivalent-
Transfer tokens0.0005 HYPE / Hyperliquid gas equivalent-
Network gasDepends on Hyperliquid conditions-

ANY-20 fees are strictly enforced. Operations without the correct fee are ignored by the indexer. This prevents bots from minting entire supplies for free.

Other

ActionFeeNotes
Marketplace fee2.5%-
Network gasVariable-

All fee-based operations are handled through protocol-recognized transactions. If a transaction fails, the operation is not indexed.

05 Protocol Specification

All Anyinscribe operations use Hyperliquid transactions with structured protocol payloads.

Protocol identifier:

{
  "p": "anyinscribe"
}

For ANY-20 tokens:

{
  "p": "any-20"
}

06 Operations

OperationWhoDescription
deployCreatorCreate a new collection or token
mintUserMint an inscription or ANY-20 token
inscribeAnyoneInscribe arbitrary data on-chain
transferOwnerTransfer ownership of an inscription
listOwnerList inscription for sale
buyBuyerBuy a listed inscription
burnOwnerPermanently destroy an inscription

Example: Inscribe Operation

{
  "p": "anyinscribe",
  "op": "inscribe",
  "type": "image/svg+xml",
  "name": "My First Anyinscribe",
  "data": "<svg>...</svg>"
}

Example: Transfer Operation

{
  "p": "anyinscribe",
  "op": "transfer",
  "symbol": "ANY",
  "id": "42",
  "to": "0x0000000000000000000000000000000000000000"
}

07 ANY-20 Token Standard

ANY-20 is a fungible token standard on Hyperliquid, inspired by BRC-20 on Bitcoin.

Anyone can deploy and mint tokens using structured Anyinscribe JSON payloads.

Key Rules: Ticker is 4-5 uppercase letters (A-Z), first come first served, first valid deploy claims ticker forever, fixed 8 decimals, deploy/mint/transfer fees enforced, operations without required payment ignored, fair launch only, no pre-mines.

08 Deploy a ANY-20 Token

Create a new fungible token.

Fee: 0.00015 HYPE / Hyperliquid gas equivalent

{
  "p": "any-20",
  "op": "deploy",
  "tick": "ANY",
  "max": "21000000",
  "lim": "420"
}

If the ticker already exists or the required fee is not paid, the deploy is ignored by the indexer.

09 Mint ANY-20 Tokens

Mint tokens from an existing deployment.

Fee: 0.00015 HYPE / Hyperliquid gas equivalent per mint

{
  "p": "any-20",
  "op": "mint",
  "tick": "ANY",
  "amt": "420"
}

Validation Rules: ticker must exist, amount must be less than or equal to mint limit, total minted supply must not exceed max supply, required mint fee must be paid, and transaction must be valid on Hyperliquid.

Anti-Bot Design: every mint requires a protocol fee. This makes large-scale bot minting expensive and helps keep launches fair for normal users.

10 Transfer ANY-20 Tokens

Send ANY-20 tokens to another address.

Fee: 0.0005 HYPE / Hyperliquid gas equivalent

{
  "p": "any-20",
  "op": "transfer",
  "tick": "ANY",
  "amt": "500",
  "to": "0x0000000000000000000000000000000000000000"
}

The indexer verifies the sender's balance using the transaction sender address. You can only transfer tokens you own.

11 Transfer Inscriptions

Transfer ownership of any Anyinscribe inscription - text, SVG, image, JSON, HTML, or code - to another wallet.

Use the inscription ID from the Anyinscribe Explorer.

{
  "p": "anyinscribe",
  "op": "transfer",
  "id": "442",
  "to": "0x0000000000000000000000000000000000000000"
}

Only network gas is required unless the protocol defines an additional transfer fee. The indexer verifies ownership from the transaction sender. You can only transfer inscriptions you own.

12 Marketplace

The Anyinscribe Marketplace allows listing, buying, and trading inscriptions. All marketplace actions are represented through on-chain Anyinscribe operations and indexed by the protocol.

v1: OTC Trading - transfers are peer-to-peer. Buyers and sellers coordinate off-chain through Discord, Telegram, X, or other channels, then settle ownership on-chain.

v2: Escrow Marketplace (coming soon) - list to buy flow with escrow-style verification. The buyer pays, the indexer verifies payment, and ownership transfers according to marketplace rules.

Disclaimer: Anyinscribe is an experimental inscription and token protocol built for Hyperliquid. It is not a financial product. ANY-20 tokens are experimental assets. No profit, return, or future value should be expected.