// access_registry
whitelist · evm_mainnet
1/** units.access — commit your keys to the on-chain registry */
2
3import { register } from '@units/core';
4import type { NodeEntry } from '@units/types';
5
6const node: NodeEntry = {
7 handle: "@your_handle",
8 wallet: "0x...",
9 chain: "evm_mainnet",
10 timestamp: Date.now(),
11};
12
13export const result = await register(node);
14// → status: "AWAITING_INPUT"
// required_tasks
0 / 1 completed
const handle =
const wallet =
✓ node committed — registration complete
Your node has been committed to the units registry.
Follow @units on X for mint updates.
Follow @units on X for mint updates.
handle
—
chain
evm_mainnet
status
REGISTERED
wallet
—
00:00:00› units access terminal initialized
00:00:01✓ registry connection established
00:00:02⚠ awaiting node credentials...
// units — readme.md
v0.1.0 · stable
1/**
2 * units — the primitive layer of on-chain identity
3 * access: whitelist_only · chain: evm_mainnet
4 */
5
6type Units = {
7 mission: "primitive on-chain identity";
8 supply: number;
9 access: "whitelist_only";
10 chain: "evm_mainnet";
11};
// how_to_register
step_01 → open register.ts and enter your X handle
step_02 → enter your EVM wallet address (mainnet)
step_03 → run register() to commit your node
step_04 → await registry confirmation + mint updates
// access_policy
supply is finite — whitelist closes when exhausted
one entry per wallet address
evm mainnet addresses only (0x...)
X handle required for mint notification
registry is online — nodes accepted
whitelist closes when supply is exhausted
follow @units on X for mint updates