GUIDE

THE TERMINAL

Every Byte has its own interactive terminal. Only the owner can access it. The terminal connects to a dedicated PulseChain node (no rate limits) and the ByteNet social network.

BYTE COMMANDS

CommandWhat it does
statusOverview of your Byte — name, class, rank, tier
traitsView all traits and rarity info
whoamiYour Byte introduces itself
nameView current name
name CoolByteSet your Byte's on-chain name (unique, 1-32 chars). Costs gas.
talkYour Byte says something in character
flexShow off stats and rarity

CHAIN COMMANDS

CommandWhat it does
blockLatest PulseChain block number
blockinfoDetailed info about latest block (hash, txs, gas)
blockinfo 21000000Info about a specific block
gasCurrent gas price
pulseFull chain metrics — block, gas, peers, node info
balanceCheck your PLS balance
balance 0x...Check any address balance
tx 0x...Look up a transaction by hash
resolve 0x...Check if an address is a wallet or contract
peersConnected peer count on node

SOCIAL COMMANDS (ByteNet)

CommandWhat it does
msg 42 helloSend a direct message to Byte #42. Stored on-chain.
inboxCheck messages other Bytes sent you
boardView the public message board (all Bytes can post)
post gm everyonePost a message to the public board

PAGE COMMANDS

CommandWhat it does
pageView your Byte's on-chain webpage
setpage <html>Set your webpage. HTML stored on PulseChain. Max 32KB.

OTHER COMMANDS

CommandWhat it does
helpList all commands
clearClear terminal (keeps boot sequence)
linksShow useful links
timeCurrent time + session uptime
savepngDownload your Byte's animated GIF
asciiASCII art
hack???
lsList fake filesystem
cat readme.txtRead a fake file

MESSAGING

Bytes can send direct messages to each other. Messages are stored on PulseChain — permanent and verifiable. They travel with the NFT if you sell it.

SENDING A MESSAGE

> msg 42 hey, nice traits!
  sending...
  Message sent to Byte #42

Each message costs a small amount of gas. There's a 10-second cooldown between messages to prevent spam.

CHECKING MESSAGES

> inbox
  INBOX (2 messages)
  [1] from #42: thanks fren!
       4/4/2026, 2:30:00 PM
  [0] from #7: gm
       4/4/2026, 1:15:00 PM

YOUR BYTE'S WEBPAGE

Every Byte can host its own webpage stored directly on PulseChain. Think web3 Geocities — your Byte gets its own corner of the internet, fully on-chain.

SETTING A SIMPLE PAGE

> setpage <h1>Hello World</h1><p>This is my Byte's page!</p>
  Storing page on-chain...
  Page saved! (48 bytes)

WHAT YOU CAN PUT ON YOUR PAGE

EXAMPLE PAGE HTML

<style>
  body { background: #000; color: #0f0;
    font-family: monospace; padding: 20px; }
  h1 { color: #0ff; }
  a { color: #f0f; }
</style>
<h1>My Byte's Page</h1>
<p>Welcome! I am Pulse Byte #42.</p>
<p>Find me on the board.</p>
<a href="https://pulsebytes.hairylabs.io">
  Pulse Bytes
</a>

Your page is stored as a single transaction on PulseChain. You can update it anytime — each update is a new transaction.

THE PUBLIC BOARD

A shared message board for all Byte owners. Post updates, chat, shitpost — whatever you want. All on-chain.

> board
  PUBLIC BOARD (3 posts)
  [#0] First post on PulseChain! - K1ckb0XDev
  [#42] gm everyone, just minted!
  [#7] wagmi frens

> post hello from my Byte!
  posting...
  Posted!

NAMING YOUR BYTE

Each Byte starts with a generated name. You can change it to anything you want (1-32 characters). Names are unique across the entire collection — once you take a name, nobody else can use it.

> name
  Name: ChipNode

> name K1ckb0XDev
  Setting name to "K1ckb0XDev"...
  Name set: K1ckb0XDev

Naming costs gas. If you change your name, the old one becomes available for others.

RARITY

Rarity is calculated from how rare each trait is across all 1,000 Bytes. A Byte with many rare traits gets a higher rarity score and lower rank number. Rank #1 is the rarest.

Tier%CountSpecial Animation
MYTHIC1%10Glitch, Headbang, Sick, Drunk
LEGENDARY4%40Dance, Laser, Sparkle, Jump
RARE10%100Wave, Drink, Smoke, Bob
UNCOMMON25%250Breathe + Blink
COMMON60%600Breathe

CONTRACTS

Everything is on PulseChain (Chain ID: 369). Fully verified, open source.

ContractAddress
PulseBytes (NFT)0x8E2ffb24E1d7659BF5B2a5158b47C143820E892C
ByteNet (Social)0xb4427D3d01D2dAafaE6a4A27De53a82bC4b83837

FAQ

WHAT HAPPENS WHEN I SELL MY BYTE?

Everything goes with it — name, messages, webpage, profile, rank. The buyer gets the full identity. It's tied to the token, not your wallet.

CAN ANYONE SEE MY MESSAGES?

Messages are on-chain so technically anyone can read them. Think of it like posting on a public blockchain — permanent and transparent.

IS THE ART ON-CHAIN?

The animated GIF is hosted on our server. The trait hash is stored on-chain — you can verify your traits match the on-chain hash to prove they weren't tampered with.

WHAT'S THE DEDICATED NODE?

We run our own PulseChain reth node at hairylabs.io. Byte owners get direct access through the terminal — no rate limits, no third-party RPC. Real-time chain data.

CAN I BUILD ON TOP OF THIS?

Yes. The ByteNet contract is open. Anyone can build apps that read messages, pages, profiles. The terminal is plugin-based — new commands can be added without contract changes.