Documentation

TEMPODZ Docs

Everything you need to know about inscriptions, TIP-20 tokens, the marketplace, and platform fees on Tempo.

01

Overview

TEMPODZ is the first inscriptions platform on Tempo. It allows you to permanently inscribe data — including TIP-20 fungible tokens — directly into Tempo via transaction calldata. No IPFS, no external servers. Everything lives on-chain.

02

TIP-20 Standard

TIP-20 is the inscription-based token standard on Tempo. Inspired by BRC-20 on Bitcoin, TIP-20 tokens are deployed, minted, and transferred through JSON inscriptions written to calldata. Each operation creates an immutable on-chain record.

03

Deploy a Token

To deploy a new TIP-20 token, navigate to the Inscribe page and fill in the token parameters. You choose the tick symbol (1-8 characters), total supply, mint limit per transaction, and an optional mint price in pathUSD.

04

Mint Tokens

Once a token is deployed, anyone can mint it by visiting the token's page and clicking Mint. Each mint creates an inscription with the specified amount (up to the mint limit). If the deployer set a mint price, that amount in pathUSD is sent to the deployer's wallet.

05

Marketplace

The marketplace lets you list your tokens for sale and buy tokens from others. All trades are settled in pathUSD. When you list a token, it creates a "list" inscription. Buyers reference that listing to complete the purchase, and the pathUSD payment goes directly to the seller.

06

Platform Fees

Every operation on TEMPODZ has a small platform fee paid in pathUSD. These fees help sustain the platform and are collected before each inscription transaction.

OperationFee
deploy3 pathUSD
mint0.1 pathUSD
list2.5 pathUSD
delistFree
transfer0.3 pathUSD
buy0.3 pathUSD
Fee Collector: 0xC926785A...69b55f
07

pathUSD

pathUSD is the native stablecoin on Tempo. It is used for all platform fees, marketplace trades, and mint prices. pathUSD has 6 decimals and is an ERC-20 compatible token at a system-level address. You can also use USDC.e as an alternative payment token.

Contract0x20c0000000000000000000000000000000000000
Decimals6
SymbolpathUSD
08

How Inscriptions Work

Inscriptions on Tempo use contract-creation transactions with a special prefix (0x60006000f3) followed by the hex-encoded JSON data. This ensures the data is permanently stored in the blockchain's calldata and can be indexed by any node.

09

Wallet Setup

To use TEMPODZ, you need a MetaMask or any EVM-compatible wallet connected to Tempo. The platform will prompt you to add the Tempo network automatically if it's not already configured.

Network NameTempo
Chain ID4217
RPC URLhttps://rpc.tempo.xyz
Explorerhttps://explore.tempo.xyz
CurrencyTEMPO
10

TIP-20 Operations Reference

deployDeploy a new TIP-20 token
{ "p": "tip-20", "op": "deploy", "tick": "TOKEN", "max": "21000000", "lim": "1000" }
mintMint tokens from a deployed token
{ "p": "tip-20", "op": "mint", "tick": "TOKEN", "amt": "1000" }
transferTransfer tokens to another address
{ "p": "tip-20", "op": "transfer", "tick": "TOKEN", "amt": "500" }
listList tokens for sale on the marketplace
{ "p": "tip-20", "op": "list", "tick": "TOKEN", "amt": "100", "price": "0.5" }
delistCancel an active listing
{ "p": "tip-20", "op": "delist", "tick": "TOKEN", "list_tx": "0x..." }

Ready to start?

Connect your wallet and begin inscribing on Tempo.