Knowledge-first issuance
Rewards begin with a validated learning event, not a purchase flow.
A Proof-of-Knowledge token designed to recognize validated learning across the Axodus ecosystem.
$Neurons is conceived as the knowledge-recognition layer of Axodus: a capped digital asset minted through verified achievements rather than passive participation.
Its purpose is to connect learning events, cryptographic verification and programmable rewards—making knowledge portable across an open ecosystem.
Rewards begin with a validated learning event, not a purchase flow.
Structured signatures connect off-chain achievement records to controlled on-chain minting.
The ERC-20 contract enforces a maximum supply of 10 million $Neurons.
From learning event to on-chain signal
The current protocol architecture separates token logic, authorization and mint control. Each layer has a specific role in turning eligible knowledge proofs into token rewards.
A participant completes an eligible course, challenge or knowledge activity within an Axodus experience.
A designated verifier authorizes the achievement using a structured EIP-712 signature.
The PoK minter validates limits, timestamp and nonce before issuing the approved amount.
$Neurons becomes a portable, on-chain record of value generated through demonstrated knowledge.
Separation of concerns
A modular contract system keeps token behavior, authorization, mint policy and future interoperability distinct.
ERC-20 core, capped supply, roles, pause and permit.
Signature checks, nonce protection and issuance limits.
EIP-712 structured verification and signer control.
Cross-chain adapter concept for future LayerZero support.
The implemented contract configuration combines a hard supply ceiling with per-user and per-transaction mint controls.
$Neurons / 18 decimals
$Neurons per approved transaction
$Neurons per user per day
Default interval between user mints
These values describe the current repository implementation. The protocol remains in development and should not be interpreted as a sale, investment offer or guarantee of future utility.
Security posture
Structured authorization with domain separation.
Replay-resistant processing for proof records.
Cooldown, daily and single-mint thresholds.
Granular admin, minter and burner permissions.
Protocol-level interruption when intervention is required.
Guarded mint execution paths.
$Neurons is an active protocol project—not a finished consumer product. Contracts, tests and deployment tooling are available for technical review in the public repository.
› contract Neurons is ERC20Capped
MAX_SUPPLY = 10_000_000 ether;
› contract PoKMinter
verify(proof, signature, nonce);
› status
● protocol source available
● external audit recommended