percPOTPOURSTABFLOORCUPSDOCSTHE POTx

Pour

The pot pours when either of two conditions is true at the start of a trade: at least fifteen minutes have passed since the last pour, or the pot is at or above the creator's threshold. Whichever comes first. The pour runs inside the trade's own transaction, before the trade itself is applied.

due = (now − lastPour ≥ 900) or (pot ≥ threshold)

A pour takes the whole pot, pays the runner's fee, and splits the remainder along the active route card.

runnerFee = pot × 25 ÷ 10000
poured = pot − runnerFee
toHolders = poured × card.holders ÷ 10000
toGrounds = poured × card.grounds ÷ 10000
toJackpot = poured × card.jackpot ÷ 10000
toCreator = poured − toHolders − toGrounds − toJackpot

The creator lane is computed last as the remainder so that rounding dust never leaves the pot. Every pour emits an event with every one of these numbers, and the pours page lists them exactly.

PREVIOUS BrewNEXT The runner