pricePerSecond (in wei/sec of MOR) when you call postModelBid, and you adjust it by replacing the bid. This page is the explicit how-to for that workflow.
This page is for the provider side — pricing for the on-chain bid. Pricing for consumers of the hosted Inference API is a different layer (per-token billing on top of the marketplace) and is documented at apidocs.mor.org.
Units and floors
pricePerSecondis denominated in wei of MOR (1 MOR = 10^18 wei).- Floor:
bidPricePerSecondMin = 10000000000wei/sec =0.00000001MOR/sec ≈0.0006MOR/min ≈0.036MOR/hour at the floor. - There is no upper limit, but rating algorithms and competing bids will push consumers away from over-priced bids.
Step 1 — Look at competing bids
The cheapest reference is the live snapshot of bids the network is actually accepting:Step 2 — Estimate your cost floor
- A
g5.xlargeon demand on AWS is roughly$1.00 / hour≈$0.000278/sec(a real provider would use spot or self-host, but this is a high bound). - If
1 MOR ≈ $X(look up live), then1 MOR/sec ≈ $X/sec. Convert your$/secintoMOR/secvia that rate. - Convert to wei:
pricePerSecond_wei = MOR_per_second × 10^18.
$X/month divided by your expected utilised seconds. See Resale registering-bid for the resale math.
Step 3 — Pick a number, post the bid
pricePerSecond is below the floor.
Step 4 — Watch and adjust
There is no auto-adjust. To change a price you delete the old bid and post a new one. Both calls cost gas; thepostModelBid call also charges a non-refundable marketplaceBidFee of 0.3 MOR every time (see “How bid posts cost MOR” below). Don’t repost more often than you have to.
Things to watch:
- Bid acceptance rate. If you get zero sessions over days while competitors with similar specs do, you’re priced too high.
- Provider reputation signals. Even at the right price, low uptime / poor TTFT / failed sessions tank your match rate. See the reputation system.
- Active rate from
active_bids.json. If your bid disappears from the snapshot, your:3333is no longer reachable to the verifier — see verify-setup.
How bid posts cost MOR
Every time you callpostModelBid, the marketplace charges a non-refundable marketplaceBidFee = 0.3 MOR (Marketplace.sol). This fee is separate from, and on top of:
- the refundable provider stake (
0.2MOR) you posted at registration, - the refundable model stake (
0.1MOR) you posted when registering the model, - BASE gas (paid in ETH on BASE).
~1.8 MOR in non-refundable bid fees, plus gas. That’s the most common reason new providers see “I lost ~2 MOR during setup”: it wasn’t slashed, it was bid fees. See also Quickstart → “What can cost you MOR during setup”.
What about “stake-for-liquidity” rewards?
That’s a different product — the Capital Contract / stake-for-liquidity program documented at mor.org. It is not the same as provider session payouts and is unrelated to your bid pricing decisions. Your provider stake bonded at registration is not the same as staking in the Capital Contract. See Tokens and fees for the distinction.What you can’t do today
The chat history surfaces a few asks that do not have a solution yet:- ❌ “Always use market price” toggle. You set the rate manually.
- ❌ Token-level pricing (input vs output, context size). Provider-side pricing is
wei/seconly. - ❌ Built-in pricing recommender. Use
active_bids.jsonand your own cost model.

