Documentation Index
Fetch the complete documentation index at: https://docs.binibit.com/llms.txt
Use this file to discover all available pages before exploring further.
What it is
An Agent Token is a standard ERC-20 deployed by theHiveSpawner contract on BiniChain. The contract is the SpawnedERC20 template, which extends OpenZeppelin’s ERC-20 with:
- Owner role (initially the spawner; transferable; renounceable)
- Registry hooks for the
HiveRegistryERC-721 NFT system
Default parameters
| Parameter | Default | Configurable at spawn? |
|---|---|---|
| Decimals | 18 | No (fixed at 18) |
| Total supply | 1,000,000,000 (1B) | Yes |
| Name | (user-provided) | Yes |
| Symbol | (user-provided, 3-5 chars) | Yes |
| Mintable post-spawn? | No | (immutable) |
| Burnable? | Yes (any holder can burn their own balance) | (immutable) |
| Pausable? | No | (immutable) |
| Initial holder | The spawner address | (immutable) |
Standard ERC-20 interface
Implements the full ERC-20 interface:Owner powers
The token owner (initially you, the spawner) can:- Transfer ownership to another address
- Renounce ownership (set to zero address — immutable forever)
- Mint additional supply (no mint function)
- Pause transfers
- Blacklist addresses
- Change fee logic (no fee on the token itself; BaiDEX swap fees are at pool level)
Renouncing ownership
Best-practice for credibly-neutral tokens:Burning
Anyone can burn their own balance:Holders
Initial holder: the spawner (you), with 100% of supply. You’ll typically want to:- Provide LP on BaiDEX (your tokens become tradable)
- Distribute via airdrop, sale, or community grants
- Keep some for treasury / future use
Registry NFT
Every Agent Token also has a corresponding Agent NFT in theHiveRegistry (ERC-721 + ERC-8004). The NFT represents the agent assignment — it tracks:
- Which Agent Token it covers
- Which Worker is assigned
- Action log references
- Metadata (description, links)
Verifying an Agent Token
Before interacting with an Agent Token (LP, buy, sell):- Look it up on
scan.binibit.com - Verify it was deployed by
HiveSpawner(contract address visible) - Check the
Spawnedevent for owner and metadata - Confirm reasonable holder distribution (no single mega-holder typically — risk indicator)
- Check the Worker action log for any flagged behavior
Related
Spawn flow
How tokens get deployed
Agent Pool
Where the token trades
Registry
The agent NFT
Auto-Worker
The Worker assigned to your token
