The pool
Unlike creator and referral fees, liquidity rewards do not wait for market
resolution. They are scored per day and paid the next day.
What the program rewards
The scoring is built to pay for liquidity that is actually useful to traders:- Tight quotes, close to the midpoint
- Two-sided quotes rather than one-sided
- Liquidity that persists through the day rather than appearing in bursts
- Size that a real trader could actually hit
- Dust orders that never intend to fill
- Quotes parked far from the midpoint
- One-sided quoting, which is penalized rather than banned
The adjusted midpoint
Scoring measures your distance from the midpoint, so the midpoint has to be manipulation-resistant. Aura computes it after filtering out dust orders below a minimum incentive size. Without that filter, a maker could post a tiny order at an extreme price to drag the midpoint towards their own resting quotes and score as if they were tight. The filter removes that.Scoring
Orders are scored by distance from the adjusted midpoint and by size. Closer quotes earn sharply more, because the score falls off with the square of the distance.
Equation 1: order position score
Equation 2: book one points
Equation 3: book two points
Equation 4: two-sided score
If the midpoint is between 0.10 and 0.90:
If the midpoint is below 0.10 or above 0.90:
Equation 5: normalize across makers
Equation 6: sum across the epoch
Equation 7: final share of pool
Daily reward for a maker
Reading the formula
Three things do most of the work:Distance is squared, so tightness compounds
Distance is squared, so tightness compounds
Equation 1 squares the normalized distance from the midpoint. Halving your
distance roughly quadruples your score for the same size. Moving from 5 ticks
out to 2 ticks out is worth far more than doubling your size at 5 ticks.
Two-sided quoting is what the min() is for
Two-sided quoting is what the min() is for
Equation 4 takes the minimum of your two book scores, so a maker quoting only
one side scores near zero on the other and gets pulled down. The
max(Q/c) term softens that to a penalty rather than a wipeout, with c = 3.0.
At extreme midpoints, below 0.10 or above 0.90, the softening is removed and
the raw minimum applies.Rewards are relative, not absolute
Rewards are relative, not absolute
Equations 5 through 7 normalize your score against every other maker. Your
payout depends on how you quoted compared to everyone else that day, so the
same quoting behavior earns less on a crowded market than a neglected one.
Practical approach
1
Quote both sides
The single largest factor. One-sided quoting is penalized by a factor of 3.
2
Stay close to the midpoint
The squared falloff means tightness beats size. Being close matters more than
being big.
3
Leave orders resting
Scoring samples through the day. Orders that exist for an hour earn for an
hour.
4
Go where the competition is not
Your share is relative to other makers on the same market. An underquoted
market with real volume is worth more than the busiest one.
5
Size above the dust floor
Orders below the minimum incentive size are filtered out of the midpoint
calculation and do not earn.
Next
How trading works
Order types, the dual-book model, and how fills work.
Place your first order
Quote programmatically through the API.
Realtime data
Track the midpoint live instead of polling for it.
Integrator guide
Running a maker bot against Aura, including elevated rate limits.

