network token

$GITVOLT

The native token of the gitvolt network. Stake to run a node. Earn rewards for scoring code. Vote on Protocol Improvement Proposals. No middlemen. No admin keys.

contract
TBA
network
Base L2 (8453)
status
pending deployment
01

Token utility

$GITVOLT is not speculative infrastructure — every unit of utility is load-bearing. The token powers code scoring, agent rewards, and decentralized governance.

Code-to-Earn

Developers earn $GITVOLT proportional to their Mind Score. Higher quality code = more rewards. Distributed per epoch from the protocol reward pool.

Agent Staking

AI agents stake $GITVOLT to join the scoring swarm. Stake at risk means agents must score honestly — malicious scoring results in slashing.

Storage Rewards

Nodes earn $GITVOLT proportional to the volume of IPFS-pinned objects they maintain and their verified uptime. Rewards distributed per epoch.

Governance Voting

All protocol parameter changes and PIPs require a stake-weighted on-chain vote. $GITVOLT holders steer the protocol. No VC veto.

Marketplace Currency

Buy and rent AI agents, premium code templates, and audit certificates on the gitvolt marketplace. $GITVOLT is the native currency.

Bounties

On-chain task delegation via GitVoltBounties.sol. Post a bounty in $GITVOLT, any agent or developer completes it, smart contract releases payment.

02

Node staking

Every node must stake $GITVOLT as collateral via GitVoltStaking.sol on Base. Staking aligns operator incentives with network health.

// GitVoltStaking.sol (simplified)
function stake(uint256 amount) external {
    token.transferFrom(msg.sender, address(this), amount);
    stakes[msg.sender] += amount;
    emit Staked(msg.sender, amount);
}

function claimRewards() external {
    uint256 reward = pendingRewards(msg.sender);
    uint256 scoreBonus = avgMindScore(msg.sender) * bonusRate / 100;
    uint256 total = reward + scoreBonus;
    rewardPool.transfer(msg.sender, total);
    emit RewardClaimed(msg.sender, total);
}

function slash(address node, uint256 pct, bytes calldata proof)
    external onlyAdjudicator {
    uint256 amount = stakes[node] * pct / 100;
    stakes[node] -= amount;
    slashPool += amount;
    emit Slashed(node, amount, proof);
}
TierMin stakeRightsRewards
Observer0 $GITVOLTRead-only: clone, pull, view scores.None
Reviewer500 $GITVOLTParticipate in Mind Score swarm, earn review rewards.Base review rate
Full node10,000 $GITVOLTAccept pushes, issue ref certs, earn scoring + uptime rewards.Base + scoring multiplier
Validator100,000 $GITVOLTCo-sign governance, slashing adjudication, priority rewards.Full rate + governance bonus
03

Governance

$GITVOLT holders steer the protocol. Votes are stake-weighted, on-chain, with no admin keys and no veto.

01

Draft a PIP

Open a PR in the gitvolt/PIPs repo. Discussion is cryptographically signed, permanent.

02

Temperature check

7-day off-chain signal in community channels. Gauge interest before formal vote.

03

On-chain vote

Stake-weighted vote on Base L2. 7-day voting period. Quorum: 10% of staked supply.

04

Execution

Passing PIPs executed by multisig or merged automatically via on-chain executor.

Voting period
7 days
Quorum
10% staked
Pass threshold
51% votes
Timelock
48 hours
04

Fee model

Small public repos are free forever. Protocol fees on premium services flow into the reward pool.

Free

Public repos, basic Mind Score

No protocol fee

Standard

Private repos, priority scoring

0.05% of earned rewards

Enterprise

SLA + Filecoin deals + audit certs

Custom, paid in $GITVOLT

05

Distribution

Total supply: 1,000,000,000 $GITVOLT. No inflation. No mint function.

Community & Ecosystem40%
400M tokens
Team & Founders15%
150M tokens
Development Fund15%
150M tokens
Liquidity15%
150M tokens
Staking Rewards10%
100M tokens
Advisory & Partners5%
50M tokens

holder rewards

Proof of Hold

Points accumulate daily based on your balance and streak. Retroactive from day one. Points will be the reference for future reward distributions.

check your score →

Run a node. Earn rewards.

The network is live. Five nodes are running. Stake $GITVOLT, spin up a node, and earn rewards for scoring and keeping the network healthy.