Tiers
A tier is the price a node was bought at. The price decides how many of them one wallet may hold, how fast the node accrues, and whether you have to hold FINEXIS to buy one at all.
The tiers
| Tier | Price | Per wallet | Must hold | Accrual |
|---|---|---|---|---|
| Base | 0.02 ETH | 50 | Nothing | Base rate |
| Plus | 0.04 ETH | 15 | 1,000,000 FINEXIS | 2.4x base |
| Prime | 0.10 ETH | 5 | 3,000,000 FINEXIS | 7.5x base |
Prices are fixed in ETH, not in dollars. A payment mints only on an exact amount match, so a price that moved with an exchange rate would mean the amount you have to send is never quite the amount you were quoted.
Buying one
Nothing changes about how a purchase works: you send a plain transfer to the payments wallet and the tier is decided by the exact amount you sent. There is one payments wallet for every tier. Sending 0.04 buys a Plus node, sending 0.10 buys a Prime one, and an amount matching no tier is parked for a human rather than minted.
What enforces what
This is the part worth reading twice, because it is a real difference from the per-wallet cap.
The contract knows one limit, maxPerWallet, and it is the ceiling across every tier together. It is enforced in mintFor and neither we nor anyone else can mint past it:
if (_owned[to].length >= maxPerWallet) revert WalletLimit();The per-tier allowances and the FINEXIS thresholds are not in the contract. The contract has no idea tiers exist. Those rules are applied by us, off chain, before a node is minted, and a payment that fails one of them is parked and refunded rather than turned into a node.
So: if you want a guarantee that does not depend on us, the one you have is maxPerWallet. The rest is our bookkeeping, and you should read it as our bookkeeping. See Limits for the cap itself.
Accrual
A tier accrues at a multiple of the base per-credit range. Everything on Accrual still applies: the amount is drawn per node inside a range, the timer is drawn per node, and during the launch period the money is funded by Finexis rather than by trading volume.
Nodes bought before tiers
Every node sold before this page existed is a Base node, at the price it was bought for, and nothing about it changed. A tier is recorded against a node when it is minted and is never recalculated afterwards, so changing a tier’s price later does not reprice or reclassify a single node already sold.