Register a project
Publish a project entry to the Axion registry, linking a human-readable name to a content hash and owner.
TypeScript
import { Axion } from "@axion/sdk";
const axion = new Axion({ network: "testnet" });
await axion.registry.register({
name: "project.axion",
contentHash: "QmX8...",
owner: wallet.address,
metadata: {
version: "1.0.0",
category: "DeFi",
audit: "verified"
}
});