Knowledge becomes
verifiable value.

A Proof-of-Knowledge token designed to recognize validated learning across the Axodus ecosystem.

Token standardERC-20
VerificationEIP-712
Supply ceiling10,000,000
Current stateDevelopment
01 / Overview

Not speculation. A signal of demonstrated knowledge.

$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.

01

Knowledge-first issuance

Rewards begin with a validated learning event, not a purchase flow.

02

Verifiable by design

Structured signatures connect off-chain achievement records to controlled on-chain minting.

03

Bounded supply

The ERC-20 contract enforces a maximum supply of 10 million $Neurons.

02 / Proof of Knowledge

From learning event to on-chain signal

A controlled verification pipeline.

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.

01
L

Learn

A participant completes an eligible course, challenge or knowledge activity within an Axodus experience.

02
V

Verify

A designated verifier authorizes the achievement using a structured EIP-712 signature.

03
M

Mint

The PoK minter validates limits, timestamp and nonce before issuing the approved amount.

04
N

Recognize

$Neurons becomes a portable, on-chain record of value generated through demonstrated knowledge.

03 / Protocol architecture

Separation of concerns

Four modules.
One knowledge layer.

A modular contract system keeps token behavior, authorization, mint policy and future interoperability distinct.

CORE / 01

Neurons.sol

ERC-20 core, capped supply, roles, pause and permit.

Live code
MINT / 02

PoKMinter.sol

Signature checks, nonce protection and issuance limits.

Live code
AUTH / 03

ECDSAVerifier.sol

EIP-712 structured verification and signer control.

Live code
BRIDGE / 04

NeuronsOFTAdapter.sol

Cross-chain adapter concept for future LayerZero support.

In development
04 / Tokenomics

Programmed scarcity.
Measured issuance.

The implemented contract configuration combines a hard supply ceiling with per-user and per-transaction mint controls.

Maximum supply10M

$Neurons / 18 decimals

Maximum single mint100

$Neurons per approved transaction

Daily user limit1,000

$Neurons per user per day

Mint cooldown1H

Default interval between user mints

Protocol note

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.

05 / Controls

Security posture

Defense in layers.

01

EIP-712 signatures

Structured authorization with domain separation.

02

Nonce protection

Replay-resistant processing for proof records.

03

Rate limits

Cooldown, daily and single-mint thresholds.

04

Role-based access

Granular admin, minter and burner permissions.

05

Emergency pause

Protocol-level interruption when intervention is required.

06

Reentrancy protection

Guarded mint execution paths.

06 / Open development
Development repository

Inspect what is being built.

$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.

neurons / protocol

contract Neurons is ERC20Capped

MAX_SUPPLY = 10_000_000 ether;

contract PoKMinter

verify(proof, signature, nonce);

status

● protocol source available

● external audit recommended